LibreOffice Module vcl (master) 1
include/vcl/font.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
20#ifndef INCLUDED_VCL_FONT_HXX
21#define INCLUDED_VCL_FONT_HXX
22
23#include <rtl/ustring.hxx>
24#include <sal/types.h>
25#include <vcl/dllapi.h>
26#include <tools/color.hxx>
27#include <tools/fontenum.hxx>
28#include <tools/long.hxx>
29#include <tools/degree.hxx>
30#include <i18nlangtag/lang.h>
31#include <vcl/fntstyle.hxx>
32#include <o3tl/cow_wrapper.hxx>
33
34class Size;
35class LanguageTag;
36class SvStream;
37
38class ImplFont;
39class FontAttributes;
40namespace vcl { class Font; }
41// need to first declare these outside the vcl namespace, or the friend declarations won't work right
44
45namespace vcl {
46
48{
49public:
50 explicit Font();
51 Font( const Font& ); // TODO make me explicit
52 Font( Font&& ) noexcept;
53 explicit Font( const OUString& rFamilyName, const Size& );
54 explicit Font( const OUString& rFamilyName, const OUString& rStyleName, const Size& );
55 explicit Font( FontFamily eFamily, const Size& );
56 virtual ~Font();
57
58 const OUString& GetFamilyName() const;
59 FontFamily GetFamilyType();
60 FontFamily GetFamilyType() const;
61 const OUString& GetStyleName() const;
62
63 FontWeight GetWeight();
64 FontWeight GetWeight() const;
65 FontItalic GetItalic();
66 FontItalic GetItalic() const;
67 FontPitch GetPitch();
68 FontPitch GetPitch() const;
69 FontWidth GetWidthType();
70 FontWidth GetWidthType() const;
71 TextAlign GetAlignment() const;
72 rtl_TextEncoding GetCharSet() const;
73 FontEmphasisMark GetEmphasisMarkStyle() const;
74
75 void SetFamilyName( const OUString& rFamilyName );
76 void SetStyleName( const OUString& rStyleName );
77 void SetFamily( FontFamily );
78
79 void SetPitch( FontPitch ePitch );
80 void SetItalic( FontItalic );
81 void SetWeight( FontWeight );
82 void SetWidthType( FontWidth );
83 void SetAlignment( TextAlign );
84 void SetCharSet( rtl_TextEncoding );
85
86 // Device dependent functions
87 int GetQuality() const;
88
89 void SetQuality(int);
90 void IncreaseQualityBy(int);
91 void DecreaseQualityBy(int);
92
93 // setting the color on the font is obsolete, the only remaining
94 // valid use is for keeping backward compatibility with old MetaFiles
95 const Color& GetColor() const;
96 const Color& GetFillColor() const;
97
98 bool IsTransparent() const;
99
100 void SetColor( const Color& );
101 void SetFillColor( const Color& );
102
103 void SetTransparent( bool bTransparent );
104
105 void SetFontSize( const Size& );
106 const Size& GetFontSize() const;
107 void SetFontHeight( tools::Long nHeight );
109 void SetAverageFontWidth( tools::Long nWidth );
110 tools::Long GetAverageFontWidth() const;
111
112 // tdf#127471 for corrections on EMF/WMF we need the AvgFontWidth in Windows-specific notation
113 tools::Long GetOrCalculateAverageFontWidth() const;
114
115 // Prefer LanguageTag over LanguageType
116 void SetLanguageTag( const LanguageTag & );
117 const LanguageTag& GetLanguageTag() const;
118 void SetCJKContextLanguageTag( const LanguageTag& );
119 const LanguageTag& GetCJKContextLanguageTag() const;
122 void SetCJKContextLanguage( LanguageType );
123 LanguageType GetCJKContextLanguage() const;
124
125 void SetOrientation( Degree10 nLineOrientation );
126 Degree10 GetOrientation() const;
127 void SetVertical( bool bVertical );
128 bool IsVertical() const;
129 void SetKerning( FontKerning nKerning );
130 FontKerning GetKerning() const;
131 bool IsKerning() const;
132 void SetFixKerning(const short nSpacing);
133 short GetFixKerning() const;
134 bool IsFixKerning() const;
135
136 void SetOutline( bool bOutline );
137 bool IsOutline() const;
138 void SetShadow( bool bShadow );
139 bool IsShadow() const;
140 void SetRelief( FontRelief );
141 FontRelief GetRelief() const;
142 void SetUnderline( FontLineStyle );
143 FontLineStyle GetUnderline() const;
144 void SetOverline( FontLineStyle );
145 FontLineStyle GetOverline() const;
146 void SetStrikeout( FontStrikeout );
147 FontStrikeout GetStrikeout() const;
148 void SetEmphasisMark( FontEmphasisMark );
149 FontEmphasisMark GetEmphasisMark() const;
150 void SetWordLineMode( bool bWordLine );
151 bool IsWordLineMode() const;
152
153 void Merge( const Font& rFont );
154 void GetFontAttributes( FontAttributes& rAttrs ) const;
155
156 Font& operator=( const Font& );
157 Font& operator=( Font&& ) noexcept;
158 bool operator==( const Font& ) const;
159 bool operator!=( const Font& rFont ) const
160 { return !(Font::operator==( rFont )); }
161 bool IsSameInstance( const Font& ) const;
162 bool EqualIgnoreColor( const Font& ) const;
163
164 // Compute value usable as hash.
165 size_t GetHashValueIgnoreColor() const;
166
168 friend VCL_DLLPUBLIC SvStream& ::WriteFont( SvStream& rOStm, const vcl::Font& );
169
170 static Font identifyFont( const void* pBuffer, sal_uInt32 nLen );
171
173
174 inline bool IsUnderlineAbove() const;
175
176private:
178};
179
180inline bool Font::IsUnderlineAbove() const
181{
182 if (!IsVertical())
183 return false;
184 // the underline is right for Japanese only
185 return (LANGUAGE_JAPANESE == GetLanguage()) ||
187}
188
189}
190
191#endif // _VCL_FONT_HXX
192
193/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
o3tl::cow_wrapper< ImplFont > ImplType
bool operator!=(const Font &rFont) const
bool IsUnderlineAbove() const
LanguageType GetLanguage() const
Definition: font/font.cxx:917
ImplType mpImplFont
bool IsVertical() const
Definition: font/font.cxx:921
LanguageType GetCJKContextLanguage() const
Definition: font/font.cxx:918
bool operator==(const Font &) const
Definition: font/font.cxx:343
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
FontRelief
Definition: fntstyle.hxx:26
FontKerning
Definition: fntstyle.hxx:29
FontLineStyle
FontStrikeout
FontPitch
FontItalic
FontEmphasisMark
FontWidth
FontFamily
VCL_DLLPUBLIC SvStream & ReadFont(SvStream &rIStm, vcl::Font &)
Definition: font/font.cxx:591
VCL_DLLPUBLIC SvStream & WriteFont(SvStream &rOStm, const vcl::Font &)
Definition: font/font.cxx:649
#define LANGUAGE_JAPANESE
size_t GetFontHeight()
sal_uInt16 GetFontSize(sal_uInt16 nPos)
void SetLanguage(SwWrtShell &rWrtSh, std::u16string_view rLangText, bool bIsForSelection, SfxItemSet &rCoreSet)
LanguageType GetLanguage(SfxItemSet const &aSet, sal_uInt16 nLangWhichId)
TextAlign
FontWeight
long Long
Color GetFillColor(Color const &rColor, DrawModeFlags nDrawMode, StyleSettings const &rStyleSettings)
Definition: drawmode.cxx:67
#define SAL_WARN_UNUSED
bool operator==(const ItalicMatrix &a, const ItalicMatrix &b)
Definition: vclenum.hxx:175