Files
libreoffice/xmloff/source/text/XMLTextMasterPageContext.cxx

294 lines
9.9 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-10-12 17:10:10 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-10-12 17:10:10 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-10-12 17:10:10 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-10-12 17:10:10 +00:00
*
* This file is part of OpenOffice.org.
2000-10-12 17:10:10 +00:00
*
* 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.
2000-10-12 17:10:10 +00:00
*
* 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).
2000-10-12 17:10:10 +00:00
*
* 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.
2000-10-12 17:10:10 +00:00
*
************************************************************************/
#include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/style/PageStyleLayout.hpp>
2002-05-30 13:47:10 +00:00
#include <com/sun/star/beans/XMultiPropertyStates.hpp>
#include <xmloff/nmspmap.hxx>
#include "xmloff/xmlnmspe.hxx"
#include <xmloff/xmltoken.hxx>
#include <xmloff/XMLTextMasterPageContext.hxx>
2000-10-12 17:10:10 +00:00
#include "XMLTextHeaderFooterContext.hxx"
#include <xmloff/xmlimp.hxx>
#include "PageMasterImportContext.hxx"
2000-10-12 17:10:10 +00:00
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
2000-10-12 17:10:10 +00:00
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::xml::sax;
using namespace ::com::sun::star::style;
using namespace ::com::sun::star::text;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
using namespace ::xmloff::token;
2000-10-12 17:10:10 +00:00
Reference < XStyle > XMLTextMasterPageContext::Create()
{
Reference < XStyle > xNewStyle;
Reference< XMultiServiceFactory > xFactory( GetImport().GetModel(),
UNO_QUERY );
if( xFactory.is() )
{
Reference < XInterface > xIfc =
xFactory->createInstance(OUString(RTL_CONSTASCII_USTRINGPARAM(
"com.sun.star.style.PageStyle")) );
if( xIfc.is() )
xNewStyle = Reference < XStyle >( xIfc, UNO_QUERY );
}
return xNewStyle;
}
TYPEINIT1( XMLTextMasterPageContext, SvXMLStyleContext );
XMLTextMasterPageContext::XMLTextMasterPageContext( SvXMLImport& rImport,
sal_uInt16 nPrfx, const OUString& rLName,
const Reference< XAttributeList > & xAttrList,
sal_Bool bOverwrite )
: SvXMLStyleContext( rImport, nPrfx, rLName, xAttrList, XML_STYLE_FAMILY_MASTER_PAGE )
, sIsPhysical( RTL_CONSTASCII_USTRINGPARAM( "IsPhysical" ) )
, sPageStyleLayout( RTL_CONSTASCII_USTRINGPARAM( "PageStyleLayout" ) )
, sFollowStyle( RTL_CONSTASCII_USTRINGPARAM( "FollowStyle" ) )
, bInsertHeader( sal_False )
, bInsertFooter( sal_False )
, bInsertHeaderLeft( sal_False )
, bInsertFooterLeft( sal_False )
, bHeaderInserted( sal_False )
, bFooterInserted( sal_False )
, bHeaderLeftInserted( sal_False )
, bFooterLeftInserted( sal_False )
2000-10-12 17:10:10 +00:00
{
OUString sName, sDisplayName;
2000-10-12 17:10:10 +00:00
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
for( sal_Int16 i=0; i < nAttrCount; i++ )
{
const OUString& rAttrName = xAttrList->getNameByIndex( i );
OUString aLocalName;
sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( rAttrName, &aLocalName );
if( XML_NAMESPACE_STYLE == nPrefix )
2000-10-12 17:10:10 +00:00
{
if( IsXMLToken( aLocalName, XML_NAME ) )
{
sName = xAttrList->getValueByIndex( i );
}
else if( IsXMLToken( aLocalName, XML_DISPLAY_NAME ) )
{
sDisplayName = xAttrList->getValueByIndex( i );
}
else if( IsXMLToken( aLocalName, XML_NEXT_STYLE_NAME ) )
{
sFollow = xAttrList->getValueByIndex( i );
}
else if( IsXMLToken( aLocalName, XML_PAGE_LAYOUT_NAME ) )
{
sPageMasterName = xAttrList->getValueByIndex( i );
}
2000-10-12 17:10:10 +00:00
}
}
if( !sDisplayName.isEmpty() )
{
rImport.AddStyleDisplayName( XML_STYLE_FAMILY_MASTER_PAGE, sName,
sDisplayName );
}
else
{
sDisplayName = sName;
}
if( sDisplayName.isEmpty() )
2000-10-12 17:10:10 +00:00
return;
Reference < XNameContainer > xPageStyles =
GetImport().GetTextImport()->GetPageStyles();
if( !xPageStyles.is() )
return;
Any aAny;
sal_Bool bNew = sal_False;
if( xPageStyles->hasByName( sDisplayName ) )
2000-10-12 17:10:10 +00:00
{
aAny = xPageStyles->getByName( sDisplayName );
2000-10-12 17:10:10 +00:00
aAny >>= xStyle;
}
else
{
xStyle = Create();
if( !xStyle.is() )
return;
aAny <<= xStyle;
xPageStyles->insertByName( sDisplayName, aAny );
2000-10-12 17:10:10 +00:00
bNew = sal_True;
}
Reference < XPropertySet > xPropSet( xStyle, UNO_QUERY );
Reference< XPropertySetInfo > xPropSetInfo =
xPropSet->getPropertySetInfo();
if( !bNew && xPropSetInfo->hasPropertyByName( sIsPhysical ) )
{
aAny = xPropSet->getPropertyValue( sIsPhysical );
bNew = !*(sal_Bool *)aAny.getValue();
}
SetNew( bNew );
2000-10-12 17:10:10 +00:00
if( bOverwrite || bNew )
{
2002-05-30 13:47:10 +00:00
Reference < XMultiPropertyStates > xMultiStates( xPropSet,
UNO_QUERY );
OSL_ENSURE( xMultiStates.is(),
"text page style does not support multi property set" );
if( xMultiStates.is() )
xMultiStates->setAllPropertiesToDefault();
2000-10-12 17:10:10 +00:00
bInsertHeader = bInsertFooter = sal_True;
bInsertHeaderLeft = bInsertFooterLeft = sal_True;
}
}
XMLTextMasterPageContext::~XMLTextMasterPageContext()
{
}
SvXMLImportContext *XMLTextMasterPageContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
const Reference< XAttributeList > & xAttrList )
{
SvXMLImportContext *pContext = 0;
const SvXMLTokenMap& rTokenMap =
GetImport().GetTextImport()->GetTextMasterPageElemTokenMap();
sal_Bool bInsert = sal_False, bFooter = sal_False, bLeft = sal_False;
switch( rTokenMap.Get( nPrefix, rLocalName ) )
{
case XML_TOK_TEXT_MP_HEADER:
if( bInsertHeader && !bHeaderInserted )
{
bInsert = sal_True;
bHeaderInserted = sal_True;
}
break;
case XML_TOK_TEXT_MP_FOOTER:
if( bInsertFooter && !bFooterInserted )
{
bInsert = bFooter = sal_True;
bFooterInserted = sal_True;
}
break;
case XML_TOK_TEXT_MP_HEADER_LEFT:
if( bInsertHeaderLeft && bHeaderInserted && !bHeaderLeftInserted )
bInsert = bLeft = sal_True;
break;
case XML_TOK_TEXT_MP_FOOTER_LEFT:
if( bInsertFooterLeft && bFooterInserted && !bFooterLeftInserted )
bInsert = bFooter = bLeft = sal_True;
break;
}
if( bInsert && xStyle.is() )
{
pContext = CreateHeaderFooterContext( nPrefix, rLocalName,
2000-10-12 17:10:10 +00:00
xAttrList,
bFooter, bLeft );
}
else
{
pContext = SvXMLStyleContext::CreateChildContext( nPrefix, rLocalName,
xAttrList );
}
return pContext;
}
SvXMLImportContext *XMLTextMasterPageContext::CreateHeaderFooterContext(
sal_uInt16 nPrefix,
const ::rtl::OUString& rLocalName,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList,
const sal_Bool bFooter,
const sal_Bool bLeft )
{
Reference < XPropertySet > xPropSet( xStyle, UNO_QUERY );
return new XMLTextHeaderFooterContext( GetImport(),
nPrefix, rLocalName,
xAttrList,
xPropSet,
bFooter, bLeft );
}
void XMLTextMasterPageContext::Finish( sal_Bool bOverwrite )
{
if( xStyle.is() && (IsNew() || bOverwrite) )
{
2000-10-26 07:42:28 +00:00
Reference < XPropertySet > xPropSet( xStyle, UNO_QUERY );
if( !sPageMasterName.isEmpty() )
2000-10-26 07:42:28 +00:00
{
XMLPropStyleContext* pStyle =
GetImport().GetTextImport()->FindPageMaster( sPageMasterName );
if (pStyle)
{
pStyle->FillPropertySet(xPropSet);
}
}
Reference < XNameContainer > xPageStyles =
GetImport().GetTextImport()->GetPageStyles();
if( !xPageStyles.is() )
return;
Reference< XPropertySetInfo > xPropSetInfo =
xPropSet->getPropertySetInfo();
if( xPropSetInfo->hasPropertyByName( sFollowStyle ) )
{
OUString sDisplayFollow(
GetImport().GetStyleDisplayName(
XML_STYLE_FAMILY_MASTER_PAGE, sFollow ) );
if( sDisplayFollow.isEmpty() ||
!xPageStyles->hasByName( sDisplayFollow ) )
sDisplayFollow = xStyle->getName();
Any aAny = xPropSet->getPropertyValue( sFollowStyle );
OUString sCurrFollow;
aAny >>= sCurrFollow;
if( sCurrFollow != sDisplayFollow )
{
aAny <<= sDisplayFollow;
xPropSet->setPropertyValue( sFollowStyle, aAny );
}
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */