Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART2_SCALEDATA_HDL
2 : #define INCLUDED_COM_SUN_STAR_CHART2_SCALEDATA_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/chart/TimeIncrement.hdl"
7 : #include "com/sun/star/chart2/AxisOrientation.hdl"
8 : #include "com/sun/star/chart2/IncrementData.hdl"
9 : namespace com { namespace sun { namespace star { namespace chart2 { class XScaling; } } } }
10 : namespace com { namespace sun { namespace star { namespace chart2 { namespace data { class XLabeledDataSequence; } } } } }
11 : #include "com/sun/star/uno/Any.h"
12 : #include "com/sun/star/uno/Reference.h"
13 : #include "cppu/macros.hxx"
14 : #include "sal/types.h"
15 :
16 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
17 :
18 : namespace com { namespace sun { namespace star { namespace chart2 {
19 :
20 : #ifdef SAL_W32
21 : # pragma pack(push, 8)
22 : #endif
23 :
24 34959 : struct ScaleData {
25 : inline ScaleData() SAL_THROW(());
26 :
27 : inline ScaleData(const ::com::sun::star::uno::Any& Minimum_, const ::com::sun::star::uno::Any& Maximum_, const ::com::sun::star::uno::Any& Origin_, const css::chart2::AxisOrientation& Orientation_, const ::com::sun::star::uno::Reference< css::chart2::XScaling >& Scaling_, const ::com::sun::star::uno::Reference< css::chart2::data::XLabeledDataSequence >& Categories_, const ::sal_Int32& AxisType_, const ::sal_Bool& AutoDateAxis_, const ::sal_Bool& ShiftedCategoryPosition_, const css::chart2::IncrementData& IncrementData_, const css::chart::TimeIncrement& TimeIncrement_) SAL_THROW(());
28 :
29 : ::com::sun::star::uno::Any Minimum;
30 : ::com::sun::star::uno::Any Maximum;
31 : ::com::sun::star::uno::Any Origin;
32 : css::chart2::AxisOrientation Orientation;
33 : ::com::sun::star::uno::Reference< css::chart2::XScaling > Scaling;
34 : ::com::sun::star::uno::Reference< css::chart2::data::XLabeledDataSequence > Categories;
35 : ::sal_Int32 AxisType;
36 : ::sal_Bool AutoDateAxis;
37 : ::sal_Bool ShiftedCategoryPosition;
38 : css::chart2::IncrementData IncrementData;
39 : css::chart::TimeIncrement TimeIncrement;
40 : };
41 :
42 : #ifdef SAL_W32
43 : # pragma pack(pop)
44 : #endif
45 :
46 :
47 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::chart2::ScaleData const *);
48 : } } } }
49 :
50 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::chart2::ScaleData *) SAL_THROW(());
51 :
52 : #endif
|