1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef VBAHELPER_FONTBASE_HXX
20 #define VBAHELPER_FONTBASE_HXX
22 #include <cppuhelper/implbase1.hxx>
24 #include <ooo/vba/XFontBase.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <vbahelper/vbahelperinterface.hxx>
28 // use local constants there is no need to expose these constants
29 // externally. Looking at the Format->Character dialog it seem that
30 // these may infact be even be calculated. Leave hardcoded for now
31 // #FIXEME #TBD investigate the code for dialog mentioned above
33 // The font baseline is not specified.
34 const short NORMAL
= 0;
36 // specifies a superscripted.
37 const short SUPERSCRIPT
= 33;
39 // specifies a subscripted.
40 const short SUBSCRIPT
= -33;
42 // specifies a hight of superscripted font
43 const sal_Int8 SUPERSCRIPTHEIGHT
= 58;
45 // specifies a hight of subscripted font
46 const sal_Int8 SUBSCRIPTHEIGHT
= 58;
48 // specifies a hight of normal font
49 const short NORMALHEIGHT
= 100;
51 typedef InheritedHelperInterfaceImpl1
< ov::XFontBase
> VbaFontBase_BASE
;
53 class VBAHELPER_DLLPUBLIC VbaFontBase
: public VbaFontBase_BASE
56 css::uno::Reference
< css::beans::XPropertySet
> mxFont
;
57 css::uno::Reference
< css::container::XIndexAccess
> mxPalette
;
62 const css::uno::Reference
< ov::XHelperInterface
>& xParent
,
63 const css::uno::Reference
< css::uno::XComponentContext
>& xContext
,
64 const css::uno::Reference
< css::container::XIndexAccess
>& xPalette
,
65 const css::uno::Reference
< css::beans::XPropertySet
>& xPropertySet
,
66 bool bFormControl
= false ) throw ( css::uno::RuntimeException
);
67 virtual ~VbaFontBase();// {}
70 virtual css::uno::Any SAL_CALL
getSize() throw (css::uno::RuntimeException
);
71 virtual void SAL_CALL
setSize( const css::uno::Any
& _size
) throw (css::uno::RuntimeException
);
72 virtual css::uno::Any SAL_CALL
getColorIndex() throw (css::uno::RuntimeException
);
73 virtual void SAL_CALL
setColorIndex( const css::uno::Any
& _colorindex
) throw (css::uno::RuntimeException
);
74 virtual css::uno::Any SAL_CALL
getBold() throw (css::uno::RuntimeException
);
75 virtual void SAL_CALL
setBold( const css::uno::Any
& _bold
) throw (css::uno::RuntimeException
);
76 virtual css::uno::Any SAL_CALL
getUnderline() throw (css::uno::RuntimeException
) = 0;
77 virtual void SAL_CALL
setUnderline( const css::uno::Any
& _underline
) throw (css::uno::RuntimeException
) = 0;
78 virtual css::uno::Any SAL_CALL
getStrikethrough() throw (css::uno::RuntimeException
);
79 virtual void SAL_CALL
setStrikethrough( const css::uno::Any
& _strikethrough
) throw (css::uno::RuntimeException
);
80 virtual css::uno::Any SAL_CALL
getShadow() throw (css::uno::RuntimeException
);
81 virtual void SAL_CALL
setShadow( const css::uno::Any
& _shadow
) throw (css::uno::RuntimeException
);
82 virtual css::uno::Any SAL_CALL
getItalic() throw (css::uno::RuntimeException
);
83 virtual void SAL_CALL
setItalic( const css::uno::Any
& _italic
) throw (css::uno::RuntimeException
);
84 virtual css::uno::Any SAL_CALL
getSubscript() throw (css::uno::RuntimeException
);
85 virtual void SAL_CALL
setSubscript( const css::uno::Any
& _subscript
) throw (css::uno::RuntimeException
);
86 virtual css::uno::Any SAL_CALL
getSuperscript() throw (css::uno::RuntimeException
);
87 virtual void SAL_CALL
setSuperscript( const css::uno::Any
& _superscript
) throw (css::uno::RuntimeException
);
88 virtual css::uno::Any SAL_CALL
getName() throw (css::uno::RuntimeException
);
89 virtual void SAL_CALL
setName( const css::uno::Any
& _name
) throw (css::uno::RuntimeException
);
90 virtual css::uno::Any SAL_CALL
getColor() throw (css::uno::RuntimeException
) ;
91 virtual void SAL_CALL
setColor( const css::uno::Any
& _color
) throw (css::uno::RuntimeException
) ;
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */