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#ifndef __com_sun_star_animations_XTimeContainer_idl__
24#define __com_sun_star_animations_XTimeContainer_idl__
25
26#ifndef __com_sun_star_animations_XAnimationNode_idl__
27#include <com/sun/star/animations/XAnimationNode.idl>
28#endif
29
30#ifndef __com_sun_star_container_XContainer_idl__
31#include <com/sun/star/container/XContainer.idl>
32#endif
33
34#ifndef __com_sun_star_container_XEnumerationAccess_idl__
35#include <com/sun/star/container/XEnumerationAccess.idl>
36#endif
37
38#ifndef __com_sun_star_lang_IllegalArgumentException_idl__
39#include <com/sun/star/lang/IllegalArgumentException.idl>
40#endif
41
42#ifndef __com_sun_star_container_ElementExistException_idl__
43#include <com/sun/star/container/ElementExistException.idl>
44#endif
45
46//=============================================================================
47
48 module com {  module sun {  module star {  module animations {
49
50//=============================================================================
51
52/**
53
54	Supported modules
55	<ul>
56	<li>BasicInlineTiming</li>
57	<li>EventTiming</li>
58	<li>FillDefault</li>
59	<li>MultiArcTiming</li>
60	<li>
61		RepeatTiming
62		<b>
63		The deprecated <code>repeat</code> is not supported.
64	</li>
65	<li>RestartDefault</li>
66	<li>RestartTiming</li>
67	<li>TimeContainerAttributes</li>
68	</ul>
69	@see http://www.w3.org/TR/smil20/smil-timing.html
70	@see http://www.w3.org/TR/smil20/smil-timing.html#Timing-TimingConcepts
71*/
72interface XTimeContainer : XAnimationNode
73{
74	/*
75	com::sun::star::container::XContainer;
76	com::sun::star::container::XEnumerationAccess;
77	*/
78
79	/*
80	[attribute] long PresetId;
81	[attribute] long PresetSubType;
82	[attribute] long PresetClass;
83	*/
84
85	/**
86	*/
87	XAnimationNode insertBefore( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
88		raises( com::sun::star::lang::IllegalArgumentException,
89				com::sun::star::container::NoSuchElementException,
90				com::sun::star::container::ElementExistException,
91				com::sun::star::lang::WrappedTargetException );
92
93	/**
94	*/
95	XAnimationNode insertAfter( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
96		raises( com::sun::star::lang::IllegalArgumentException,
97				com::sun::star::container::NoSuchElementException,
98				com::sun::star::container::ElementExistException,
99				com::sun::star::lang::WrappedTargetException );
100
101	/**
102	*/
103	XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
104		raises( com::sun::star::lang::IllegalArgumentException,
105				com::sun::star::container::NoSuchElementException,
106				com::sun::star::container::ElementExistException,
107				com::sun::star::lang::WrappedTargetException );
108
109	/**
110	*/
111	XAnimationNode removeChild( [in] XAnimationNode oldChild )
112		raises( com::sun::star::lang::IllegalArgumentException,
113				com::sun::star::container::NoSuchElementException,
114				com::sun::star::lang::WrappedTargetException );
115
116	/**
117	*/
118	XAnimationNode appendChild( [in] XAnimationNode newChild )
119		raises( com::sun::star::lang::IllegalArgumentException,
120				com::sun::star::container::ElementExistException,
121				com::sun::star::lang::WrappedTargetException );
122};
123
124//=============================================================================
125
126}; }; }; };
127
128#endif
129