Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART2_SYMBOL_HDL
2 : #define INCLUDED_COM_SUN_STAR_CHART2_SYMBOL_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/awt/Size.hdl"
7 : #include "com/sun/star/chart2/SymbolStyle.hdl"
8 : #include "com/sun/star/drawing/PolyPolygonBezierCoords.hdl"
9 : namespace com { namespace sun { namespace star { namespace graphic { class XGraphic; } } } }
10 : #include "com/sun/star/uno/Reference.h"
11 : #include "cppu/macros.hxx"
12 : #include "sal/types.h"
13 :
14 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
15 :
16 : namespace com { namespace sun { namespace star { namespace chart2 {
17 :
18 : #ifdef SAL_W32
19 : # pragma pack(push, 8)
20 : #endif
21 :
22 817 : struct Symbol {
23 : inline Symbol() SAL_THROW(());
24 :
25 : inline Symbol(const css::chart2::SymbolStyle& Style_, const css::drawing::PolyPolygonBezierCoords& PolygonCoords_, const ::sal_Int32& StandardSymbol_, const ::com::sun::star::uno::Reference< css::graphic::XGraphic >& Graphic_, const css::awt::Size& Size_, const ::sal_Int32& BorderColor_, const ::sal_Int32& FillColor_) SAL_THROW(());
26 :
27 : css::chart2::SymbolStyle Style;
28 : css::drawing::PolyPolygonBezierCoords PolygonCoords;
29 : ::sal_Int32 StandardSymbol;
30 : ::com::sun::star::uno::Reference< css::graphic::XGraphic > Graphic;
31 : css::awt::Size Size;
32 : ::sal_Int32 BorderColor;
33 : ::sal_Int32 FillColor;
34 : };
35 :
36 : #ifdef SAL_W32
37 : # pragma pack(pop)
38 : #endif
39 :
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::chart2::Symbol const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::chart2::Symbol *) SAL_THROW(());
45 :
46 : #endif
|