office-gobmx/oox/source/drawingml/clrschemecontext.cxx
Rüdiger Timm b675c1b8b3 INTEGRATION: CWS changefileheader (1.3.6); FILE MERGED
2008/03/31 16:21:42 rt 1.3.6.1: #i87441# Change license header to LPGL v3.
2008-04-10 14:13:28 +00:00

132 lines
4.8 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: clrschemecontext.cxx,v $
* $Revision: 1.4 $
*
* 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 "oox/drawingml/clrschemecontext.hxx"
#include "oox/drawingml/colorchoicecontext.hxx"
#include "oox/core/namespaces.hxx"
#include "tokens.hxx"
using namespace ::oox::core;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::xml::sax;
namespace oox { namespace drawingml {
static void setClrMap( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& xAttributes,
ClrMap& rClrMap, sal_Int32 nToken )
{
if ( xAttributes->hasAttribute( nToken ) )
{
sal_Int32 nMappedToken = xAttributes->getOptionalValueToken( nToken, 0 );
rClrMap.setColorMap( nToken, nMappedToken );
}
}
clrMapContext::clrMapContext( ContextHandler& rParent,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& xAttributes, ClrMap& rClrMap )
: ContextHandler( rParent )
{
setClrMap( xAttributes, rClrMap, XML_bg1 );
setClrMap( xAttributes, rClrMap, XML_tx1 );
setClrMap( xAttributes, rClrMap, XML_bg2 );
setClrMap( xAttributes, rClrMap, XML_tx2 );
setClrMap( xAttributes, rClrMap, XML_accent1 );
setClrMap( xAttributes, rClrMap, XML_accent2 );
setClrMap( xAttributes, rClrMap, XML_accent3 );
setClrMap( xAttributes, rClrMap, XML_accent4 );
setClrMap( xAttributes, rClrMap, XML_accent5 );
setClrMap( xAttributes, rClrMap, XML_accent6 );
setClrMap( xAttributes, rClrMap, XML_hlink );
setClrMap( xAttributes, rClrMap, XML_folHlink );
}
Reference< XFastContextHandler > clrMapContext::createFastChildContext( sal_Int32 /* aElementToken */, const Reference< XFastAttributeList >& /* xAttribs */ )
throw (SAXException, RuntimeException)
{
Reference< XFastContextHandler > xRet;
return xRet;
}
clrSchemeContext::clrSchemeContext( ContextHandler& rParent, const ClrSchemePtr pClrSchemePtr )
: ContextHandler( rParent )
, mpClrSchemePtr( pClrSchemePtr )
{
}
void clrSchemeContext::startFastElement( sal_Int32 /* aElementToken */, const Reference< XFastAttributeList >& /* xAttribs */ ) throw (SAXException, RuntimeException)
{
}
void clrSchemeContext::endFastElement( sal_Int32 aElementToken ) throw (SAXException, RuntimeException)
{
switch( aElementToken )
{
case NMSP_DRAWINGML|XML_dk1:
case NMSP_DRAWINGML|XML_lt1:
case NMSP_DRAWINGML|XML_dk2:
case NMSP_DRAWINGML|XML_lt2:
case NMSP_DRAWINGML|XML_accent1:
case NMSP_DRAWINGML|XML_accent2:
case NMSP_DRAWINGML|XML_accent3:
case NMSP_DRAWINGML|XML_accent4:
case NMSP_DRAWINGML|XML_accent5:
case NMSP_DRAWINGML|XML_accent6:
case NMSP_DRAWINGML|XML_hlink:
case NMSP_DRAWINGML|XML_folHlink:
{
mpClrSchemePtr->setColor( aElementToken & 0xffff, maColor.getColor( getFilter() ) );
break;
}
}
}
Reference< XFastContextHandler > clrSchemeContext::createFastChildContext( sal_Int32 aElementToken, const Reference< XFastAttributeList >& /* xAttribs */ ) throw (SAXException, RuntimeException)
{
Reference< XFastContextHandler > xRet;
switch( aElementToken )
{
case NMSP_DRAWINGML|XML_scrgbClr: // CT_ScRgbColor
case NMSP_DRAWINGML|XML_srgbClr: // CT_SRgbColor
case NMSP_DRAWINGML|XML_hslClr: // CT_HslColor
case NMSP_DRAWINGML|XML_sysClr: // CT_SystemColor
// case NMSP_DRAWINGML|XML_schemeClr: // CT_SchemeColor
case NMSP_DRAWINGML|XML_prstClr: // CT_PresetColor
{
xRet.set( new colorChoiceContext( *this, maColor ) );
break;
}
}
if( !xRet.is() )
xRet.set( this );
return xRet;
}
} }