Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / sd / source / filter / ppt / ppt97animations.hxx
blobbf4d438b640fc338547e4d9670484217a7013327
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 #ifndef INCLUDED_SD_SOURCE_FILTER_PPT_PPT97ANIMATIONS_HXX
21 #define INCLUDED_SD_SOURCE_FILTER_PPT_PPT97ANIMATIONS_HXX
23 // header for class SvStream
24 #include <tools/stream.hxx>
26 class SdrObject;
27 class Ppt97Animation;
29 /// helper class for reading PPT AnimationInfoAtom
30 class Ppt97AnimationInfoAtom
32 friend class Ppt97Animation;
34 //-- member
35 sal_uInt32 nDimColor;
36 sal_uInt32 nFlags; ///< 0x0004: time instead of click
37 sal_uInt32 nSoundRef;
38 sal_Int32 nDelayTime; ///< 1/1000 sec
39 sal_uInt16 nOrderID;
40 sal_uInt16 nSlideCount;
41 sal_uInt8 nBuildType;
42 sal_uInt8 nFlyMethod;
43 sal_uInt8 nFlyDirection;
44 sal_uInt8 nAfterEffect; ///< nAfterEffect: 0: none; 1: change color; 2: dim on next effect; 3: dim after effect;
45 sal_uInt8 nSubEffect;
46 sal_uInt8 nOLEVerb;
48 // unknown, because whole size needs to be 28
49 sal_uInt8 nUnknown1;
50 sal_uInt8 nUnknown2;
52 //-- methods
53 void ReadStream( SvStream& rIn );
55 nFlags:
56 decimal / hexadecimal / binary
57 1040 0x00000410 10000010000 mouseclick
58 17428 0x00004414 100010000010100 after previous 0 sec (animate form)
59 17412 0x00004404 100010000000100 after previous 0 sec
60 1088 0x00000440 10001000000 stop previous sound and mouseclick
61 1044 0x00000414 10000010100 play sound automatic
62 1041 0x00000411 10000010001
63 | | | | | |
64 | | | | | reverse order
65 | | | | after previous
66 | | | sound
67 | | stop previous sound
68 | ?
69 animate form
71 nAfterEffect:
72 1: color
73 0: nothing
74 3: hide after animation
75 2: hide at next mouse click
79 /** this is a helping class for import of PPT 97 animations
80 1. use the constructor Ppt97Animation( SvStream& rIn ) to import information from the stream
81 2. use the set methods to modify and complete the data
82 3. use the method createAndSetCustomAnimationEffect( ) to create an effect in sd model
84 class Ppt97Animation
87 public: //public methods
88 Ppt97Animation( SvStream& rIn );
90 Ppt97Animation( const Ppt97Animation& rAnimation );
91 Ppt97Animation& operator= ( const Ppt97Animation& rAnimation );
92 bool operator < ( const Ppt97Animation& rAnimation ) const;//later is greater
93 bool operator > ( const Ppt97Animation& rAnimation ) const;//later is greater
94 ~Ppt97Animation();
96 //get methods
97 bool HasEffect() const;
98 bool HasParagraphEffect() const;
99 bool HasSoundEffect() const;
100 sal_Int32 GetDimColor() const;
101 sal_uInt32 GetSoundRef() const;
102 /// @return true if the shape should be animated in addition to the text
103 bool HasAnimateAssociatedShape() const;
105 //set methods
106 void SetDimColor( sal_Int32 nDimColor );
107 void SetSoundFileUrl( const OUString& rSoundFileUrl );
108 void SetAnimateAssociatedShape( bool bAnimate ); //true if the shape should be animated in addition to the text
110 //action methods
111 /** this method creates a CustomAnimationEffect for the given SdrObject
112 from internal data and stores the created effect at the draw model
114 void createAndSetCustomAnimationEffect( SdrObject* pObj );
116 private: //private methods
118 //read methods
119 OUString GetPresetId() const;
120 OUString GetPresetSubType() const;
121 bool HasAfterEffect() const;
122 bool HasAfterEffect_ChangeColor() const;
123 bool HasAfterEffect_DimAtNextEffect() const;
124 bool HasStopPreviousSound() const;
126 /// @return true if the text paragraphs should be animated in reverse order
127 bool HasReverseOrder() const;
129 ///paragraph level that is animated ( that paragraph and higher levels )
130 sal_Int32 GetParagraphLevel() const;
132 ///@see com::sun::star::presentation::TextAnimationType
133 sal_Int16 GetTextAnimationType() const;
135 ///@see com::sun::star::presentation::EffectNodeType
136 sal_Int16 GetEffectNodeType() const;
138 /// @return -1 for start on mouseclick or >= 0 for a delay in seconds for automatic start
139 double GetDelayTimeInSeconds() const;
140 bool GetSpecialDuration( double& rfDurationInSeconds ) const;
141 bool GetSpecialTextIterationDelay( double& rfTextIterationDelay ) const;
143 void UpdateCacheData() const;
144 void ClearCacheData() const;
146 private: //private member
147 //input information:
148 Ppt97AnimationInfoAtom m_aAtom; ///< pure input from stream
149 OUString m_aSoundFileUrl; ///< this needs to be set in addition from outside as this class has not the knowledge to translate the sound bits to a file url
151 //cached generated output information:
152 mutable bool m_bDirtyCache;
153 mutable OUString m_aPresetId; // m_aPresetId and m_aSubType match to the values in sd/xml/effects.xml
154 mutable OUString m_aSubType;
155 mutable bool m_bHasSpecialDuration;
156 mutable double m_fDurationInSeconds;
159 #endif
161 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */