1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef _XMLOFF_ANIMATIONS_HXX 25 #define _XMLOFF_ANIMATIONS_HXX 26 27 #include <xmloff/xmltoken.hxx> 28 29 struct SvXMLEnumMapEntry; 30 31 namespace xmloff 32 { 33 const sal_uInt16 Animations_EnumMap_Fill = 0; 34 const sal_uInt16 Animations_EnumMap_FillDefault = 1; 35 const sal_uInt16 Animations_EnumMap_Restart = 2; 36 const sal_uInt16 Animations_EnumMap_RestartDefault = 3; 37 const sal_uInt16 Animations_EnumMap_Endsync = 4; 38 const sal_uInt16 Animations_EnumMap_CalcMode = 5; 39 const sal_uInt16 Animations_EnumMap_AdditiveMode = 6; 40 const sal_uInt16 Animations_EnumMap_TransformType = 7; 41 const sal_uInt16 Animations_EnumMap_TransitionType = 8; 42 const sal_uInt16 Animations_EnumMap_TransitionSubType = 9; 43 const sal_uInt16 Animations_EnumMap_EventTrigger = 10; 44 const sal_uInt16 Animations_EnumMap_EffectPresetClass = 11; 45 const sal_uInt16 Animations_EnumMap_EffectNodeType = 12; 46 const sal_uInt16 Animations_EnumMap_SubItem = 13; 47 const sal_uInt16 Animations_EnumMap_IterateType = 14; 48 const sal_uInt16 Animations_EnumMap_Command = 15; 49 50 extern SvXMLEnumMapEntry* getAnimationsEnumMap( sal_uInt16 nMap ); 51 52 struct ImplAttributeNameConversion 53 { 54 token::XMLTokenEnum meXMLToken; 55 const sal_Char* mpAPIName; 56 }; 57 58 extern struct ImplAttributeNameConversion* getAnimationAttributeNamesConversionList(); 59 60 } 61 62 #endif // _XMLOFF_ANIMATIONS_HXX 63 64