summaryrefslogtreecommitdiff
path: root/binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx')
-rw-r--r--binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx113
1 files changed, 113 insertions, 0 deletions
diff --git a/binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx b/binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx
new file mode 100644
index 000000000000..a0cc13fb91be
--- /dev/null
+++ b/binfilter/bf_svx/source/xml/svx_xmltxtimp.cxx
@@ -0,0 +1,113 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * 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.
+ *
+ * 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).
+ *
+ * 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.
+ *
+ ************************************************************************/
+
+
+#include <com/sun/star/xml/sax/XParser.hpp>
+
+
+#include <unotools/streamwrap.hxx>
+
+
+
+
+
+#include <bf_xmloff/xmlimp.hxx>
+
+#include <bf_xmloff/xmlnmspe.hxx>
+#include <bf_xmloff/xmlstyle.hxx>
+
+#include "editsource.hxx"
+
+#include "unotext.hxx"
+#include <legacysmgr/legacy_binfilters_smgr.hxx> //STRIP002
+namespace binfilter {
+using namespace ::com::sun::star;
+using namespace ::com::sun::star::document;
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::lang;
+using namespace ::com::sun::star::xml::sax;
+using namespace ::com::sun::star::text;
+using namespace cppu;
+using namespace xmloff::token;
+
+using rtl::OUString;
+
+
+///////////////////////////////////////////////////////////////////////
+
+/*N*/ class SvxXMLTextImportContext : public SvXMLImportContext
+/*N*/ {
+/*N*/ public:
+/*N*/ SvxXMLTextImportContext( SvXMLImport& rImport, USHORT nPrfx, const OUString& rLName, const Reference< XAttributeList >& xAttrList, const Reference< XText >& xText );
+/*N*/ virtual ~SvxXMLTextImportContext();
+/*N*/
+/*N*/ virtual SvXMLImportContext *CreateChildContext( USHORT nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList );
+/*N*/
+/*N*/ // SvxXMLXTableImport& getImport() const { return *(SvxXMLXTableImport*)&GetImport(); }
+/*N*/
+/*N*/ private:
+/*N*/ const Reference< XText > mxText;
+/*N*/ };
+/*N*/
+/*N*/ ///////////////////////////////////////////////////////////////////////
+/*N*/
+/*N*/ SvxXMLTextImportContext::SvxXMLTextImportContext( SvXMLImport& rImport, USHORT nPrfx, const OUString& rLName, const Reference< XAttributeList >& xAttrList, const Reference< XText >& xText )
+/*N*/ : SvXMLImportContext( rImport, nPrfx, rLName ), mxText( xText )
+/*N*/ {
+/*N*/ }
+/*N*/
+/*N*/ SvxXMLTextImportContext::~SvxXMLTextImportContext()
+/*N*/ {
+/*N*/ }
+/*N*/
+/*N*/ SvXMLImportContext *SvxXMLTextImportContext::CreateChildContext( USHORT nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList )
+/*N*/ {
+/*N*/ SvXMLImportContext* pContext = NULL;
+/*N*/ if(XML_NAMESPACE_OFFICE == nPrefix && IsXMLToken( rLocalName, XML_BODY ) )
+/*N*/ {
+/*N*/ pContext = new SvxXMLTextImportContext( GetImport(), nPrefix, rLocalName, xAttrList, mxText );
+/*N*/ }
+/*N*/ else if( XML_NAMESPACE_OFFICE == nPrefix && IsXMLToken( rLocalName, XML_AUTOMATIC_STYLES ) )
+/*N*/ {
+/*N*/ pContext = new SvXMLStylesContext( GetImport(), nPrefix, rLocalName, xAttrList );
+/*N*/ GetImport().GetTextImport()->SetAutoStyles( (SvXMLStylesContext*)pContext );
+/*N*/
+/*N*/ }
+/*N*/ else
+/*N*/ {
+/*N*/ pContext = GetImport().GetTextImport()->CreateTextChildContext( GetImport(), nPrefix, rLocalName, xAttrList );
+/*N*/ }
+/*N*/
+/*N*/ if( NULL == pContext )
+/*N*/ pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
+/*N*/
+/*N*/ return pContext;
+/*N*/ }
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */