Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_RENDERING_XSPRITE_HDL
2 : #define INCLUDED_COM_SUN_STAR_RENDERING_XSPRITE_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/geometry/AffineMatrix2D.hdl"
7 : #include "com/sun/star/geometry/RealPoint2D.hdl"
8 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
9 : #include "com/sun/star/rendering/RenderState.hdl"
10 : #include "com/sun/star/rendering/ViewState.hdl"
11 : namespace com { namespace sun { namespace star { namespace rendering { class XPolyPolygon2D; } } } }
12 : #include "com/sun/star/uno/RuntimeException.hdl"
13 : #include "com/sun/star/uno/XInterface.hdl"
14 : #include "com/sun/star/uno/Reference.h"
15 : #include "cppu/macros.hxx"
16 :
17 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
18 :
19 : namespace com { namespace sun { namespace star { namespace rendering {
20 :
21 0 : class SAL_NO_VTABLE XSprite : public css::uno::XInterface
22 : {
23 : public:
24 :
25 : // Methods
26 : virtual void SAL_CALL setAlpha( double nAlpha ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual void SAL_CALL move( const css::geometry::RealPoint2D& aNewPos, const css::rendering::ViewState& aViewState, const css::rendering::RenderState& aRenderState ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL transform( const css::geometry::AffineMatrix2D& aTransformation ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL clip( const ::com::sun::star::uno::Reference< css::rendering::XPolyPolygon2D >& aClip ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL setPriority( double nPriority ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL show() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL hide() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 :
34 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
35 :
36 : protected:
37 0 : ~XSprite() throw () {} // avoid warnings about virtual members and non-virtual dtor
38 : };
39 :
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::rendering::XSprite const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::rendering::XSprite > *) SAL_THROW(());
45 :
46 : #endif
|