Files
libreoffice/xmloff/source/style/FillStyleContext.cxx

324 lines
9.0 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by: Armin Le Grand. #118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task. http://svn.apache.org/viewvc?view=revision&revision=1195906 #118485# - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 #118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles http://svn.apache.org/viewvc?view=revision&revision=1293316 #119337# Solves the wrong get/setPropertyValue calls in SvxShapeText (and thus in SvxOle2Shape) http://svn.apache.org/viewvc?view=revision&revision=1344156 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i117717#: remove wrong assertion http://svn.apache.org/viewvc?view=revision&revision=1172349 Patch contributed by Herbert Duerr goodbye Registration and License dialogs, don't let the door hit you http://svn.apache.org/viewvc?view=revision&revision=1172613 help gcc 4.6.0 on 32bit ubuntu 11.10" http://svn.apache.org/viewvc?view=revision&revision=1245357 Do not add targets for junit tests when junit is disabled. Patch contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1241508 Revert "sb140: #i117082# avoid unncessary static class data members commit 21d97438e2944861e26e4984195f959a0cce1e41. remove obsolete FreeBSD visibility special case. retain consolidated BSD bridge code, remove OS/2 pieces.
2012-11-12 17:21:24 +00:00
/*
* 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 .
*/
2000-09-18 16:07:07 +00:00
#include <com/sun/star/container/XNameContainer.hpp>
#include "FillStyleContext.hxx"
#include <xmloff/xmlimp.hxx>
#include <xmloff/GradientStyle.hxx>
#include <xmloff/HatchStyle.hxx>
#include <xmloff/ImageStyle.hxx>
2000-09-18 16:07:07 +00:00
#include "TransGradientStyle.hxx"
#include <xmloff/MarkerStyle.hxx>
#include <xmloff/DashStyle.hxx>
#include <xmloff/families.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/XMLBase64ImportContext.hxx>
2000-09-18 16:07:07 +00:00
using namespace ::com::sun::star;
2000-09-18 16:07:07 +00:00
XMLGradientStyleContext::XMLGradientStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
2000-09-18 16:07:07 +00:00
// start import
XMLGradientStyleImport aGradientStyle( GetImport() );
2000-09-18 16:07:07 +00:00
aGradientStyle.importXML( xAttrList, maAny, maStrName );
}
XMLGradientStyleContext::~XMLGradientStyleContext()
{
}
void XMLGradientStyleContext::EndElement()
{
uno::Reference< container::XNameContainer > xGradient( GetImport().GetGradientHelper() );
try
{
if(xGradient.is())
{
if( xGradient->hasByName( maStrName ) )
{
xGradient->replaceByName( maStrName, maAny );
}
else
{
xGradient->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
bool XMLGradientStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
2000-09-18 16:07:07 +00:00
XMLHatchStyleContext::XMLHatchStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
// start import
XMLHatchStyleImport aHatchStyle( GetImport() );
2000-09-18 16:07:07 +00:00
aHatchStyle.importXML( xAttrList, maAny, maStrName );
}
XMLHatchStyleContext::~XMLHatchStyleContext()
{
}
void XMLHatchStyleContext::EndElement()
{
uno::Reference< container::XNameContainer > xHatch( GetImport().GetHatchHelper() );
try
{
if(xHatch.is())
{
if( xHatch->hasByName( maStrName ) )
{
xHatch->replaceByName( maStrName, maAny );
}
else
{
xHatch->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
bool XMLHatchStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
2000-09-18 16:07:07 +00:00
XMLBitmapStyleContext::XMLBitmapStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
// start import
2000-12-01 10:16:41 +00:00
XMLImageStyle aBitmapStyle;
XMLImageStyle::importXML( xAttrList, maAny, maStrName, rImport );
2000-09-18 16:07:07 +00:00
}
XMLBitmapStyleContext::~XMLBitmapStyleContext()
{
}
SvXMLImportContext* XMLBitmapStyleContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList )
{
SvXMLImportContext *pContext = nullptr;
if( (XML_NAMESPACE_OFFICE == nPrefix) && xmloff::token::IsXMLToken( rLocalName, xmloff::token::XML_BINARY_DATA ) )
{
OUString sURL;
maAny >>= sURL;
if( sURL.isEmpty() && !mxBase64Stream.is() )
{
mxBase64Stream = GetImport().GetStreamForGraphicObjectURLFromBase64();
if( mxBase64Stream.is() )
pContext = new XMLBase64ImportContext( GetImport(), nPrefix,
rLocalName, xAttrList,
mxBase64Stream );
}
}
if( !pContext )
{
pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
}
return pContext;
}
2000-09-18 16:07:07 +00:00
void XMLBitmapStyleContext::EndElement()
{
OUString sURL;
maAny >>= sURL;
if( sURL.isEmpty() && mxBase64Stream.is() )
{
sURL = GetImport().ResolveGraphicObjectURLFromBase64( mxBase64Stream );
mxBase64Stream = nullptr;
maAny <<= sURL;
}
2000-09-18 16:07:07 +00:00
uno::Reference< container::XNameContainer > xBitmap( GetImport().GetBitmapHelper() );
try
{
if(xBitmap.is())
{
if( xBitmap->hasByName( maStrName ) )
{
xBitmap->replaceByName( maStrName, maAny );
}
else
{
xBitmap->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
bool XMLBitmapStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
2000-09-18 16:07:07 +00:00
XMLTransGradientStyleContext::XMLTransGradientStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
// start import
XMLTransGradientStyleImport aTransGradientStyle( GetImport() );
2000-09-18 16:07:07 +00:00
aTransGradientStyle.importXML( xAttrList, maAny, maStrName );
}
XMLTransGradientStyleContext::~XMLTransGradientStyleContext()
{
}
void XMLTransGradientStyleContext::EndElement()
{
uno::Reference< container::XNameContainer > xTransGradient( GetImport().GetTransGradientHelper() );
try
{
if(xTransGradient.is())
{
if( xTransGradient->hasByName( maStrName ) )
{
xTransGradient->replaceByName( maStrName, maAny );
}
else
{
xTransGradient->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
bool XMLTransGradientStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
2000-09-18 16:07:07 +00:00
XMLMarkerStyleContext::XMLMarkerStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
// start import
XMLMarkerStyleImport aMarkerStyle( GetImport() );
2000-09-18 16:07:07 +00:00
aMarkerStyle.importXML( xAttrList, maAny, maStrName );
}
XMLMarkerStyleContext::~XMLMarkerStyleContext()
{
}
void XMLMarkerStyleContext::EndElement()
{
uno::Reference< container::XNameContainer > xMarker( GetImport().GetMarkerHelper() );
try
{
if(xMarker.is())
{
if( xMarker->hasByName( maStrName ) )
{
xMarker->replaceByName( maStrName, maAny );
}
else
{
xMarker->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
bool XMLMarkerStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
2000-09-18 16:07:07 +00:00
XMLDashStyleContext::XMLDashStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const uno::Reference< xml::sax::XAttributeList >& xAttrList)
: SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList)
{
// start import
XMLDashStyleImport aDashStyle( GetImport() );
2000-09-18 16:07:07 +00:00
aDashStyle.importXML( xAttrList, maAny, maStrName );
}
XMLDashStyleContext::~XMLDashStyleContext()
{
}
void XMLDashStyleContext::EndElement()
{
uno::Reference< container::XNameContainer > xDashes( GetImport().GetDashHelper() );
try
{
if(xDashes.is())
{
if( xDashes->hasByName( maStrName ) )
{
xDashes->replaceByName( maStrName, maAny );
}
else
{
xDashes->insertByName( maStrName, maAny );
}
}
2000-09-18 16:07:07 +00:00
}
catch( container::ElementExistException& )
{}
}
2002-05-23 13:15:35 +00:00
bool XMLDashStyleContext::IsTransient() const
2002-05-23 13:15:35 +00:00
{
return true;
2002-05-23 13:15:35 +00:00
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */