LibreOffice Module vbahelper (master) 1
vbafontbase.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef INCLUDED_VBAHELPER_VBAFONTBASE_HXX
20#define INCLUDED_VBAHELPER_VBAFONTBASE_HXX
21
22#include <exception>
23
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>
32
33namespace com::sun::star {
34 namespace beans { class XPropertySet; }
35 namespace container { class XIndexAccess; }
36 namespace uno { class XComponentContext; }
37}
38
39namespace ooo::vba {
40 class XHelperInterface;
41}
42
44
46{
47public:
48 enum Component { WORD, EXCEL };
49
50protected:
51 css::uno::Reference< css::beans::XPropertySet > mxFont;
52 css::uno::Reference< css::container::XIndexAccess > mxPalette;
55
56public:
57 // use local constants there is no need to expose these constants
58 // externally. Looking at the Format->Character dialog it seem that
59 // these may in fact even be calculated. Leave hardcoded for now
60 // #FIXME #TBD investigate the code for dialog mentioned above
61
62 // The font baseline is not specified.
63 static const short NORMAL = 0;
64
65 // specifies a superscripted.
66 static const short SUPERSCRIPT = 33;
67
68 // specifies a subscripted.
69 static const short SUBSCRIPT = -33;
70
71 // specifies a height of superscripted font
72 static const sal_Int8 SUPERSCRIPTHEIGHT = 58;
73
74 // specifies a height of subscripted font
75 static const sal_Int8 SUBSCRIPTHEIGHT = 58;
76
77 // specifies a height of normal font
78 static const short NORMALHEIGHT = 100;
79
82 const css::uno::Reference< ov::XHelperInterface >& xParent,
83 const css::uno::Reference< css::uno::XComponentContext >& xContext,
84 const css::uno::Reference< css::container::XIndexAccess >& xPalette,
85 const css::uno::Reference< css::beans::XPropertySet >& xPropertySet,
86 Component eWhich,
87 bool bFormControl = false);
88
89 virtual ~VbaFontBase() override;// {}
90
91 // Attributes
92 virtual css::uno::Any SAL_CALL getSize() override;
93 virtual void SAL_CALL setSize( const css::uno::Any& _size ) override;
94 virtual css::uno::Any SAL_CALL getColorIndex() override;
95 virtual void SAL_CALL setColorIndex( const css::uno::Any& _colorindex ) override;
96 virtual css::uno::Any SAL_CALL getBold() override;
97 virtual void SAL_CALL setBold( const css::uno::Any& _bold ) override;
98 virtual css::uno::Any SAL_CALL getUnderline() override = 0;
99 virtual void SAL_CALL setUnderline( const css::uno::Any& _underline ) override = 0;
100 virtual css::uno::Any SAL_CALL getStrikethrough() override;
101 virtual void SAL_CALL setStrikethrough( const css::uno::Any& _strikethrough ) override;
102 virtual css::uno::Any SAL_CALL getShadow() override;
103 virtual void SAL_CALL setShadow( const css::uno::Any& _shadow ) override;
104 virtual css::uno::Any SAL_CALL getItalic() override;
105 virtual void SAL_CALL setItalic( const css::uno::Any& _italic ) override;
106 virtual css::uno::Any SAL_CALL getSubscript() override;
107 virtual void SAL_CALL setSubscript( const css::uno::Any& _subscript ) override;
108 virtual css::uno::Any SAL_CALL getSuperscript() override;
109 virtual void SAL_CALL setSuperscript( const css::uno::Any& _superscript ) override;
110 virtual css::uno::Any SAL_CALL getName() override;
111 virtual void SAL_CALL setName( const css::uno::Any& _name ) override;
112 virtual css::uno::Any SAL_CALL getColor() override ;
113 virtual void SAL_CALL setColor( const css::uno::Any& _color ) override ;
114};
115
116#endif
117
118/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Any SAL_CALL getUnderline() override=0
Component meWhich
Definition: vbafontbase.hxx:53
virtual void SAL_CALL setUnderline(const css::uno::Any &_underline) override=0
css::uno::Reference< css::beans::XPropertySet > mxFont
Definition: vbafontbase.hxx:51
css::uno::Reference< css::container::XIndexAccess > mxPalette
Definition: vbafontbase.hxx:52
bool mbFormControl
Definition: vbafontbase.hxx:54
NORMAL
unsigned short WORD
class SAL_NO_VTABLE XPropertySet
signed char sal_Int8
#define VBAHELPER_DLLPUBLIC
Definition: vbadllapi.h:28
InheritedHelperInterfaceWeakImpl< ov::XFontBase > VbaFontBase_BASE
Definition: vbafontbase.hxx:43