update dev300-m58
[ooovba.git] / offapi / com / sun / star / animations / XTimeContainer.idl
blob2862e1fa5313def1209407d995823a26bdc3e275
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XTimeContainer.idl,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_animations_XTimeContainer_idl__
31 #define __com_sun_star_animations_XTimeContainer_idl__
33 #ifndef __com_sun_star_animations_XAnimationNode_idl__
34 #include <com/sun/star/animations/XAnimationNode.idl>
35 #endif
37 #ifndef __com_sun_star_container_XContainer_idl__
38 #include <com/sun/star/container/XContainer.idl>
39 #endif
41 #ifndef __com_sun_star_container_XEnumerationAccess_idl__
42 #include <com/sun/star/container/XEnumerationAccess.idl>
43 #endif
45 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
46 #include <com/sun/star/lang/IllegalArgumentException.idl>
47 #endif
49 #ifndef __com_sun_star_container_ElementExistException_idl__
50 #include <com/sun/star/container/ElementExistException.idl>
51 #endif
53 //=============================================================================
55 module com { module sun { module star { module animations {
57 //=============================================================================
59 /**
61 Supported modules
62 <ul>
63 <li>BasicInlineTiming</li>
64 <li>EventTiming</li>
65 <li>FillDefault</li>
66 <li>MultiArcTiming</li>
67 <li>
68 RepeatTiming
69 <b>
70 The deprecated <code>repeat</code> is not supported.
71 </li>
72 <li>RestartDefault</li>
73 <li>RestartTiming</li>
74 <li>TimeContainerAttributes</li>
75 </ul>
76 @see http://www.w3.org/TR/smil20/smil-timing.html
77 @see http://www.w3.org/TR/smil20/smil-timing.html#Timing-TimingConcepts
79 interface XTimeContainer : XAnimationNode
82 com::sun::star::container::XContainer;
83 com::sun::star::container::XEnumerationAccess;
87 [attribute] long PresetId;
88 [attribute] long PresetSubType;
89 [attribute] long PresetClass;
92 /**
94 XAnimationNode insertBefore( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
95 raises( com::sun::star::lang::IllegalArgumentException,
96 com::sun::star::container::NoSuchElementException,
97 com::sun::star::container::ElementExistException,
98 com::sun::star::lang::WrappedTargetException );
102 XAnimationNode insertAfter( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
103 raises( com::sun::star::lang::IllegalArgumentException,
104 com::sun::star::container::NoSuchElementException,
105 com::sun::star::container::ElementExistException,
106 com::sun::star::lang::WrappedTargetException );
110 XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
111 raises( com::sun::star::lang::IllegalArgumentException,
112 com::sun::star::container::NoSuchElementException,
113 com::sun::star::container::ElementExistException,
114 com::sun::star::lang::WrappedTargetException );
118 XAnimationNode removeChild( [in] XAnimationNode oldChild )
119 raises( com::sun::star::lang::IllegalArgumentException,
120 com::sun::star::container::NoSuchElementException,
121 com::sun::star::lang::WrappedTargetException );
125 XAnimationNode appendChild( [in] XAnimationNode newChild )
126 raises( com::sun::star::lang::IllegalArgumentException,
127 com::sun::star::container::ElementExistException,
128 com::sun::star::lang::WrappedTargetException );
131 //=============================================================================
133 }; }; }; };
135 #endif