/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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 . */ #include #include "xmloff/xmlnmspe.hxx" #include #include #include #include #include using ::rtl::OUString; using ::rtl::OUStringBuffer; 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; XMLTextMasterPageExport::XMLTextMasterPageExport( SvXMLExport& rExp ) : XMLPageExport( rExp ), sHeaderText( "HeaderText" ), sHeaderOn( "HeaderIsOn" ), sHeaderShareContent( "HeaderIsShared" ), sHeaderTextFirst( "HeaderTextFirst" ), sHeaderTextLeft( "HeaderTextLeft" ), sFirstShareContent( "FirstIsShared" ), sFooterText( "FooterText" ), sFooterOn( "FooterIsOn" ), sFooterShareContent( "FooterIsShared" ), sFooterTextFirst( "FooterTextFirst" ), sFooterTextLeft( "FooterTextLeft" ) { } XMLTextMasterPageExport::~XMLTextMasterPageExport() { } void XMLTextMasterPageExport::exportHeaderFooterContent( const Reference< XText >& rText, sal_Bool bAutoStyles, sal_Bool bExportParagraph ) { DBG_ASSERT( rText.is(), "There is the text" ); // tracked changes (autostyles + changes list) GetExport().GetTextParagraphExport()->recordTrackedChangesForXText(rText); GetExport().GetTextParagraphExport()->exportTrackedChanges(rText, bAutoStyles); if( bAutoStyles ) GetExport().GetTextParagraphExport() ->collectTextAutoStyles( rText, sal_True, bExportParagraph ); else { GetExport().GetTextParagraphExport()->exportTextDeclarations( rText ); GetExport().GetTextParagraphExport()->exportText( rText, sal_True, bExportParagraph ); } // tracked changes (end of XText) GetExport().GetTextParagraphExport()->recordTrackedChangesNoXText(); } void XMLTextMasterPageExport::exportMasterPageContent( const Reference < XPropertySet > & rPropSet, sal_Bool bAutoStyles ) { Any aAny; Reference < XText > xHeaderText; aAny = rPropSet->getPropertyValue( sHeaderText ); aAny >>= xHeaderText; Reference < XText > xHeaderTextFirst; aAny = rPropSet->getPropertyValue( sHeaderTextFirst ); aAny >>= xHeaderTextFirst; Reference < XText > xHeaderTextLeft; aAny = rPropSet->getPropertyValue( sHeaderTextLeft ); aAny >>= xHeaderTextLeft; Reference < XText > xFooterText; aAny = rPropSet->getPropertyValue( sFooterText ); aAny >>= xFooterText; Reference < XText > xFooterTextFirst; aAny = rPropSet->getPropertyValue( sFooterTextFirst ); aAny >>= xFooterTextFirst; Reference < XText > xFooterTextLeft; aAny = rPropSet->getPropertyValue( sFooterTextLeft ); aAny >>= xFooterTextLeft; if( bAutoStyles ) { if( xHeaderText.is() ) exportHeaderFooterContent( xHeaderText, sal_True ); if( xHeaderTextFirst.is() && xHeaderTextFirst != xHeaderText ) exportHeaderFooterContent( xHeaderTextFirst, sal_True ); if( xHeaderTextLeft.is() && xHeaderTextLeft != xHeaderText ) exportHeaderFooterContent( xHeaderTextLeft, sal_True ); if( xFooterText.is() ) exportHeaderFooterContent( xFooterText, sal_True ); if( xFooterTextFirst.is() && xFooterTextFirst != xFooterText ) exportHeaderFooterContent( xFooterTextFirst, sal_True ); if( xFooterTextLeft.is() && xFooterTextLeft != xFooterText ) exportHeaderFooterContent( xFooterTextLeft, sal_True ); } else { aAny = rPropSet->getPropertyValue( sHeaderOn ); sal_Bool bHeader = sal_False; aAny >>= bHeader; sal_Bool bHeaderFirst = sal_False; if( bHeader ) { aAny = rPropSet->getPropertyValue( sFirstShareContent ); aAny >>= bHeaderFirst; } sal_Bool bHeaderLeft = sal_False; if( bHeader ) { aAny = rPropSet->getPropertyValue( sHeaderShareContent ); aAny >>= bHeaderLeft; } if( xHeaderText.is() ) { if( !bHeader ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_HEADER, sal_True, sal_True ); exportHeaderFooterContent( xHeaderText, sal_False ); } if( xHeaderTextFirst.is() && xHeaderTextFirst != xHeaderText ) { if( !bHeaderFirst ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_HEADER_FIRST, sal_True, sal_True ); exportHeaderFooterContent( xHeaderTextFirst, sal_False ); } if( xHeaderTextLeft.is() && xHeaderTextLeft != xHeaderText ) { if( !bHeaderLeft ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_HEADER_LEFT, sal_True, sal_True ); exportHeaderFooterContent( xHeaderTextLeft, sal_False ); } aAny = rPropSet->getPropertyValue( sFooterOn ); sal_Bool bFooter = sal_False; aAny >>= bFooter; sal_Bool bFooterFirst = sal_False; if( bFooter ) { aAny = rPropSet->getPropertyValue( sFirstShareContent ); aAny >>= bFooterFirst; } sal_Bool bFooterLeft = sal_False; if( bFooter ) { aAny = rPropSet->getPropertyValue( sFooterShareContent ); aAny >>= bFooterLeft; } if( xFooterText.is() ) { if( !bFooter ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_FOOTER, sal_True, sal_True ); exportHeaderFooterContent( xFooterText, sal_False ); } if( xFooterTextFirst.is() && xFooterTextFirst != xFooterText ) { if( !bFooterFirst ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_FOOTER_FIRST, sal_True, sal_True ); exportHeaderFooterContent( xFooterTextFirst, sal_False ); } if( xFooterTextLeft.is() && xFooterTextLeft != xFooterText ) { if( !bFooterLeft ) GetExport().AddAttribute( XML_NAMESPACE_STYLE, XML_DISPLAY, XML_FALSE ); SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_FOOTER_LEFT, sal_True, sal_True ); exportHeaderFooterContent( xFooterTextLeft, sal_False ); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */