Avoid potential negative array index access to cached text.
[LibreOffice.git] / include / editeng / fontitem.hxx
blob7cab5f462e4e891a2983a42baf1c668ed39ff4c8
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 .
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
31 OUString aFamilyName;
32 OUString aStyleName;
33 FontFamily eFamily;
34 FontPitch ePitch;
35 rtl_TextEncoding eTextEncoding;
37 public:
38 static SfxPoolItem* CreateDefault();
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);
47 // "pure virtual Methods" from SfxPoolItem
48 virtual bool operator==(const SfxPoolItem& rItem) const override;
49 virtual SvxFontItem* Clone(SfxItemPool *pPool = nullptr) const override;
50 virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
51 virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
53 virtual bool GetPresentation(SfxItemPresentation ePres,
54 MapUnit eCoreMetric, MapUnit ePresMetric,
55 OUString &rText, const IntlWrapper&) const override;
57 // Access methods:
58 void SetFamilyName(const OUString& rFamilyName)
60 aFamilyName = rFamilyName;
62 const OUString &GetFamilyName() const
64 return aFamilyName;
67 void SetStyleName(const OUString &rStyleName)
69 aStyleName = rStyleName;
71 const OUString &GetStyleName() const
73 return aStyleName;
76 void SetFamily(FontFamily _eFamily)
78 eFamily = _eFamily;
80 FontFamily GetFamily() const
82 return eFamily;
85 void SetPitch(FontPitch _ePitch)
87 ePitch = _ePitch;
89 FontPitch GetPitch() const
91 return ePitch;
94 void SetCharSet(rtl_TextEncoding _eEncoding)
96 eTextEncoding = _eEncoding;
98 rtl_TextEncoding GetCharSet() const
100 return eTextEncoding;
103 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
106 EDITENG_DLLPUBLIC void GetDefaultFonts(SvxFontItem& rLatin,
107 SvxFontItem& rAsian,
108 SvxFontItem& rComplex);
110 #endif // INCLUDED_EDITENG_FONTITEM_HXX
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */