Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_ANIMATIONS_XANIMATIONNODE_HDL
2 : #define INCLUDED_COM_SUN_STAR_ANIMATIONS_XANIMATIONNODE_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/beans/NamedValue.hdl"
7 : #include "com/sun/star/container/XChild.hdl"
8 : #include "com/sun/star/uno/RuntimeException.hdl"
9 : #include "com/sun/star/uno/Any.h"
10 : #include "com/sun/star/uno/Reference.h"
11 : #include "com/sun/star/uno/Sequence.h"
12 : #include "cppu/macros.hxx"
13 : #include "sal/types.h"
14 :
15 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
16 :
17 : namespace com { namespace sun { namespace star { namespace animations {
18 :
19 6057 : class SAL_NO_VTABLE XAnimationNode : public css::container::XChild
20 : {
21 : public:
22 :
23 : // Attributes
24 : virtual ::sal_Int16 SAL_CALL getType() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
25 : virtual ::com::sun::star::uno::Any SAL_CALL getBegin() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
26 : virtual void SAL_CALL setBegin( const ::com::sun::star::uno::Any& _begin ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::com::sun::star::uno::Any SAL_CALL getDuration() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL setDuration( const ::com::sun::star::uno::Any& _duration ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::com::sun::star::uno::Any SAL_CALL getEnd() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL setEnd( const ::com::sun::star::uno::Any& _end ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Any SAL_CALL getEndSync() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setEndSync( const ::com::sun::star::uno::Any& _endsync ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::com::sun::star::uno::Any SAL_CALL getRepeatCount() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL setRepeatCount( const ::com::sun::star::uno::Any& _repeatcount ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::com::sun::star::uno::Any SAL_CALL getRepeatDuration() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL setRepeatDuration( const ::com::sun::star::uno::Any& _repeatduration ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual ::sal_Int16 SAL_CALL getFill() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual void SAL_CALL setFill( ::sal_Int16 _fill ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
39 : virtual ::sal_Int16 SAL_CALL getFillDefault() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
40 : virtual void SAL_CALL setFillDefault( ::sal_Int16 _filldefault ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
41 : virtual ::sal_Int16 SAL_CALL getRestart() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
42 : virtual void SAL_CALL setRestart( ::sal_Int16 _restart ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
43 : virtual ::sal_Int16 SAL_CALL getRestartDefault() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
44 : virtual void SAL_CALL setRestartDefault( ::sal_Int16 _restartdefault ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
45 : virtual double SAL_CALL getAcceleration() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
46 : virtual void SAL_CALL setAcceleration( double _acceleration ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
47 : virtual double SAL_CALL getDecelerate() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
48 : virtual void SAL_CALL setDecelerate( double _decelerate ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
49 : virtual ::sal_Bool SAL_CALL getAutoReverse() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
50 : virtual void SAL_CALL setAutoReverse( ::sal_Bool _autoreverse ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
51 : virtual ::com::sun::star::uno::Sequence< css::beans::NamedValue > SAL_CALL getUserData() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
52 : virtual void SAL_CALL setUserData( const ::com::sun::star::uno::Sequence< css::beans::NamedValue >& _userdata ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
53 :
54 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
55 :
56 : protected:
57 5949 : ~XAnimationNode() throw () {} // avoid warnings about virtual members and non-virtual dtor
58 : };
59 :
60 :
61 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::animations::XAnimationNode const *);
62 : } } } }
63 :
64 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::animations::XAnimationNode > *) SAL_THROW(());
65 :
66 : #endif
|