2000-12-06 16:32:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: formlayerimport.cxx,v $
|
|
|
|
*
|
2001-03-20 12:39:58 +00:00
|
|
|
* $Revision: 1.7 $
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
2001-03-20 12:39:58 +00:00
|
|
|
* last change: $Author: fs $ $Date: 2001-03-20 13:38:42 $
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* either of the following licenses
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
*
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
* =================================================
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
*
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
* obligations concerning the Software.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
|
|
|
|
*
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _XMLOFF_FORMLAYERIMPORT_HXX_
|
|
|
|
#include "formlayerimport.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_FORMS_LAYERIMPORT_HXX_
|
|
|
|
#include "layerimport.hxx"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace xmloff
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::drawing;
|
|
|
|
using namespace ::com::sun::star::xml;
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OFormLayerXMLExport
|
|
|
|
//=====================================================================
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
OFormLayerXMLImport::OFormLayerXMLImport(SvXMLImport& _rImporter)
|
|
|
|
:m_pImpl(NULL)
|
|
|
|
{
|
|
|
|
m_pImpl = new OFormLayerXMLImport_Impl(_rImporter);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
OFormLayerXMLImport::~OFormLayerXMLImport()
|
|
|
|
{
|
|
|
|
delete m_pImpl;
|
|
|
|
}
|
|
|
|
|
2000-12-18 14:14:35 +00:00
|
|
|
//---------------------------------------------------------------------
|
2001-02-01 08:46:47 +00:00
|
|
|
::vos::ORef< SvXMLImportPropertyMapper > OFormLayerXMLImport::getStylePropertyMapper() const
|
2000-12-18 14:14:35 +00:00
|
|
|
{
|
|
|
|
return m_pImpl->getStylePropertyMapper();
|
|
|
|
}
|
|
|
|
|
2000-12-13 09:40:15 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void OFormLayerXMLImport::seekPage(const Reference< XDrawPage >& _rxDrawPage)
|
|
|
|
{
|
|
|
|
m_pImpl->seekPage(_rxDrawPage);
|
|
|
|
}
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//---------------------------------------------------------------------
|
2000-12-12 11:01:05 +00:00
|
|
|
void OFormLayerXMLImport::startPage(const Reference< XDrawPage >& _rxDrawPage)
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
2000-12-12 11:01:05 +00:00
|
|
|
m_pImpl->startPage(_rxDrawPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void OFormLayerXMLImport::endPage()
|
|
|
|
{
|
|
|
|
m_pImpl->endPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
Reference< XPropertySet > OFormLayerXMLImport::lookupControl(const ::rtl::OUString& _rId)
|
|
|
|
{
|
|
|
|
return m_pImpl->lookupControlId(_rId);
|
2000-12-06 16:32:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-20 12:39:58 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
SvXMLImportContext* OFormLayerXMLImport::createOfficeFormsContext(
|
|
|
|
SvXMLImport& _rImport,
|
|
|
|
sal_uInt16 _nPrefix,
|
|
|
|
const rtl::OUString& _rLocalName)
|
|
|
|
{
|
|
|
|
return m_pImpl->createOfficeFormsContext(_rImport, _nPrefix, _rLocalName);
|
|
|
|
}
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
SvXMLImportContext* OFormLayerXMLImport::createContext(const sal_uInt16 _nPrefix, const rtl::OUString& _rLocalName,
|
|
|
|
const Reference< sax::XAttributeList >& _rxAttribs)
|
|
|
|
{
|
|
|
|
return m_pImpl->createContext(_nPrefix, _rLocalName, _rxAttribs);
|
|
|
|
}
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace xmloff
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* history:
|
|
|
|
* $Log: not supported by cvs2svn $
|
2001-03-20 12:39:58 +00:00
|
|
|
* Revision 1.6 2001/03/20 08:02:56 fs
|
|
|
|
* removed setAutoStyle (was obsolete)
|
|
|
|
*
|
2001-03-20 07:02:56 +00:00
|
|
|
* Revision 1.5 2001/02/01 09:46:47 fs
|
|
|
|
* no own style handling anymore - the shape exporter is responsible for our styles now
|
|
|
|
*
|
2001-02-01 08:46:47 +00:00
|
|
|
* Revision 1.4 2000/12/18 15:14:35 fs
|
|
|
|
* some changes ... now exporting/importing styles
|
|
|
|
*
|
2000-12-18 14:14:35 +00:00
|
|
|
* Revision 1.3 2000/12/13 10:40:15 fs
|
|
|
|
* new import related implementations - at this version, we should be able to import everything we export (which is all except events and styles)
|
|
|
|
*
|
2000-12-13 09:40:15 +00:00
|
|
|
* Revision 1.2 2000/12/12 12:01:05 fs
|
|
|
|
* new implementations for the import - still under construction
|
|
|
|
*
|
2000-12-12 11:01:05 +00:00
|
|
|
* Revision 1.1 2000/12/06 17:31:22 fs
|
|
|
|
* initial checkin - implementations for formlayer import/export - still under construction
|
|
|
|
*
|
2000-12-06 16:32:01 +00:00
|
|
|
*
|
|
|
|
* Revision 1.0 04.12.00 12:52:47 fs
|
|
|
|
************************************************************************/
|
|
|
|
|