Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_XDATATRANSFERPROVIDERACCESS_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_XDATATRANSFERPROVIDERACCESS_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { class XWindow; } } } }
7 : namespace com { namespace sun { namespace star { namespace datatransfer { namespace clipboard { class XClipboard; } } } } }
8 : namespace com { namespace sun { namespace star { namespace datatransfer { namespace dnd { class XDragGestureRecognizer; } } } } }
9 : namespace com { namespace sun { namespace star { namespace datatransfer { namespace dnd { class XDragSource; } } } } }
10 : namespace com { namespace sun { namespace star { namespace datatransfer { namespace dnd { class XDropTarget; } } } } }
11 : #include "com/sun/star/uno/RuntimeException.hdl"
12 : #include "com/sun/star/uno/XInterface.hdl"
13 : #include "com/sun/star/uno/Reference.h"
14 : #include "cppu/macros.hxx"
15 : #include "rtl/ustring.hxx"
16 :
17 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
18 :
19 : namespace com { namespace sun { namespace star { namespace awt {
20 :
21 17745 : class SAL_NO_VTABLE XDataTransferProviderAccess : public css::uno::XInterface
22 : {
23 : public:
24 :
25 : // Methods
26 : virtual ::com::sun::star::uno::Reference< css::datatransfer::dnd::XDragGestureRecognizer > SAL_CALL getDragGestureRecognizer( const ::com::sun::star::uno::Reference< css::awt::XWindow >& window ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::com::sun::star::uno::Reference< css::datatransfer::dnd::XDragSource > SAL_CALL getDragSource( const ::com::sun::star::uno::Reference< css::awt::XWindow >& window ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::com::sun::star::uno::Reference< css::datatransfer::dnd::XDropTarget > SAL_CALL getDropTarget( const ::com::sun::star::uno::Reference< css::awt::XWindow >& window ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XClipboard > SAL_CALL getClipboard( const ::rtl::OUString& clipboardName ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 :
31 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
32 :
33 : protected:
34 17736 : ~XDataTransferProviderAccess() throw () {} // avoid warnings about virtual members and non-virtual dtor
35 : };
36 :
37 :
38 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::XDataTransferProviderAccess const *);
39 : } } } }
40 :
41 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::XDataTransferProviderAccess > *) SAL_THROW(());
42 :
43 : #endif
|