1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_EDITENG_FONTITEM_HXX
20 #define INCLUDED_EDITENG_FONTITEM_HXX
22 #include <editeng/editengdllapi.h>
23 #include <rtl/ustring.hxx>
24 #include <tools/fontenum.hxx>
25 #include <svl/poolitem.hxx>
27 /** This item describes a Font.
29 class EDITENG_DLLPUBLIC SvxFontItem final
: public SfxPoolItem
35 rtl_TextEncoding eTextEncoding
;
38 static SfxPoolItem
* CreateDefault();
40 explicit SvxFontItem(const sal_uInt16 nId
);
41 SvxFontItem(const FontFamily eFam
, OUString aFamilyName
,
43 const FontPitch eFontPitch
/*= PITCH_DONTKNOW*/,
44 const rtl_TextEncoding eFontTextEncoding
/*= RTL_TEXTENCODING_DONTKNOW*/,
45 const sal_uInt16 nId
);
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
;
54 virtual bool GetPresentation(SfxItemPresentation ePres
,
55 MapUnit eCoreMetric
, MapUnit ePresMetric
,
56 OUString
&rText
, const IntlWrapper
&) const override
;
59 void SetFamilyName(const OUString
& rFamilyName
)
61 aFamilyName
= rFamilyName
;
63 const OUString
&GetFamilyName() const
68 void SetStyleName(const OUString
&rStyleName
)
70 aStyleName
= rStyleName
;
72 const OUString
&GetStyleName() const
77 void SetFamily(FontFamily _eFamily
)
81 FontFamily
GetFamily() const
86 void SetPitch(FontPitch _ePitch
)
90 FontPitch
GetPitch() const
95 void SetCharSet(rtl_TextEncoding _eEncoding
)
97 eTextEncoding
= _eEncoding
;
99 rtl_TextEncoding
GetCharSet() const
101 return eTextEncoding
;
104 void dumpAsXml(xmlTextWriterPtr pWriter
) const override
;
107 EDITENG_DLLPUBLIC
void GetDefaultFonts(SvxFontItem
& rLatin
,
109 SvxFontItem
& rComplex
);
111 #endif // INCLUDED_EDITENG_FONTITEM_HXX
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */