1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef _SD_CUSTOMANIMATIONPRESET_HXX 29*cdf0e10cSrcweir #define _SD_CUSTOMANIMATIONPRESET_HXX 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #ifndef BOOST_SHARED_PTR_HPP_INCLUDED 32*cdf0e10cSrcweir #include <boost/shared_ptr.hpp> 33*cdf0e10cSrcweir #endif 34*cdf0e10cSrcweir #include <com/sun/star/lang/XMultiServiceFactory.hpp> 35*cdf0e10cSrcweir #include <com/sun/star/animations/AnimationNodeType.hpp> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir #ifndef _UTL_STLTYPES_HXX_ 38*cdf0e10cSrcweir #include <comphelper/stl_types.hxx> 39*cdf0e10cSrcweir #endif 40*cdf0e10cSrcweir #include <CustomAnimationEffect.hxx> 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir #include <hash_map> 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir namespace sd { 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir typedef std::hash_map< rtl::OUString, CustomAnimationEffectPtr, comphelper::UStringHash, comphelper::UStringEqual > EffectsSubTypeMap; 47*cdf0e10cSrcweir typedef std::hash_map< rtl::OUString, rtl::OUString, comphelper::UStringHash, comphelper::UStringEqual > UStringMap; 48*cdf0e10cSrcweir typedef std::vector< rtl::OUString > UStringList; 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir class CustomAnimationPreset 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir friend class CustomAnimationPresets; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir public: 55*cdf0e10cSrcweir CustomAnimationPreset( CustomAnimationEffectPtr pEffect ); 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir void add( CustomAnimationEffectPtr pEffect ); 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir SD_DLLPUBLIC ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > create( const rtl::OUString& rstrSubType ); 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir const rtl::OUString& getPresetId() const { return maPresetId; } 62*cdf0e10cSrcweir const rtl::OUString& getProperty() const { return maProperty; } 63*cdf0e10cSrcweir const rtl::OUString& getLabel() const { return maLabel; } 64*cdf0e10cSrcweir sal_Int16 getPresetClass() const { return mnPresetClass; } 65*cdf0e10cSrcweir double getDuration() const { return mfDuration; } 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir UStringList getSubTypes(); 68*cdf0e10cSrcweir UStringList getProperties() const; 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir bool hasProperty( const rtl::OUString& rProperty ) const; 71*cdf0e10cSrcweir bool isTextOnly() const { return mbIsTextOnly; } 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir private: 74*cdf0e10cSrcweir rtl::OUString maPresetId; 75*cdf0e10cSrcweir rtl::OUString maProperty; 76*cdf0e10cSrcweir sal_Int16 mnPresetClass; 77*cdf0e10cSrcweir rtl::OUString maLabel; 78*cdf0e10cSrcweir rtl::OUString maDefaultSubTyp; 79*cdf0e10cSrcweir double mfDuration; 80*cdf0e10cSrcweir bool mbIsTextOnly; 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir EffectsSubTypeMap maSubTypes; 83*cdf0e10cSrcweir }; 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir typedef boost::shared_ptr< CustomAnimationPreset > CustomAnimationPresetPtr; 86*cdf0e10cSrcweir typedef std::hash_map<rtl::OUString, CustomAnimationPresetPtr, comphelper::UStringHash, comphelper::UStringEqual> EffectDescriptorMap; 87*cdf0e10cSrcweir typedef std::vector< CustomAnimationPresetPtr > EffectDescriptorList; 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir struct PresetCategory 90*cdf0e10cSrcweir { 91*cdf0e10cSrcweir rtl::OUString maLabel; 92*cdf0e10cSrcweir EffectDescriptorList maEffects; 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir PresetCategory( const rtl::OUString& rLabel, const EffectDescriptorList& rEffects ) 95*cdf0e10cSrcweir : maLabel( rLabel ), maEffects( rEffects ) {} 96*cdf0e10cSrcweir }; 97*cdf0e10cSrcweir typedef boost::shared_ptr< PresetCategory > PresetCategoryPtr; 98*cdf0e10cSrcweir typedef std::vector< PresetCategoryPtr > PresetCategoryList; 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir class CustomAnimationPresets 101*cdf0e10cSrcweir { 102*cdf0e10cSrcweir public: 103*cdf0e10cSrcweir CustomAnimationPresets(); 104*cdf0e10cSrcweir virtual ~CustomAnimationPresets(); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir void init(); 107*cdf0e10cSrcweir 108*cdf0e10cSrcweir SD_DLLPUBLIC static const CustomAnimationPresets& getCustomAnimationPresets(); 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > getRandomPreset( sal_Int16 nPresetClass ) const; 111*cdf0e10cSrcweir 112*cdf0e10cSrcweir SD_DLLPUBLIC CustomAnimationPresetPtr getEffectDescriptor( const rtl::OUString& rPresetId ) const; 113*cdf0e10cSrcweir // const AnimationEffect* getEffect( const rtl::OUString& rPresetId ) const; 114*cdf0e10cSrcweir // const AnimationEffect* getEffect( const rtl::OUString& rPresetId, const rtl::OUString& rPresetSubType ) const; 115*cdf0e10cSrcweir 116*cdf0e10cSrcweir const rtl::OUString& getUINameForPresetId( const rtl::OUString& rPresetId ) const; 117*cdf0e10cSrcweir const rtl::OUString& getUINameForProperty( const rtl::OUString& rProperty ) const; 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir const PresetCategoryList& getEntrancePresets() const { return maEntrancePresets; } 120*cdf0e10cSrcweir const PresetCategoryList& getEmphasisPresets() const { return maEmphasisPresets; } 121*cdf0e10cSrcweir const PresetCategoryList& getExitPresets() const { return maExitPresets; } 122*cdf0e10cSrcweir const PresetCategoryList& getMotionPathsPresets() const { return maMotionPathsPresets; } 123*cdf0e10cSrcweir const PresetCategoryList& getMiscPresets() const { return maMiscPresets; } 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir void changePresetSubType( CustomAnimationEffectPtr pEffect, const rtl::OUString& rPresetSubType ) const; 126*cdf0e10cSrcweir 127*cdf0e10cSrcweir private: 128*cdf0e10cSrcweir void importEffects(); 129*cdf0e10cSrcweir void importResources(); 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir void importPresets( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xConfigProvider, const rtl::OUString& rNodePath, PresetCategoryList& rPresetMap ); 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir const rtl::OUString& translateName( const rtl::OUString& rId, const UStringMap& rNameMap ) const; 134*cdf0e10cSrcweir 135*cdf0e10cSrcweir private: 136*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > mxRootNode; 137*cdf0e10cSrcweir EffectDescriptorMap maEffectDiscriptorMap; 138*cdf0e10cSrcweir UStringMap maEffectNameMap; 139*cdf0e10cSrcweir UStringMap maPropertyNameMap; 140*cdf0e10cSrcweir 141*cdf0e10cSrcweir PresetCategoryList maEntrancePresets; 142*cdf0e10cSrcweir PresetCategoryList maEmphasisPresets; 143*cdf0e10cSrcweir PresetCategoryList maExitPresets; 144*cdf0e10cSrcweir PresetCategoryList maMotionPathsPresets; 145*cdf0e10cSrcweir PresetCategoryList maMiscPresets; 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir static CustomAnimationPresets* mpCustomAnimationPresets; 148*cdf0e10cSrcweir }; 149*cdf0e10cSrcweir 150*cdf0e10cSrcweir typedef boost::shared_ptr< CustomAnimationPresets > CustomAnimationPresetsPtr; 151*cdf0e10cSrcweir 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir #endif // _SD_CUSTOMANIMATIONEFFECTS_HXX 155*cdf0e10cSrcweir 156