Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART2_DATA_XDATARECEIVER_HDL
2 : #define INCLUDED_COM_SUN_STAR_CHART2_DATA_XDATARECEIVER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/beans/PropertyValue.hdl"
7 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data { class XDataProvider; } } } } }
8 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data { class XDataSource; } } } } }
9 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data { class XRangeHighlighter; } } } } }
10 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
11 : #include "com/sun/star/uno/RuntimeException.hdl"
12 : #include "com/sun/star/uno/XInterface.hdl"
13 : namespace com { namespace sun { namespace star { namespace util { class XNumberFormatsSupplier; } } } }
14 : #include "com/sun/star/uno/Reference.h"
15 : #include "com/sun/star/uno/Sequence.h"
16 : #include "cppu/macros.hxx"
17 : #include "rtl/ustring.hxx"
18 :
19 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
20 :
21 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data {
22 :
23 89 : class SAL_NO_VTABLE XDataReceiver : public css::uno::XInterface
24 : {
25 : public:
26 :
27 : // Methods
28 : virtual void SAL_CALL attachDataProvider( const ::com::sun::star::uno::Reference< css::chart2::data::XDataProvider >& xProvider ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL setArguments( const ::com::sun::star::uno::Sequence< css::beans::PropertyValue >& aArguments ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getUsedRangeRepresentations() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Reference< css::chart2::data::XDataSource > SAL_CALL getUsedData() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL attachNumberFormatsSupplier( const ::com::sun::star::uno::Reference< css::util::XNumberFormatsSupplier >& xSupplier ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::com::sun::star::uno::Reference< css::chart2::data::XRangeHighlighter > SAL_CALL getRangeHighlighter() /* 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 89 : ~XDataReceiver() 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::chart2::data::XDataReceiver const *);
43 : } } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::chart2::data::XDataReceiver > *) SAL_THROW(());
46 :
47 : #endif
|