blob: 600507f52253bfb3044132fb702fbb8a9f7dcf20 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_animations_XTimeContainer_idl__
#define __com_sun_star_animations_XTimeContainer_idl__
#ifndef __com_sun_star_animations_XAnimationNode_idl__
#include <com/sun/star/animations/XAnimationNode.idl>
#endif
#ifndef __com_sun_star_container_XContainer_idl__
#include <com/sun/star/container/XContainer.idl>
#endif
#ifndef __com_sun_star_container_XEnumerationAccess_idl__
#include <com/sun/star/container/XEnumerationAccess.idl>
#endif
#ifndef __com_sun_star_lang_IllegalArgumentException_idl__
#include <com/sun/star/lang/IllegalArgumentException.idl>
#endif
#ifndef __com_sun_star_container_ElementExistException_idl__
#include <com/sun/star/container/ElementExistException.idl>
#endif
//=============================================================================
module com { module sun { module star { module animations {
//=============================================================================
/**
Supported modules
<ul>
<li>BasicInlineTiming</li>
<li>EventTiming</li>
<li>FillDefault</li>
<li>MultiArcTiming</li>
<li>
RepeatTiming
<b>
The deprecated <code>repeat</code> is not supported.
</li>
<li>RestartDefault</li>
<li>RestartTiming</li>
<li>TimeContainerAttributes</li>
</ul>
@see http://www.w3.org/TR/smil20/smil-timing.html
@see http://www.w3.org/TR/smil20/smil-timing.html#Timing-TimingConcepts
*/
interface XTimeContainer : XAnimationNode
{
/*
com::sun::star::container::XContainer;
com::sun::star::container::XEnumerationAccess;
*/
/*
[attribute] long PresetId;
[attribute] long PresetSubType;
[attribute] long PresetClass;
*/
/**
*/
XAnimationNode insertBefore( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::container::NoSuchElementException,
com::sun::star::container::ElementExistException,
com::sun::star::lang::WrappedTargetException );
/**
*/
XAnimationNode insertAfter( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::container::NoSuchElementException,
com::sun::star::container::ElementExistException,
com::sun::star::lang::WrappedTargetException );
/**
*/
XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::container::NoSuchElementException,
com::sun::star::container::ElementExistException,
com::sun::star::lang::WrappedTargetException );
/**
*/
XAnimationNode removeChild( [in] XAnimationNode oldChild )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::container::NoSuchElementException,
com::sun::star::lang::WrappedTargetException );
/**
*/
XAnimationNode appendChild( [in] XAnimationNode newChild )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::container::ElementExistException,
com::sun::star::lang::WrappedTargetException );
};
//=============================================================================
}; }; }; };
#endif