bump product version to 4.1.6.2
[LibreOffice.git] / oox / source / ppt / animvariantcontext.cxx
blob51ff3a45a130984300d522a8e81950059c424d1f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "animvariantcontext.hxx"
22 #include "comphelper/anytostring.hxx"
23 #include "cppuhelper/exc_hlp.hxx"
24 #include <osl/diagnose.h>
26 #include <com/sun/star/uno/Any.hxx>
27 #include <rtl/ustring.hxx>
29 #include "oox/helper/attributelist.hxx"
30 #include "oox/core/fragmenthandler.hxx"
31 #include "oox/core/xmlfilterbase.hxx"
32 #include "oox/drawingml/colorchoicecontext.hxx"
33 #include "pptfilterhelpers.hxx"
35 using namespace ::oox::core;
36 using namespace ::com::sun::star::uno;
37 using namespace ::com::sun::star::xml::sax;
39 namespace oox { namespace ppt {
41 AnimVariantContext::AnimVariantContext( FragmentHandler2& rParent, sal_Int32 aElement, Any & aValue )
42 : FragmentHandler2( rParent )
43 , mnElement( aElement )
44 , maValue( aValue )
48 AnimVariantContext::~AnimVariantContext( ) throw( )
52 void AnimVariantContext::onEndElement()
54 if( isCurrentElement( mnElement ) && maColor.isUsed() )
56 maValue = makeAny( maColor.getColor( getFilter().getGraphicHelper() ) );
61 ContextHandlerRef AnimVariantContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
63 switch( aElementToken )
65 case PPT_TOKEN( boolVal ):
67 bool val = rAttribs.getBool( XML_val, false );
68 maValue = makeAny( val );
69 return this;
71 case PPT_TOKEN( clrVal ):
72 return new ::oox::drawingml::ColorContext( *this, maColor );
73 // we'll defer setting the Any until the end.
74 case PPT_TOKEN( fltVal ):
76 double val = rAttribs.getDouble( XML_val, 0.0 );
77 maValue = makeAny( val );
78 return this;
80 case PPT_TOKEN( intVal ):
82 sal_Int32 val = rAttribs.getInteger( XML_val, 0 );
83 maValue = makeAny( val );
84 return this;
86 case PPT_TOKEN( strVal ):
88 OUString val = rAttribs.getString( XML_val, OUString() );
89 convertMeasure( val ); // ignore success or failure if it fails, use as is
90 maValue = makeAny( val );
91 return this;
93 default:
94 break;
97 return this;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */