Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART2_XDIAGRAM_HDL
2 : #define INCLUDED_COM_SUN_STAR_CHART2_XDIAGRAM_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/beans/PropertyValue.hdl"
7 : namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } }
8 : namespace com { namespace sun { namespace star { namespace chart2 { class XColorScheme; } } } }
9 : namespace com { namespace sun { namespace star { namespace chart2 { class XLegend; } } } }
10 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data { class XDataSource; } } } } }
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 "com/sun/star/uno/Sequence.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 chart2 {
20 :
21 131 : class SAL_NO_VTABLE XDiagram : public css::uno::XInterface
22 : {
23 : public:
24 :
25 : // Methods
26 : virtual ::com::sun::star::uno::Reference< css::beans::XPropertySet > SAL_CALL getWall() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::com::sun::star::uno::Reference< css::beans::XPropertySet > SAL_CALL getFloor() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::com::sun::star::uno::Reference< css::chart2::XLegend > SAL_CALL getLegend() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL setLegend( const ::com::sun::star::uno::Reference< css::chart2::XLegend >& xLegend ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::com::sun::star::uno::Reference< css::chart2::XColorScheme > SAL_CALL getDefaultColorScheme() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL setDefaultColorScheme( const ::com::sun::star::uno::Reference< css::chart2::XColorScheme >& xColorScheme ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setDiagramData( const ::com::sun::star::uno::Reference< css::chart2::data::XDataSource >& xDataSource, const ::com::sun::star::uno::Sequence< css::beans::PropertyValue >& aArguments ) /* 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 131 : ~XDiagram() 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::chart2::XDiagram const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::chart2::XDiagram > *) SAL_THROW(());
45 :
46 : #endif
|