Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / xmloff / source / forms / officeforms.cxx
blob782ab824ccd7c5ec6b4068aae10269de9c075ad3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "officeforms.hxx"
22 #include <sax/tools/converter.hxx>
24 #include <xmloff/xmltoken.hxx>
25 #include <xmloff/xmlnamespace.hxx>
26 #include <xmloff/xmlexp.hxx>
27 #include <xmloff/xmlimp.hxx>
28 #include <xmloff/namespacemap.hxx>
29 #include <com/sun/star/frame/XModel.hpp>
30 #include <comphelper/extract.hxx>
31 #include <comphelper/diagnose_ex.hxx>
32 #include "strings.hxx"
34 namespace xmloff
37 using namespace ::com::sun::star::uno;
38 using namespace ::com::sun::star::beans;
39 using namespace ::com::sun::star::xml;
40 using ::xmloff::token::XML_FORMS;
41 using ::com::sun::star::xml::sax::XAttributeList;
42 using ::com::sun::star::xml::sax::XFastAttributeList;
44 //= OFormsRootImport
45 OFormsRootImport::OFormsRootImport( SvXMLImport& rImport )
46 :SvXMLImportContext(rImport)
50 OFormsRootImport::~OFormsRootImport()
54 css::uno::Reference< css::xml::sax::XFastContextHandler > OFormsRootImport::createFastChildContext(
55 sal_Int32 _nElement,
56 const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList )
58 SvXMLImportContext* pRet = nullptr;
59 try
61 pRet = GetImport().GetFormImport()->createContext( _nElement, xAttrList );
62 } catch (const Exception&)
64 DBG_UNHANDLED_EXCEPTION("xmloff.forms");
66 return pRet;
69 void OFormsRootImport::implImportBool(const Reference< XFastAttributeList >& _rxAttributes, OfficeFormsAttributes _eAttribute,
70 const Reference< XPropertySet >& _rxProps, const Reference< XPropertySetInfo >& _rxPropInfo,
71 const OUString& _rPropName, bool _bDefault)
73 // the complete attribute name to look for
74 sal_Int32 nCompleteAttributeName = XML_ELEMENT(
75 FORM,
76 OAttributeMetaData::getOfficeFormsAttributeToken(_eAttribute));
78 // get and convert the value
79 OUString sAttributeValue = _rxAttributes->getOptionalValue(nCompleteAttributeName);
80 bool bValue = _bDefault;
81 (void)::sax::Converter::convertBool(bValue, sAttributeValue);
83 // set the property
84 if (_rxPropInfo->hasPropertyByName(_rPropName))
86 _rxProps->setPropertyValue(_rPropName, Any(bValue));
90 void OFormsRootImport::startFastElement( sal_Int32 /*nElement*/, const Reference< XFastAttributeList >& _rxAttrList )
92 ENTER_LOG_CONTEXT( "xmloff::OFormsRootImport - importing the complete tree" );
94 try
96 Reference< XPropertySet > xDocProperties(GetImport().GetModel(), UNO_QUERY);
97 if ( xDocProperties.is() )
98 { // an empty model is allowed: when doing a copy'n'paste from e.g. Writer to Calc,
99 // this is done via streaming the controls as XML.
100 Reference< XPropertySetInfo > xDocPropInfo;
101 if (xDocProperties.is())
102 xDocPropInfo = xDocProperties->getPropertySetInfo();
104 implImportBool(_rxAttrList, ofaAutomaticFocus, xDocProperties, xDocPropInfo, PROPERTY_AUTOCONTROLFOCUS, false);
105 implImportBool(_rxAttrList, ofaApplyDesignMode, xDocProperties, xDocPropInfo, PROPERTY_APPLYDESIGNMODE, true);
108 catch(Exception&)
110 TOOLS_WARN_EXCEPTION("xmloff.forms",
111 "caught an exception while setting the document properties!");
115 void OFormsRootImport::endFastElement(sal_Int32 )
117 LEAVE_LOG_CONTEXT( );
120 //= OFormsRootExport
121 OFormsRootExport::OFormsRootExport( SvXMLExport& _rExp )
123 addModelAttributes(_rExp);
125 m_pImplElement.reset( new SvXMLElementExport(_rExp, XML_NAMESPACE_OFFICE, XML_FORMS, true, true) );
128 OFormsRootExport::~OFormsRootExport( )
132 void OFormsRootExport::implExportBool(SvXMLExport& _rExp, OfficeFormsAttributes _eAttribute,
133 const Reference< XPropertySet >& _rxProps, const Reference< XPropertySetInfo >& _rxPropInfo,
134 const OUString& _rPropName, bool _bDefault)
136 // retrieve the property value
137 bool bValue = _bDefault;
138 if (_rxPropInfo->hasPropertyByName(_rPropName))
139 bValue = ::cppu::any2bool(_rxProps->getPropertyValue(_rPropName));
141 // convert into a string
142 OUStringBuffer aValue;
143 ::sax::Converter::convertBool(aValue, bValue);
145 // add the attribute
146 _rExp.AddAttribute(
147 OAttributeMetaData::getOfficeFormsAttributeNamespace(),
148 OAttributeMetaData::getOfficeFormsAttributeName(_eAttribute),
149 aValue.makeStringAndClear());
152 void OFormsRootExport::addModelAttributes(SvXMLExport& _rExp)
156 Reference< XPropertySet > xDocProperties(_rExp.GetModel(), UNO_QUERY);
157 if ( xDocProperties.is() )
158 { // an empty model is allowed: when doing a copy'n'paste from e.g. Writer to Calc,
159 // this is done via streaming the controls as XML.
160 Reference< XPropertySetInfo > xDocPropInfo;
161 if (xDocProperties.is())
162 xDocPropInfo = xDocProperties->getPropertySetInfo();
164 implExportBool(_rExp, ofaAutomaticFocus, xDocProperties, xDocPropInfo, PROPERTY_AUTOCONTROLFOCUS, false);
165 implExportBool(_rExp, ofaApplyDesignMode, xDocProperties, xDocPropInfo, PROPERTY_APPLYDESIGNMODE, true);
168 catch(Exception&)
170 TOOLS_WARN_EXCEPTION("xmloff.forms",
171 "caught an exception while retrieving the document properties!");
175 } // namespace xmloff
177 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */