build fix
[LibreOffice.git] / include / vbahelper / vbafontbase.hxx
blob3366c952e07acbe12c0471c854e84414d9059ba2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 INCLUDED_VBAHELPER_VBAFONTBASE_HXX
20 #define INCLUDED_VBAHELPER_VBAFONTBASE_HXX
22 #include <exception>
24 #include <com/sun/star/uno/Any.hxx>
25 #include <com/sun/star/uno/Reference.hxx>
26 #include <com/sun/star/uno/RuntimeException.hpp>
27 #include <ooo/vba/XFontBase.hpp>
28 #include <sal/types.h>
29 #include <vbahelper/vbadllapi.h>
30 #include <vbahelper/vbahelper.hxx>
31 #include <vbahelper/vbahelperinterface.hxx>
33 namespace com { namespace sun { namespace star {
34 namespace beans { class XPropertySet; }
35 namespace container { class XIndexAccess; }
36 namespace uno { class XComponentContext; }
37 } } }
39 namespace ooo { namespace vba {
40 class XHelperInterface;
41 } }
43 typedef InheritedHelperInterfaceWeakImpl< ov::XFontBase > VbaFontBase_BASE;
45 class VBAHELPER_DLLPUBLIC VbaFontBase : public VbaFontBase_BASE
47 protected:
48 css::uno::Reference< css::beans::XPropertySet > mxFont;
49 css::uno::Reference< css::container::XIndexAccess > mxPalette;
50 bool mbFormControl;
52 public:
53 // use local constants there is no need to expose these constants
54 // externally. Looking at the Format->Character dialog it seem that
55 // these may in fact even be calculated. Leave hardcoded for now
56 // #FIXEME #TBD investigate the code for dialog mentioned above
58 // The font baseline is not specified.
59 static const short NORMAL = 0;
61 // specifies a superscripted.
62 static const short SUPERSCRIPT = 33;
64 // specifies a subscripted.
65 static const short SUBSCRIPT = -33;
67 // specifies a hight of superscripted font
68 static const sal_Int8 SUPERSCRIPTHEIGHT = 58;
70 // specifies a hight of subscripted font
71 static const sal_Int8 SUBSCRIPTHEIGHT = 58;
73 // specifies a hight of normal font
74 static const short NORMALHEIGHT = 100;
76 VbaFontBase(
77 const css::uno::Reference< ov::XHelperInterface >& xParent,
78 const css::uno::Reference< css::uno::XComponentContext >& xContext,
79 const css::uno::Reference< css::container::XIndexAccess >& xPalette,
80 const css::uno::Reference< css::beans::XPropertySet >& xPropertySet,
81 bool bFormControl = false ) throw ( css::uno::RuntimeException );
82 virtual ~VbaFontBase() override;// {}
84 // Attributes
85 virtual css::uno::Any SAL_CALL getSize() throw (css::uno::RuntimeException, std::exception) override;
86 virtual void SAL_CALL setSize( const css::uno::Any& _size ) throw (css::uno::RuntimeException, std::exception) override;
87 virtual css::uno::Any SAL_CALL getColorIndex() throw (css::uno::RuntimeException, std::exception) override;
88 virtual void SAL_CALL setColorIndex( const css::uno::Any& _colorindex ) throw (css::uno::RuntimeException, std::exception) override;
89 virtual css::uno::Any SAL_CALL getBold() throw (css::uno::RuntimeException, std::exception) override;
90 virtual void SAL_CALL setBold( const css::uno::Any& _bold ) throw (css::uno::RuntimeException, std::exception) override;
91 virtual css::uno::Any SAL_CALL getUnderline() throw (css::uno::RuntimeException, std::exception) override = 0;
92 virtual void SAL_CALL setUnderline( const css::uno::Any& _underline ) throw (css::uno::RuntimeException, std::exception) override = 0;
93 virtual css::uno::Any SAL_CALL getStrikethrough() throw (css::uno::RuntimeException, std::exception) override;
94 virtual void SAL_CALL setStrikethrough( const css::uno::Any& _strikethrough ) throw (css::uno::RuntimeException, std::exception) override;
95 virtual css::uno::Any SAL_CALL getShadow() throw (css::uno::RuntimeException, std::exception) override;
96 virtual void SAL_CALL setShadow( const css::uno::Any& _shadow ) throw (css::uno::RuntimeException, std::exception) override;
97 virtual css::uno::Any SAL_CALL getItalic() throw (css::uno::RuntimeException, std::exception) override;
98 virtual void SAL_CALL setItalic( const css::uno::Any& _italic ) throw (css::uno::RuntimeException, std::exception) override;
99 virtual css::uno::Any SAL_CALL getSubscript() throw (css::uno::RuntimeException, std::exception) override;
100 virtual void SAL_CALL setSubscript( const css::uno::Any& _subscript ) throw (css::uno::RuntimeException, std::exception) override;
101 virtual css::uno::Any SAL_CALL getSuperscript() throw (css::uno::RuntimeException, std::exception) override;
102 virtual void SAL_CALL setSuperscript( const css::uno::Any& _superscript ) throw (css::uno::RuntimeException, std::exception) override;
103 virtual css::uno::Any SAL_CALL getName() throw (css::uno::RuntimeException, std::exception) override;
104 virtual void SAL_CALL setName( const css::uno::Any& _name ) throw (css::uno::RuntimeException, std::exception) override;
105 virtual css::uno::Any SAL_CALL getColor() throw (css::uno::RuntimeException, std::exception) override ;
106 virtual void SAL_CALL setColor( const css::uno::Any& _color ) throw (css::uno::RuntimeException, std::exception) override ;
109 #endif
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */