Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_PRESENTATION_XSLIDESHOWVIEW_HDL
2 : #define INCLUDED_COM_SUN_STAR_PRESENTATION_XSLIDESHOWVIEW_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/awt/Rectangle.hdl"
7 : namespace com { namespace sun { namespace star { namespace awt { class XMouseListener; } } } }
8 : namespace com { namespace sun { namespace star { namespace awt { class XMouseMotionListener; } } } }
9 : namespace com { namespace sun { namespace star { namespace awt { class XPaintListener; } } } }
10 : #include "com/sun/star/geometry/AffineMatrix2D.hdl"
11 : namespace com { namespace sun { namespace star { namespace rendering { class XSpriteCanvas; } } } }
12 : #include "com/sun/star/uno/RuntimeException.hdl"
13 : #include "com/sun/star/uno/XInterface.hdl"
14 : namespace com { namespace sun { namespace star { namespace util { class XModifyListener; } } } }
15 : #include "com/sun/star/uno/Reference.h"
16 : #include "cppu/macros.hxx"
17 : #include "sal/types.h"
18 :
19 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
20 :
21 : namespace com { namespace sun { namespace star { namespace presentation {
22 :
23 0 : class SAL_NO_VTABLE XSlideShowView : public css::uno::XInterface
24 : {
25 : public:
26 :
27 : // Methods
28 : virtual ::com::sun::star::uno::Reference< css::rendering::XSpriteCanvas > SAL_CALL getCanvas() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL clear() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual css::geometry::AffineMatrix2D SAL_CALL getTransformation() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL addTransformationChangedListener( const ::com::sun::star::uno::Reference< css::util::XModifyListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL removeTransformationChangedListener( const ::com::sun::star::uno::Reference< css::util::XModifyListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL addPaintListener( const ::com::sun::star::uno::Reference< css::awt::XPaintListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL removePaintListener( const ::com::sun::star::uno::Reference< css::awt::XPaintListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual void SAL_CALL addMouseListener( const ::com::sun::star::uno::Reference< css::awt::XMouseListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL removeMouseListener( const ::com::sun::star::uno::Reference< css::awt::XMouseListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual void SAL_CALL addMouseMotionListener( const ::com::sun::star::uno::Reference< css::awt::XMouseMotionListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual void SAL_CALL removeMouseMotionListener( const ::com::sun::star::uno::Reference< css::awt::XMouseMotionListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
39 : virtual void SAL_CALL setMouseCursor( ::sal_Int16 nPointerShape ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
40 : virtual css::awt::Rectangle SAL_CALL getCanvasArea() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
41 :
42 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
43 :
44 : protected:
45 0 : ~XSlideShowView() throw () {} // avoid warnings about virtual members and non-virtual dtor
46 : };
47 :
48 :
49 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::presentation::XSlideShowView const *);
50 : } } } }
51 :
52 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::presentation::XSlideShowView > *) SAL_THROW(());
53 :
54 : #endif
|