summaryrefslogtreecommitdiff
path: root/binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx')
-rw-r--r--binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx195
1 files changed, 195 insertions, 0 deletions
diff --git a/binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx b/binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx
new file mode 100644
index 000000000000..09e909747182
--- /dev/null
+++ b/binfilter/bf_sc/source/filter/xml/sc_XMLTableMasterPageExport.cxx
@@ -0,0 +1,195 @@
+/* -*- 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 <tools/debug.hxx>
+
+#include <bf_xmloff/xmlnmspe.hxx>
+
+
+
+#include "XMLTableMasterPageExport.hxx"
+
+#include "unonames.hxx"
+namespace binfilter {
+
+using namespace ::com::sun::star;
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::text;
+using namespace ::com::sun::star::beans;
+using namespace xmloff::token;
+
+using rtl::OUString;
+
+XMLTableMasterPageExport::XMLTableMasterPageExport( ScXMLExport& rExp ) :
+ XMLTextMasterPageExport ( rExp )
+{
+}
+
+XMLTableMasterPageExport::~XMLTableMasterPageExport()
+{
+}
+
+void XMLTableMasterPageExport::exportHeaderFooterContent(
+ const Reference< XText >& rText,
+ sal_Bool bAutoStyles, sal_Bool bProgress )
+{
+ DBG_ASSERT( rText.is(), "There is the text" );
+
+ if( bAutoStyles )
+ GetExport().GetTextParagraphExport()
+ ->collectTextAutoStyles( rText, bProgress, sal_False );
+ else
+ {
+ GetExport().GetTextParagraphExport()->exportTextDeclarations( rText );
+ GetExport().GetTextParagraphExport()->exportText( rText, bProgress, sal_False );
+ }
+}
+
+void XMLTableMasterPageExport::exportHeaderFooter(const ::com::sun::star::uno::Reference < ::com::sun::star::sheet::XHeaderFooterContent >& xHeaderFooter,
+ const XMLTokenEnum aName,
+ const sal_Bool bDisplay)
+{
+ if( xHeaderFooter.is() )
+ {
+ Reference < XText > xCenter = xHeaderFooter->getCenterText();
+ Reference < XText > xLeft = xHeaderFooter->getLeftText();
+ Reference < XText > xRight = xHeaderFooter->getRightText();
+ if (xCenter.is() && xLeft.is() && xRight.is())
+ {
+ ::rtl::OUString sCenter (xCenter->getString());
+ ::rtl::OUString sLeft (xLeft->getString());
+ ::rtl::OUString sRight (xRight->getString());
+
+ if( !bDisplay )
+ GetExport().AddAttribute( XML_NAMESPACE_STYLE,
+ XML_DISPLAY, XML_FALSE );
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE,
+ aName, sal_True, sal_True );
+ if (sCenter.getLength() && !sLeft.getLength() && !sRight.getLength())
+ exportHeaderFooterContent( xCenter, sal_False, sal_False );
+ else
+ {
+ if (sLeft.getLength())
+ {
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE,
+ XML_REGION_LEFT, sal_True, sal_True );
+ exportHeaderFooterContent( xLeft, sal_False, sal_False );
+ }
+ if (sCenter.getLength())
+ {
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE,
+ XML_REGION_CENTER, sal_True, sal_True );
+ exportHeaderFooterContent( xCenter, sal_False, sal_False );
+ }
+ if (sRight.getLength())
+ {
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE,
+ XML_REGION_RIGHT, sal_True, sal_True );
+ exportHeaderFooterContent( xRight, sal_False, sal_False );
+ }
+ }
+ }
+ }
+}
+
+void XMLTableMasterPageExport::exportMasterPageContent(
+ const Reference < XPropertySet > & rPropSet,
+ sal_Bool bAutoStyles )
+{
+ Any aAny;
+
+ Reference < sheet::XHeaderFooterContent > xHeader;
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_RIGHTHDRCON ) ) );
+ aAny >>= xHeader;
+
+ Reference < sheet::XHeaderFooterContent > xHeaderLeft;
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_LEFTHDRCONT ) ) );
+ aAny >>= xHeaderLeft;
+
+ Reference < sheet::XHeaderFooterContent > xFooter;
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_RIGHTFTRCON ) ) );
+ aAny >>= xFooter;
+
+ Reference < sheet::XHeaderFooterContent > xFooterLeft;
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_LEFTFTRCONT ) ) );
+ aAny >>= xFooterLeft;
+
+ if( bAutoStyles )
+ {
+ if( xHeader.is() )
+ {
+ exportHeaderFooterContent( xHeader->getCenterText(), sal_True, sal_False );
+ exportHeaderFooterContent( xHeader->getLeftText(), sal_True, sal_False );
+ exportHeaderFooterContent( xHeader->getRightText(), sal_True, sal_False );
+ }
+ if( xHeaderLeft.is())
+ {
+ exportHeaderFooterContent( xHeaderLeft->getCenterText(), sal_True, sal_False );
+ exportHeaderFooterContent( xHeaderLeft->getLeftText(), sal_True, sal_False );
+ exportHeaderFooterContent( xHeaderLeft->getRightText(), sal_True, sal_False );
+ }
+ if( xFooter.is() )
+ {
+ exportHeaderFooterContent( xFooter->getCenterText(), sal_True, sal_False );
+ exportHeaderFooterContent( xFooter->getLeftText(), sal_True, sal_False );
+ exportHeaderFooterContent( xFooter->getRightText(), sal_True, sal_False );
+ }
+ if( xFooterLeft.is())
+ {
+ exportHeaderFooterContent( xFooterLeft->getCenterText(), sal_True, sal_False );
+ exportHeaderFooterContent( xFooterLeft->getLeftText(), sal_True, sal_False );
+ exportHeaderFooterContent( xFooterLeft->getRightText(), sal_True, sal_False );
+ }
+ }
+ else
+ {
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_HDRON ) ) );
+ sal_Bool bHeader = *(sal_Bool *)aAny.getValue();
+
+ exportHeaderFooter(xHeader, XML_HEADER, bHeader );
+
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_HDRSHARED ) ) );
+ sal_Bool bLeftHeader = !(*(sal_Bool *)aAny.getValue()) && bHeader;
+
+ exportHeaderFooter( xHeaderLeft, XML_HEADER_LEFT, bLeftHeader );
+
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_FTRON ) ) );
+ sal_Bool bFooter = *(sal_Bool *)aAny.getValue();
+
+ exportHeaderFooter( xFooter, XML_FOOTER, bFooter );
+
+ aAny = rPropSet->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( SC_UNO_PAGE_FTRSHARED ) ) );
+ sal_Bool bLeftFooter = !(*(sal_Bool *)aAny.getValue()) && bFooter;
+
+ exportHeaderFooter( xFooterLeft, XML_FOOTER_LEFT, bLeftFooter );
+ }
+}
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */