2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-12 17:21:24 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-12-06 16:32:01 +00:00
|
|
|
|
2007-06-27 14:15:51 +00:00
|
|
|
#include <xmloff/formlayerimport.hxx>
|
2000-12-06 16:32:01 +00:00
|
|
|
#include "layerimport.hxx"
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
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;
|
2012-07-02 13:58:52 +02:00
|
|
|
using namespace ::com::sun::star;
|
2000-12-06 16:32:01 +00:00
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OFormLayerXMLExport
|
|
|
|
//=====================================================================
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
OFormLayerXMLImport::OFormLayerXMLImport(SvXMLImport& _rImporter)
|
|
|
|
:m_pImpl(NULL)
|
|
|
|
{
|
|
|
|
m_pImpl = new OFormLayerXMLImport_Impl(_rImporter);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
OFormLayerXMLImport::~OFormLayerXMLImport()
|
|
|
|
{
|
|
|
|
delete m_pImpl;
|
|
|
|
}
|
|
|
|
|
2001-05-28 13:59:18 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void OFormLayerXMLImport::setAutoStyleContext(SvXMLStylesContext* _pNewContext)
|
|
|
|
{
|
|
|
|
m_pImpl->setAutoStyleContext(_pNewContext);
|
|
|
|
}
|
|
|
|
|
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,
|
2012-07-02 13:58:52 +02:00
|
|
|
const Reference< xml::sax::XAttributeList >& _rxAttribs)
|
2000-12-06 16:32:01 +00:00
|
|
|
{
|
|
|
|
return m_pImpl->createContext(_nPrefix, _rLocalName, _rxAttribs);
|
|
|
|
}
|
|
|
|
|
2001-05-28 13:59:18 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void OFormLayerXMLImport::applyControlNumberStyle(const Reference< XPropertySet >& _rxControlModel, const ::rtl::OUString& _rControlNumerStyleName)
|
|
|
|
{
|
|
|
|
m_pImpl->applyControlNumberStyle(_rxControlModel, _rControlNumerStyleName);
|
|
|
|
}
|
|
|
|
|
2003-10-21 07:39:58 +00:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void OFormLayerXMLImport::documentDone( )
|
|
|
|
{
|
|
|
|
m_pImpl->documentDone( );
|
|
|
|
}
|
|
|
|
|
2000-12-06 16:32:01 +00:00
|
|
|
//.........................................................................
|
|
|
|
} // namespace xmloff
|
|
|
|
//.........................................................................
|
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|