Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / oox / inc / drawingml / textcharacterproperties.hxx
bloba034121e47d014b961e64c7e436dfebfe788df7f
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 .
20 #ifndef INCLUDED_OOX_DRAWINGML_TEXTCHARACTERPROPERTIES_HXX
21 #define INCLUDED_OOX_DRAWINGML_TEXTCHARACTERPROPERTIES_HXX
23 #include <oox/helper/helper.hxx>
24 #include <oox/helper/propertymap.hxx>
25 #include <oox/drawingml/color.hxx>
26 #include <drawingml/textfont.hxx>
28 #include <drawingml/fillproperties.hxx>
30 namespace oox { class PropertySet; }
32 namespace oox {
33 namespace drawingml {
36 struct TextCharacterProperties
38 PropertyMap maHyperlinkPropertyMap;
39 TextFont maLatinFont;
40 TextFont maLatinThemeFont;
41 TextFont maAsianFont;
42 TextFont maAsianThemeFont;
43 TextFont maComplexFont;
44 TextFont maComplexThemeFont;
45 TextFont maSymbolFont;
46 Color maUnderlineColor;
47 Color maHighlightColor;
48 OptValue< OUString > moLang;
49 OptValue< sal_Int32 > moHeight;
50 /// If a font scale has to be applied manually to moHeight.
51 OptValue< double > moFontScale;
52 OptValue< sal_Int32 > moSpacing;
53 OptValue< sal_Int32 > moUnderline;
54 OptValue< sal_Int32 > moBaseline;
55 OptValue< sal_Int32 > moStrikeout;
56 OptValue< sal_Int32 > moCaseMap;
57 OptValue< bool > moBold;
58 OptValue< bool > moItalic;
59 OptValue< bool > moUnderlineLineFollowText;
60 OptValue< bool > moUnderlineFillFollowText;
61 FillProperties maFillProperties;
63 std::vector<css::beans::PropertyValue> maTextEffectsProperties;
65 /** Overwrites all members that are explicitly set in rSourceProps. */
66 void assignUsed( const TextCharacterProperties& rSourceProps );
68 /** Returns the current character size. If possible the masterstyle should
69 have been applied before, otherwise the character size can be zero and
70 the default value is returned. */
71 float getCharHeightPoints( float fDefault ) const;
73 /** Writes the properties to the passed property map. */
74 void pushToPropMap(
75 PropertyMap& rPropMap,
76 const ::oox::core::XmlFilterBase& rFilter ) const;
78 /** Writes the properties to the passed property set. */
79 void pushToPropSet(
80 PropertySet& rPropSet,
81 const ::oox::core::XmlFilterBase& rFilter ) const;
85 } // namespace drawingml
86 } // namespace oox
88 #endif
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */