2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-12-06 16:32:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2008-04-10 21:01:45 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _XMLOFF_FORMS_ELEMENTIMPORT_HXX_
|
|
|
|
#define _XMLOFF_FORMS_ELEMENTIMPORT_HXX_
|
|
|
|
|
|
|
|
#include "propertyimport.hxx"
|
|
|
|
#include "controlelement.hxx"
|
2000-12-13 09:40:15 +00:00
|
|
|
#include "valueproperties.hxx"
|
2010-09-15 13:55:34 +02:00
|
|
|
#include "eventimport.hxx"
|
|
|
|
#include "logging.hxx"
|
|
|
|
#include "property_description.hxx"
|
2004-05-07 14:59:41 +00:00
|
|
|
|
|
|
|
/** === begin UNO includes === **/
|
|
|
|
#include <com/sun/star/text/XTextCursor.hpp>
|
2000-12-06 16:32:01 +00:00
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
2000-12-12 11:01:05 +00:00
|
|
|
#include <com/sun/star/form/XGridColumnFactory.hpp>
|
2001-01-02 14:58:22 +00:00
|
|
|
#include <com/sun/star/script/XEventAttacherManager.hpp>
|
2004-05-07 14:59:41 +00:00
|
|
|
/** === end UNO includes === **/
|
2010-09-15 13:55:34 +02:00
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
#include <comphelper/stl_types.hxx>
|
2000-12-06 16:32:01 +00:00
|
|
|
|
2004-07-13 07:30:15 +00:00
|
|
|
class XMLTextStyleContext;
|
2000-12-06 16:32:01 +00:00
|
|
|
//.........................................................................
|
|
|
|
namespace xmloff
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
class IControlIdMap;
|
2009-04-23 10:42:05 +00:00
|
|
|
class OFormLayerXMLImport_Impl;
|
2000-12-12 11:01:05 +00:00
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OElementNameMap
|
|
|
|
//=====================================================================
|
|
|
|
const OControlElement::ElementType& operator ++(OControlElement::ElementType& _e);
|
|
|
|
|
|
|
|
/** helper class which allows fast translation of xml tag names into element types.
|
|
|
|
*/
|
|
|
|
class OElementNameMap : public OControlElement
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
DECLARE_STL_USTRINGACCESS_MAP( ElementType, MapString2Element );
|
|
|
|
static MapString2Element s_sElementTranslations;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
OElementNameMap() { }
|
|
|
|
|
|
|
|
public:
|
|
|
|
static ElementType getElementType(const ::rtl::OUString& _rName);
|
|
|
|
};
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OElementImport
|
|
|
|
//=====================================================================
|
|
|
|
/** implements common behaviour for importing forms, controls and columns
|
|
|
|
*/
|
|
|
|
class OElementImport
|
|
|
|
:public OPropertyImport
|
2001-01-02 14:58:22 +00:00
|
|
|
,public IEventAttacher
|
2002-10-02 13:33:52 +00:00
|
|
|
,public OStackedLogging
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
|
|
|
protected:
|
2010-09-24 15:57:20 +02:00
|
|
|
::rtl::OUString m_sServiceName; // the service name as extracted from the service-name attribute
|
|
|
|
::rtl::OUString m_sName; // the name of the object (redundant, already contained in the base class' array)
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& m_rFormImport; // the form import context
|
2010-09-24 15:57:20 +02:00
|
|
|
IEventAttacherManager& m_rEventManager; // the event attacher manager
|
2000-12-06 16:32:01 +00:00
|
|
|
|
2004-07-13 07:30:15 +00:00
|
|
|
const XMLTextStyleContext* m_pStyleElement; // the XML element which describes the style we encountered
|
2002-10-25 12:19:34 +00:00
|
|
|
// while reading our element
|
|
|
|
|
2010-09-24 15:57:20 +02:00
|
|
|
/// the parent container to insert the new element into
|
2000-12-06 16:32:01 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >
|
2010-09-24 15:57:20 +02:00
|
|
|
m_xParentContainer;
|
2000-12-06 16:32:01 +00:00
|
|
|
|
2010-09-24 15:57:20 +02:00
|
|
|
/// the element we're creating. Valid after StartElement
|
2000-12-06 16:32:01 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
|
2010-09-24 15:57:20 +02:00
|
|
|
m_xElement;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >
|
|
|
|
m_xInfo;
|
|
|
|
|
|
|
|
bool m_bImplicitGenericAttributeHandling;
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
/** ctor
|
|
|
|
@param _rImport
|
|
|
|
the importer
|
2001-01-02 14:58:22 +00:00
|
|
|
@param _rEventManager
|
|
|
|
the event attacher manager for the control beeing imported
|
2000-12-06 16:32:01 +00:00
|
|
|
@param _nPrefix
|
|
|
|
the namespace prefix
|
|
|
|
@param _rName
|
|
|
|
the element name
|
|
|
|
@param _rAttributeMap
|
|
|
|
the attribute map to be used for translating attributes into properties
|
|
|
|
@param _rxParentContainer
|
|
|
|
the container in which the new element should be inserted
|
|
|
|
*/
|
|
|
|
OElementImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager,
|
2001-01-02 14:58:22 +00:00
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer
|
|
|
|
);
|
2006-06-19 17:17:19 +00:00
|
|
|
virtual ~OElementImport();
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2001-01-02 14:58:22 +00:00
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2000-12-06 16:32:01 +00:00
|
|
|
virtual void EndElement();
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-06 16:32:01 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
|
2001-01-02 14:58:22 +00:00
|
|
|
// IEventAttacher
|
|
|
|
virtual void registerEvents(
|
|
|
|
const ::com::sun::star::uno::Sequence< ::com::sun::star::script::ScriptEventDescriptor >& _rEvents
|
|
|
|
);
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
/** create the (uninitialized) element which is to represent the read data
|
|
|
|
|
|
|
|
<p>The default implementation uses <member>m_xORB</member> to create a object with <member>m_sServiceName</member>.
|
|
|
|
*/
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
|
|
|
|
createElement();
|
|
|
|
|
2003-03-27 17:21:03 +00:00
|
|
|
protected:
|
|
|
|
/** can be used to handle properties where the attribute default and the property default differ.
|
|
|
|
<p>In such case, if the property had the attribute default upon writing, nothing is read, so upon reading,
|
|
|
|
the property is still at it's own default (which is not the attribute default).<p/>
|
|
|
|
<p>This method, if told the attribute and the property, and the (implied) attribute default, sets the
|
|
|
|
property value as if the attribute was encountered.</p>
|
|
|
|
@see encounteredAttribute
|
|
|
|
*/
|
|
|
|
void simulateDefaultedAttribute(const sal_Char* _pAttributeName, const ::rtl::OUString& _rPropertyName, const sal_Char* _pAttributeDefault);
|
|
|
|
|
2010-09-24 15:57:20 +02:00
|
|
|
/** to be called from within handleAttribute, checks whether the given attribute is covered by our generic
|
|
|
|
attribute handler mechanisms
|
|
|
|
*/
|
|
|
|
bool tryGenericAttribute( sal_uInt16 _nNamespaceKey, const ::rtl::OUString& _rLocalName, const ::rtl::OUString& _rValue );
|
|
|
|
|
|
|
|
/** controls whether |handleAttribute| implicitly calls |tryGenericAttribute|, or whether the derived class
|
|
|
|
must do this explicitly at a suitable place in its own |handleAttribute|
|
|
|
|
*/
|
|
|
|
void disableImplicitGenericAttributeHandling() { m_bImplicitGenericAttributeHandling = false; }
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
private:
|
|
|
|
::rtl::OUString implGetDefaultName() const;
|
2010-09-24 21:27:18 +02:00
|
|
|
void implApplyGenericProperties();
|
|
|
|
void implApplySpecificProperties();
|
2002-10-25 12:19:34 +00:00
|
|
|
|
|
|
|
/** sets the style properties which have been read for the element (if any)
|
|
|
|
*/
|
|
|
|
void implSetStyleProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxObject );
|
2010-09-15 13:55:34 +02:00
|
|
|
|
|
|
|
PropertyGroups::const_iterator impl_matchPropertyGroup( const PropertyGroups& i_propertyGroups ) const;
|
|
|
|
|
|
|
|
virtual ::rtl::OUString determineDefaultServiceName() const;
|
2000-12-06 16:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OControlImport
|
|
|
|
//=====================================================================
|
|
|
|
/** helper class for importing the description of a single control
|
|
|
|
*/
|
2000-12-13 09:40:15 +00:00
|
|
|
class OControlImport
|
|
|
|
:public OElementImport
|
|
|
|
,public OValuePropertiesMetaData
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
2000-12-12 11:01:05 +00:00
|
|
|
protected:
|
2000-12-13 09:40:15 +00:00
|
|
|
::rtl::OUString m_sControlId;
|
|
|
|
OControlElement::ElementType m_eElementType;
|
|
|
|
|
|
|
|
PropertyValueArray m_aValueProperties;
|
|
|
|
// the value properties (value, current-value, min-value, max-value) require some special
|
|
|
|
// handling
|
2000-12-12 11:01:05 +00:00
|
|
|
|
2001-01-03 15:25:34 +00:00
|
|
|
// we fake the attributes our base class gets: we add the attributes of the outer wrapper
|
|
|
|
// element which encloses us
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >
|
|
|
|
m_xOuterAttributes;
|
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
/** the address of the calc cell which the control model should be bound to,
|
|
|
|
if applicable
|
|
|
|
*/
|
|
|
|
::rtl::OUString m_sBoundCellAddress;
|
|
|
|
|
2004-11-16 09:09:43 +00:00
|
|
|
/** name of a value binding (xforms:bind attribute) */
|
|
|
|
::rtl::OUString m_sBindingID;
|
|
|
|
|
|
|
|
/** name of a list binding (form:xforms-list-source attribute) */
|
|
|
|
::rtl::OUString m_sListBindingID;
|
|
|
|
|
|
|
|
/** name of a submission (xforms:submission attribute) */
|
|
|
|
::rtl::OUString m_sSubmissionID;
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
protected:
|
|
|
|
// for use by derived classes only
|
|
|
|
OControlImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager,
|
2001-01-02 14:58:22 +00:00
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2001-01-03 15:25:34 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer
|
|
|
|
);
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
OControlImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager,
|
2001-01-02 14:58:22 +00:00
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
2000-12-13 09:40:15 +00:00
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2000-12-12 11:01:05 +00:00
|
|
|
virtual void EndElement();
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
|
2001-01-03 15:25:34 +00:00
|
|
|
void addOuterAttributes(const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxOuterAttribs);
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
protected:
|
|
|
|
void setElementType(OControlElement::ElementType _eType) { m_eElementType = _eType; }
|
2000-12-13 09:40:15 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void implTranslateValueProperty(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >& _rxPropInfo,
|
|
|
|
::com::sun::star::beans::PropertyValue& /* [in/out] */ _rPropValue);
|
2002-11-06 09:37:04 +00:00
|
|
|
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual ::rtl::OUString determineDefaultServiceName() const;
|
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
/** registers the given cell address as value binding address for our element
|
2002-11-06 09:37:04 +00:00
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
<p>The default implementation simply calls registerCellValueBinding at our import
|
|
|
|
context, but you may want to override this behaviour.</p>
|
|
|
|
|
|
|
|
@param _rBoundCellAddress
|
|
|
|
the cell address to register for our element. Must not be <NULL/>.
|
|
|
|
@precond
|
|
|
|
we have a valid element (m_xElement)
|
|
|
|
*/
|
|
|
|
virtual void doRegisterCellValueBinding( const ::rtl::OUString& _rBoundCellAddress );
|
|
|
|
|
2004-11-16 09:09:43 +00:00
|
|
|
/** register the given XForms binding */
|
|
|
|
virtual void doRegisterXFormsValueBinding( const ::rtl::OUString& );
|
|
|
|
|
|
|
|
/** register the given XForms list binding */
|
|
|
|
virtual void doRegisterXFormsListBinding( const ::rtl::OUString& );
|
|
|
|
|
|
|
|
/** register the given XForms submission */
|
|
|
|
virtual void doRegisterXFormsSubmission( const ::rtl::OUString& );
|
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
protected:
|
2010-10-19 23:45:24 -05:00
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
// OElementImport overridables
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
|
|
|
|
createElement();
|
2000-12-12 11:01:05 +00:00
|
|
|
};
|
|
|
|
|
2004-07-05 15:08:14 +00:00
|
|
|
// TODO:
|
|
|
|
// this whole mechanism doesn't scale. Instead of deriving even more classes for every new attribute,
|
|
|
|
// we should have dedicated attribute handlers
|
|
|
|
// The rest of xmloff implements it this way - why don't we do, too?
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OImagePositionImport
|
|
|
|
//=====================================================================
|
|
|
|
class OImagePositionImport : public OControlImport
|
|
|
|
{
|
|
|
|
sal_Int16 m_nImagePosition;
|
|
|
|
sal_Int16 m_nImageAlign;
|
|
|
|
sal_Bool m_bHaveImagePosition;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OImagePositionImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2004-07-05 15:08:14 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute( sal_uInt16 _nNamespaceKey,
|
2004-07-05 15:08:14 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OReferredControlImport
|
|
|
|
//=====================================================================
|
|
|
|
class OReferredControlImport : public OControlImport
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
::rtl::OUString m_sReferringControls; // the list of ids of controls referring to the one beeing imported
|
|
|
|
|
|
|
|
public:
|
|
|
|
OReferredControlImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-06 16:32:01 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
2000-12-12 11:01:05 +00:00
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-06 16:32:01 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
};
|
|
|
|
|
2000-12-18 14:14:35 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OPasswordImport
|
|
|
|
//=====================================================================
|
|
|
|
class OPasswordImport : public OControlImport
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OPasswordImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-18 14:14:35 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-18 14:14:35 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
};
|
|
|
|
|
2001-02-13 08:09:32 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= ORadioImport
|
|
|
|
//=====================================================================
|
2004-07-05 15:08:14 +00:00
|
|
|
class ORadioImport : public OImagePositionImport
|
2001-02-13 08:09:32 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ORadioImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2001-02-13 08:09:32 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
2001-06-25 12:32:38 +00:00
|
|
|
protected:
|
2001-02-13 08:09:32 +00:00
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2001-02-13 08:09:32 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
};
|
|
|
|
|
2002-11-22 13:39:17 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OURLReferenceImport
|
|
|
|
//=====================================================================
|
|
|
|
/** a specialized version of the <type>OControlImport</type> class, which is able
|
|
|
|
to handle attributes which denote URLs (and stored relative)
|
|
|
|
*/
|
2004-07-05 15:08:14 +00:00
|
|
|
class OURLReferenceImport : public OImagePositionImport
|
2002-11-22 13:39:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
OURLReferenceImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2002-11-22 13:39:17 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2002-11-22 13:39:17 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
};
|
|
|
|
|
2001-03-28 13:00:56 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OButtonImport
|
|
|
|
//=====================================================================
|
|
|
|
/** A specialized version of the <type>OControlImport</type> class, which handles
|
2002-11-22 13:39:17 +00:00
|
|
|
the target frame for image and command buttons
|
2001-03-28 13:00:56 +00:00
|
|
|
*/
|
2002-11-22 13:39:17 +00:00
|
|
|
class OButtonImport : public OURLReferenceImport
|
2001-03-28 13:00:56 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
OButtonImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2001-03-28 13:00:56 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
};
|
|
|
|
|
2003-12-11 11:08:45 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OValueRangeImport
|
|
|
|
//=====================================================================
|
|
|
|
/** A specialized version of the <type>OControlImport</type> class, which imports
|
|
|
|
the value-range elements
|
|
|
|
*/
|
|
|
|
class OValueRangeImport : public OControlImport
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
sal_Int32 m_nStepSizeValue;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OValueRangeImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2003-12-11 11:08:45 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList );
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute( sal_uInt16 _nNamespaceKey,
|
2003-12-11 11:08:45 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue );
|
|
|
|
};
|
|
|
|
|
2001-03-29 08:45:16 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OTextLikeImport
|
|
|
|
//=====================================================================
|
|
|
|
/** A specialized version of the <type>OControlImport</type> class, which handles
|
|
|
|
text like controls which have the convert-empty-to-null attribute</p>
|
|
|
|
*/
|
|
|
|
class OTextLikeImport : public OControlImport
|
|
|
|
{
|
2004-05-07 14:59:41 +00:00
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference< com::sun::star::text::XTextCursor > m_xCursor;
|
|
|
|
::com::sun::star::uno::Reference< com::sun::star::text::XTextCursor > m_xOldCursor;
|
|
|
|
bool m_bEncounteredTextPara;
|
|
|
|
|
2001-03-29 08:45:16 +00:00
|
|
|
public:
|
|
|
|
OTextLikeImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2001-03-29 08:45:16 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2004-05-07 14:59:41 +00:00
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
virtual void EndElement();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void adjustDefaultControlProperty();
|
|
|
|
void removeRedundantCurrentValue();
|
2001-03-29 08:45:16 +00:00
|
|
|
};
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OListAndComboImport
|
|
|
|
//=====================================================================
|
|
|
|
/** A specialized version of the <type>OControlImport</type> class, which handles
|
|
|
|
attributes / sub elements which are special to list and combo boxes
|
|
|
|
*/
|
|
|
|
class OListAndComboImport : public OControlImport
|
|
|
|
{
|
|
|
|
friend class OListOptionImport;
|
|
|
|
friend class OComboItemImport;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString >
|
|
|
|
m_aListSource;
|
|
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString >
|
|
|
|
m_aValueList;
|
|
|
|
|
|
|
|
::com::sun::star::uno::Sequence< sal_Int16 >
|
|
|
|
m_aSelectedSeq;
|
|
|
|
::com::sun::star::uno::Sequence< sal_Int16 >
|
|
|
|
m_aDefaultSelectedSeq;
|
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
::rtl::OUString m_sCellListSource; /// the cell range which acts as list source for the control
|
|
|
|
|
|
|
|
sal_Int32 m_nEmptyListItems; /// number of empty list items encountered during reading
|
|
|
|
sal_Int32 m_nEmptyValueItems; /// number of empty value items encountered during reading
|
2001-11-05 14:24:12 +00:00
|
|
|
|
|
|
|
sal_Bool m_bEncounteredLSAttrib;
|
2003-10-21 07:38:52 +00:00
|
|
|
sal_Bool m_bLinkWithIndexes; /** <TRUE/> if and only if we should use a cell value binding
|
|
|
|
which exchanges the selection index (instead of the selection text
|
|
|
|
*/
|
2001-11-05 14:24:12 +00:00
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
public:
|
|
|
|
OListAndComboImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-06 16:32:01 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
2000-12-12 11:01:05 +00:00
|
|
|
OControlElement::ElementType _eType
|
|
|
|
);
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
2001-03-29 08:45:16 +00:00
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2000-12-06 16:32:01 +00:00
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
virtual void EndElement();
|
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-06 16:32:01 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
|
2003-10-21 07:38:52 +00:00
|
|
|
// OControlImport ovrridables
|
|
|
|
virtual void doRegisterCellValueBinding( const ::rtl::OUString& _rBoundCellAddress );
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
protected:
|
|
|
|
void implPushBackLabel(const ::rtl::OUString& _rLabel);
|
|
|
|
void implPushBackValue(const ::rtl::OUString& _rValue);
|
|
|
|
|
2001-05-21 12:33:48 +00:00
|
|
|
void implEmptyLabelFound();
|
|
|
|
void implEmptyValueFound();
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
void implSelectCurrentItem();
|
|
|
|
void implDefaultSelectCurrentItem();
|
|
|
|
};
|
|
|
|
SV_DECL_IMPL_REF(OListAndComboImport);
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OListOptionImport
|
|
|
|
//=====================================================================
|
|
|
|
/** helper class for importing a single <form:option> element.
|
|
|
|
*/
|
2000-12-12 11:01:05 +00:00
|
|
|
class OListOptionImport
|
|
|
|
:public SvXMLImportContext
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
|
|
|
OListAndComboImportRef m_xListBoxImport;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OListOptionImport(SvXMLImport& _rImport, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
|
|
|
const OListAndComboImportRef& _rListBox);
|
|
|
|
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OComboItemImport
|
|
|
|
//=====================================================================
|
|
|
|
/** helper class for importing a single <form:item> element.
|
|
|
|
*/
|
2001-03-28 11:26:53 +00:00
|
|
|
class OComboItemImport
|
|
|
|
:public SvXMLImportContext
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
|
|
|
OListAndComboImportRef m_xListBoxImport;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OComboItemImport(SvXMLImport& _rImport, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
|
|
|
const OListAndComboImportRef& _rListBox);
|
|
|
|
|
2001-03-28 11:26:53 +00:00
|
|
|
protected:
|
2000-12-06 16:32:01 +00:00
|
|
|
// SvXMLImportContext overridables
|
2001-03-28 11:26:53 +00:00
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2000-12-06 16:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
2000-12-12 11:01:05 +00:00
|
|
|
//= OContainerImport
|
2000-12-06 16:32:01 +00:00
|
|
|
//=====================================================================
|
2000-12-12 11:01:05 +00:00
|
|
|
// BASE must be a derivee of OElementImport
|
|
|
|
template <class BASE>
|
2001-01-02 14:58:22 +00:00
|
|
|
class OContainerImport
|
|
|
|
:public BASE
|
|
|
|
,public ODefaultEventAttacherManager
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
2000-12-12 11:01:05 +00:00
|
|
|
protected:
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >
|
2001-01-03 15:25:34 +00:00
|
|
|
m_xMeAsContainer;
|
|
|
|
::rtl::OUString m_sWrapperElementName;
|
2001-01-02 14:58:22 +00:00
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
protected:
|
2009-04-23 10:42:05 +00:00
|
|
|
OContainerImport(OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2001-01-03 15:25:34 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
const sal_Char* _pWrapperElementName)
|
2001-01-02 14:58:22 +00:00
|
|
|
:BASE(_rImport, _rEventManager, _nPrefix, _rName, _rxParentContainer)
|
2001-01-03 15:25:34 +00:00
|
|
|
,m_sWrapperElementName(::rtl::OUString::createFromAscii(_pWrapperElementName))
|
2000-12-12 11:01:05 +00:00
|
|
|
{
|
|
|
|
}
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2001-01-02 14:58:22 +00:00
|
|
|
virtual void EndElement();
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// OElementImport overridables
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
|
|
|
|
createElement();
|
2000-12-12 11:01:05 +00:00
|
|
|
|
|
|
|
// create the child context for the given control type
|
2001-01-03 15:25:34 +00:00
|
|
|
virtual SvXMLImportContext* implCreateControlWrapper(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName) = 0;
|
2000-12-12 11:01:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OColumnImport
|
|
|
|
//=====================================================================
|
|
|
|
/** helper class importing a single grid column (without the <form:column> element wrapping
|
|
|
|
the column).
|
|
|
|
|
|
|
|
<p>BASE (the template argument) must be a derivee of OControlImport</p>
|
|
|
|
*/
|
|
|
|
template <class BASE>
|
|
|
|
class OColumnImport : public BASE
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::form::XGridColumnFactory >
|
|
|
|
m_xColumnFactory;
|
|
|
|
|
|
|
|
public:
|
2009-04-23 10:42:05 +00:00
|
|
|
OColumnImport(OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
2004-11-09 11:16:49 +00:00
|
|
|
OControlElement::ElementType _eType);
|
2000-12-12 11:01:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// OElementImport overridables
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
|
|
|
|
createElement();
|
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OColumnWrapperImport
|
|
|
|
//=====================================================================
|
2004-07-13 07:30:15 +00:00
|
|
|
class OColumnWrapperImport : public SvXMLImportContext
|
2000-12-12 11:01:05 +00:00
|
|
|
{
|
2004-07-13 07:30:15 +00:00
|
|
|
protected:
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >
|
|
|
|
m_xOwnAttributes;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >
|
|
|
|
m_xParentContainer;
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& m_rFormImport;
|
2004-07-13 07:30:15 +00:00
|
|
|
IEventAttacherManager& m_rEventManager;
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
public:
|
2009-04-23 10:42:05 +00:00
|
|
|
OColumnWrapperImport(OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer);
|
2004-07-13 07:30:15 +00:00
|
|
|
|
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2001-01-03 15:25:34 +00:00
|
|
|
protected:
|
2004-07-13 07:30:15 +00:00
|
|
|
OControlImport* implCreateChildContext(
|
2000-12-12 11:01:05 +00:00
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
2001-01-03 15:25:34 +00:00
|
|
|
OControlElement::ElementType _eType);
|
2000-12-12 11:01:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OGridImport
|
|
|
|
//=====================================================================
|
|
|
|
typedef OContainerImport< OControlImport > OGridImport_Base;
|
|
|
|
/** helper class importing a single <form:grid> element
|
|
|
|
*/
|
|
|
|
class OGridImport : public OGridImport_Base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OGridImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer,
|
|
|
|
OControlElement::ElementType _eType);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// OContainerImport overridables
|
2001-01-03 15:25:34 +00:00
|
|
|
virtual SvXMLImportContext* implCreateControlWrapper(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName);
|
2000-12-06 16:32:01 +00:00
|
|
|
};
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OFormImport
|
|
|
|
//=====================================================================
|
|
|
|
typedef OContainerImport< OElementImport > OFormImport_Base;
|
|
|
|
/** helper class importing a single <form:form> element
|
|
|
|
*/
|
|
|
|
class OFormImport : public OFormImport_Base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OFormImport(
|
2009-04-23 10:42:05 +00:00
|
|
|
OFormLayerXMLImport_Impl& _rImport, IEventAttacherManager& _rEventManager, sal_uInt16 _nPrefix, const ::rtl::OUString& _rName,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >& _rxParentContainer
|
|
|
|
);
|
|
|
|
|
|
|
|
protected:
|
2001-01-02 14:58:22 +00:00
|
|
|
// SvXMLImportContext overridables
|
|
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
2001-01-24 08:37:58 +00:00
|
|
|
virtual void StartElement(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& _rxAttrList);
|
|
|
|
virtual void EndElement();
|
2001-01-02 14:58:22 +00:00
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
// OContainerImport overridables
|
2001-01-03 15:25:34 +00:00
|
|
|
virtual SvXMLImportContext* implCreateControlWrapper(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName);
|
2000-12-12 11:01:05 +00:00
|
|
|
|
|
|
|
// OPropertyImport overridables
|
2010-09-15 13:55:34 +02:00
|
|
|
virtual bool handleAttribute(sal_uInt16 _nNamespaceKey,
|
2000-12-12 11:01:05 +00:00
|
|
|
const ::rtl::OUString& _rLocalName,
|
|
|
|
const ::rtl::OUString& _rValue);
|
|
|
|
|
2004-07-13 07:30:15 +00:00
|
|
|
OControlImport* implCreateChildContext(
|
|
|
|
sal_uInt16 _nPrefix, const ::rtl::OUString& _rLocalName,
|
|
|
|
OControlElement::ElementType _eType );
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
|
|
|
|
void implTranslateStringListProperty(const ::rtl::OUString& _rPropertyName, const ::rtl::OUString& _rValue);
|
|
|
|
};
|
|
|
|
|
2004-08-02 13:14:23 +00:00
|
|
|
//=====================================================================
|
|
|
|
//= OXMLDataSourceImport
|
|
|
|
//=====================================================================
|
|
|
|
class OXMLDataSourceImport : public SvXMLImportContext
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OXMLDataSourceImport( SvXMLImport& _rImport
|
|
|
|
,sal_uInt16 nPrfx
|
|
|
|
,const ::rtl::OUString& rLName
|
|
|
|
,const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList
|
|
|
|
,const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _xElement);
|
|
|
|
};
|
|
|
|
|
2000-12-12 11:01:05 +00:00
|
|
|
#define _INCLUDING_FROM_ELEMENTIMPORT_HXX_
|
|
|
|
#include "elementimport_impl.hxx"
|
|
|
|
#undef _INCLUDING_FROM_ELEMENTIMPORT_HXX_
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//.........................................................................
|
|
|
|
} // namespace xmloff
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
#endif // _XMLOFF_FORMS_ELEMENTIMPORT_HXX_
|
|
|
|
|
2010-10-27 13:11:31 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|