Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_XTOOLKIT_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_XTOOLKIT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/awt/Rectangle.hdl"
7 : #include "com/sun/star/awt/WindowDescriptor.hdl"
8 : namespace com { namespace sun { namespace star { namespace awt { class XDevice; } } } }
9 : namespace com { namespace sun { namespace star { namespace awt { class XRegion; } } } }
10 : namespace com { namespace sun { namespace star { namespace awt { class XWindowPeer; } } } }
11 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
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 "com/sun/star/uno/Sequence.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 awt {
22 :
23 17745 : class SAL_NO_VTABLE XToolkit : public css::uno::XInterface
24 : {
25 : public:
26 :
27 : // Methods
28 : virtual ::com::sun::star::uno::Reference< css::awt::XWindowPeer > SAL_CALL getDesktopWindow() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual css::awt::Rectangle SAL_CALL getWorkArea() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::com::sun::star::uno::Reference< css::awt::XWindowPeer > SAL_CALL createWindow( const css::awt::WindowDescriptor& Descriptor ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< css::awt::XWindowPeer > > SAL_CALL createWindows( const ::com::sun::star::uno::Sequence< css::awt::WindowDescriptor >& Descriptors ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual ::com::sun::star::uno::Reference< css::awt::XDevice > SAL_CALL createScreenCompatibleDevice( ::sal_Int32 Width, ::sal_Int32 Height ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::com::sun::star::uno::Reference< css::awt::XRegion > SAL_CALL createRegion() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 :
35 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
36 :
37 : protected:
38 17736 : ~XToolkit() throw () {} // avoid warnings about virtual members and non-virtual dtor
39 : };
40 :
41 :
42 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::XToolkit const *);
43 : } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::XToolkit > *) SAL_THROW(());
46 :
47 : #endif
|