Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART_CHARTDATACHANGEEVENT_HDL
2 : #define INCLUDED_COM_SUN_STAR_CHART_CHARTDATACHANGEEVENT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/chart/ChartDataChangeType.hdl"
7 : #include "com/sun/star/lang/EventObject.hdl"
8 : #include "cppu/macros.hxx"
9 : #include "sal/types.h"
10 :
11 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
12 :
13 : namespace com { namespace sun { namespace star { namespace chart {
14 :
15 : #ifdef SAL_W32
16 : # pragma pack(push, 8)
17 : #endif
18 :
19 12 : struct ChartDataChangeEvent: public css::lang::EventObject {
20 : inline ChartDataChangeEvent() SAL_THROW(());
21 :
22 : inline ChartDataChangeEvent(const ::com::sun::star::uno::Reference< css::uno::XInterface >& Source_, const css::chart::ChartDataChangeType& Type_, const ::sal_Int16& StartColumn_, const ::sal_Int16& EndColumn_, const ::sal_Int16& StartRow_, const ::sal_Int16& EndRow_) SAL_THROW(());
23 :
24 : css::chart::ChartDataChangeType Type CPPU_GCC3_ALIGN(css::lang::EventObject);
25 : ::sal_Int16 StartColumn;
26 : ::sal_Int16 EndColumn;
27 : ::sal_Int16 StartRow;
28 : ::sal_Int16 EndRow;
29 : };
30 :
31 : #ifdef SAL_W32
32 : # pragma pack(pop)
33 : #endif
34 :
35 :
36 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::chart::ChartDataChangeEvent const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::chart::ChartDataChangeEvent *) SAL_THROW(());
40 :
41 : #endif
|