/src/libreoffice/include/editeng/fontitem.hxx
Line | Count | Source |
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_EDITENG_FONTITEM_HXX |
20 | | #define INCLUDED_EDITENG_FONTITEM_HXX |
21 | | |
22 | | #include <editeng/editengdllapi.h> |
23 | | #include <rtl/ustring.hxx> |
24 | | #include <tools/fontenum.hxx> |
25 | | #include <svl/poolitem.hxx> |
26 | | |
27 | | /** This item describes a Font. |
28 | | */ |
29 | | class EDITENG_DLLPUBLIC SvxFontItem final : public SfxPoolItem |
30 | | { |
31 | | OUString aFamilyName; |
32 | | OUString aStyleName; |
33 | | FontFamily eFamily; |
34 | | FontPitch ePitch; |
35 | | rtl_TextEncoding eTextEncoding; |
36 | | |
37 | | protected: |
38 | | virtual ItemInstanceManager* getItemInstanceManager() const override; |
39 | | |
40 | | public: |
41 | | static SfxPoolItem* CreateDefault(); |
42 | | |
43 | | DECLARE_ITEM_TYPE_FUNCTION(SvxFontItem) |
44 | | explicit SvxFontItem(const sal_uInt16 nId); |
45 | | SvxFontItem(const FontFamily eFam, OUString aFamilyName, |
46 | | OUString aStyleName, |
47 | | const FontPitch eFontPitch /*= PITCH_DONTKNOW*/, |
48 | | const rtl_TextEncoding eFontTextEncoding /*= RTL_TEXTENCODING_DONTKNOW*/, |
49 | | const sal_uInt16 nId); |
50 | | |
51 | | // "pure virtual Methods" from SfxPoolItem |
52 | | virtual bool operator==(const SfxPoolItem& rItem) const override; |
53 | | virtual size_t hashCode() const override; |
54 | | virtual SvxFontItem* Clone(SfxItemPool *pPool = nullptr) const override; |
55 | | virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override; |
56 | | virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override; |
57 | | |
58 | | virtual bool GetPresentation(SfxItemPresentation ePres, |
59 | | MapUnit eCoreMetric, MapUnit ePresMetric, |
60 | | OUString &rText, const IntlWrapper&) const override; |
61 | | |
62 | | // Access methods: |
63 | | void SetFamilyName(const OUString& rFamilyName); |
64 | | const OUString &GetFamilyName() const |
65 | 46.0M | { |
66 | 46.0M | return aFamilyName; |
67 | 46.0M | } |
68 | | |
69 | | void SetStyleName(const OUString &rStyleName); |
70 | | const OUString &GetStyleName() const |
71 | 12.5M | { |
72 | 12.5M | return aStyleName; |
73 | 12.5M | } |
74 | | |
75 | | void SetFamily(FontFamily _eFamily); |
76 | | FontFamily GetFamily() const |
77 | 45.9M | { |
78 | 45.9M | return eFamily; |
79 | 45.9M | } |
80 | | |
81 | | void SetPitch(FontPitch _ePitch); |
82 | | FontPitch GetPitch() const |
83 | 45.9M | { |
84 | 45.9M | return ePitch; |
85 | 45.9M | } |
86 | | |
87 | | void SetCharSet(rtl_TextEncoding _eEncoding); |
88 | | rtl_TextEncoding GetCharSet() const |
89 | 53.0M | { |
90 | 53.0M | return eTextEncoding; |
91 | 53.0M | } |
92 | | |
93 | | void dumpAsXml(xmlTextWriterPtr pWriter) const override; |
94 | | }; |
95 | | |
96 | | EDITENG_DLLPUBLIC void GetDefaultFonts(SvxFontItem& rLatin, |
97 | | SvxFontItem& rAsian, |
98 | | SvxFontItem& rComplex); |
99 | | |
100 | | #endif // INCLUDED_EDITENG_FONTITEM_HXX |
101 | | |
102 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |