Line data Source code
1 : #ifndef INCLUDED_OOO_VBA_XFONTBASE_HDL
2 : #define INCLUDED_OOO_VBA_XFONTBASE_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/RuntimeException.hdl"
7 : #include "ooo/vba/XHelperInterface.hdl"
8 : #include "com/sun/star/uno/Any.h"
9 : #include "com/sun/star/uno/Reference.h"
10 : #include "cppu/macros.hxx"
11 :
12 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
13 :
14 : namespace ooo { namespace vba {
15 :
16 0 : class SAL_NO_VTABLE XFontBase : public ::ooo::vba::XHelperInterface
17 : {
18 : public:
19 :
20 : // Attributes
21 : virtual ::com::sun::star::uno::Any SAL_CALL getSize() = 0;
22 : virtual void SAL_CALL setSize( const ::com::sun::star::uno::Any& _size ) = 0;
23 : virtual ::com::sun::star::uno::Any SAL_CALL getColorIndex() = 0;
24 : virtual void SAL_CALL setColorIndex( const ::com::sun::star::uno::Any& _colorindex ) = 0;
25 : virtual ::com::sun::star::uno::Any SAL_CALL getColor() = 0;
26 : virtual void SAL_CALL setColor( const ::com::sun::star::uno::Any& _color ) = 0;
27 : virtual ::com::sun::star::uno::Any SAL_CALL getBold() = 0;
28 : virtual void SAL_CALL setBold( const ::com::sun::star::uno::Any& _bold ) = 0;
29 : virtual ::com::sun::star::uno::Any SAL_CALL getUnderline() = 0;
30 : virtual void SAL_CALL setUnderline( const ::com::sun::star::uno::Any& _underline ) = 0;
31 : virtual ::com::sun::star::uno::Any SAL_CALL getStrikethrough() = 0;
32 : virtual void SAL_CALL setStrikethrough( const ::com::sun::star::uno::Any& _strikethrough ) = 0;
33 : virtual ::com::sun::star::uno::Any SAL_CALL getShadow() = 0;
34 : virtual void SAL_CALL setShadow( const ::com::sun::star::uno::Any& _shadow ) = 0;
35 : virtual ::com::sun::star::uno::Any SAL_CALL getItalic() = 0;
36 : virtual void SAL_CALL setItalic( const ::com::sun::star::uno::Any& _italic ) = 0;
37 : virtual ::com::sun::star::uno::Any SAL_CALL getSubscript() = 0;
38 : virtual void SAL_CALL setSubscript( const ::com::sun::star::uno::Any& _subscript ) = 0;
39 : virtual ::com::sun::star::uno::Any SAL_CALL getSuperscript() = 0;
40 : virtual void SAL_CALL setSuperscript( const ::com::sun::star::uno::Any& _superscript ) = 0;
41 : virtual ::com::sun::star::uno::Any SAL_CALL getName() = 0;
42 : virtual void SAL_CALL setName( const ::com::sun::star::uno::Any& _name ) = 0;
43 :
44 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
45 :
46 : protected:
47 0 : ~XFontBase() throw () {} // avoid warnings about virtual members and non-virtual dtor
48 : };
49 :
50 :
51 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER ::ooo::vba::XFontBase const *);
52 : } }
53 :
54 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< ::ooo::vba::XFontBase > *) SAL_THROW(());
55 :
56 : #endif
|