1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XTimeContainer.idl,v $
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
>
37 #ifndef __com_sun_star_container_XContainer_idl__
38 #include
<com
/sun
/star
/container
/XContainer.idl
>
41 #ifndef __com_sun_star_container_XEnumerationAccess_idl__
42 #include
<com
/sun
/star
/container
/XEnumerationAccess.idl
>
45 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
46 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
49 #ifndef __com_sun_star_container_ElementExistException_idl__
50 #include
<com
/sun
/star
/container
/ElementExistException.idl
>
53 //=============================================================================
55 module com
{ module sun
{ module star
{ module animations
{
57 //=============================================================================
63 <li>BasicInlineTiming</li>
66 <li>MultiArcTiming</li>
70 The deprecated <code>repeat</code> is not supported.
72 <li>RestartDefault</li>
73 <li>RestartTiming</li>
74 <li>TimeContainerAttributes</li>
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;
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 //=============================================================================