Branch libreoffice-5-0-4
[LibreOffice.git] / include / oox / ppt / animationspersist.hxx
blob2b27736b6dc4f228ad1e977ec7698904d9fbcb81
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 .
21 #ifndef INCLUDED_OOX_PPT_ANIMATIONSPERSIST_HXX
22 #define INCLUDED_OOX_PPT_ANIMATIONSPERSIST_HXX
24 #include <list>
25 #include <memory>
26 #include <boost/array.hpp>
28 #include <rtl/ustring.hxx>
30 #include <com/sun/star/uno/Any.hxx>
31 #include <com/sun/star/drawing/XShape.hpp>
33 #include <oox/drawingml/drawingmltypes.hxx>
34 #include <oox/ppt/slidepersist.hxx>
36 namespace oox { namespace ppt {
38 enum {
39 NP_TO = 0,
40 NP_FROM, NP_BY, NP_USERDATA, NP_ATTRIBUTENAME,
41 NP_ACCELERATION, NP_AUTOREVERSE, NP_DECELERATE, NP_DURATION, NP_FILL,
42 NP_REPEATCOUNT, NP_REPEATDURATION, NP_RESTART,
43 NP_DIRECTION, NP_COLORINTERPOLATION, NP_CALCMODE, NP_TRANSFORMTYPE,
44 NP_PATH,
45 NP_ENDSYNC, NP_ITERATETYPE, NP_ITERATEINTERVAL,
46 NP_SUBITEM, NP_TARGET, NP_COMMAND, NP_PARAMETER,
47 NP_VALUES, NP_FORMULA, NP_KEYTIMES, NP_DISPLAY,
48 _NP_SIZE
51 typedef boost::array< ::com::sun::star::uno::Any, _NP_SIZE > NodePropertyMap;
54 /** data for CT_TLShapeTargetElement */
55 struct ShapeTargetElement
57 ShapeTargetElement()
58 : mnType(0)
59 , mnRangeType(0)
61 maRange.start = maRange.end = 0;
63 void convert( ::com::sun::star::uno::Any & aAny, sal_Int16 & rSubType ) const;
65 sal_Int32 mnType;
66 sal_Int32 mnRangeType;
67 drawingml::IndexRange maRange;
68 OUString msSubShapeId;
72 /** data for CT_TLTimeTargetElement */
73 struct AnimTargetElement
75 AnimTargetElement()
76 : mnType( 0 )
78 /** convert to a set of properties */
79 ::com::sun::star::uno::Any convert(const SlidePersistPtr & pSlide, sal_Int16 & nSubType) const;
81 sal_Int32 mnType;
82 OUString msValue;
84 ShapeTargetElement maShapeTarget;
87 typedef std::shared_ptr< AnimTargetElement > AnimTargetElementPtr;
89 struct AnimationCondition;
91 typedef std::list< AnimationCondition > AnimationConditionList;
93 /** data for CT_TLTimeCondition */
94 struct AnimationCondition
96 AnimationCondition()
97 : mnType( 0 )
100 ::com::sun::star::uno::Any convert(const SlidePersistPtr & pSlide) const;
101 static ::com::sun::star::uno::Any convertList(const SlidePersistPtr & pSlide, const AnimationConditionList & l);
103 AnimTargetElementPtr & getTarget()
104 { if(!mpTarget) mpTarget.reset( new AnimTargetElement ); return mpTarget; }
105 ::com::sun::star::uno::Any maValue;
106 sal_Int32 mnType;
107 private:
108 AnimTargetElementPtr mpTarget;
112 struct TimeAnimationValue
114 OUString msFormula;
115 OUString msTime;
116 ::com::sun::star::uno::Any maValue;
119 typedef ::std::list< TimeAnimationValue > TimeAnimationValueList;
127 #endif
129 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */