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