tdf#154285 Check upper bound of arguments in SbRtl_Minute function
[LibreOffice.git] / include / editeng / fontitem.hxx
blobc00208fee9bfa6796c06427a4a9cd8a4c799805a
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 protected:
38 virtual ItemInstanceManager* getItemInstanceManager() const override;
40 public:
41 static SfxPoolItem* CreateDefault();
43 explicit SvxFontItem(const sal_uInt16 nId);
44 SvxFontItem(const FontFamily eFam, OUString aFamilyName,
45 OUString aStyleName,
46 const FontPitch eFontPitch /*= PITCH_DONTKNOW*/,
47 const rtl_TextEncoding eFontTextEncoding /*= RTL_TEXTENCODING_DONTKNOW*/,
48 const sal_uInt16 nId);
50 // "pure virtual Methods" from SfxPoolItem
51 virtual bool operator==(const SfxPoolItem& rItem) const override;
52 virtual size_t hashCode() const override;
53 virtual SvxFontItem* Clone(SfxItemPool *pPool = nullptr) const override;
54 virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
55 virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
57 virtual bool GetPresentation(SfxItemPresentation ePres,
58 MapUnit eCoreMetric, MapUnit ePresMetric,
59 OUString &rText, const IntlWrapper&) const override;
61 // Access methods:
62 void SetFamilyName(const OUString& rFamilyName);
63 const OUString &GetFamilyName() const
65 return aFamilyName;
68 void SetStyleName(const OUString &rStyleName);
69 const OUString &GetStyleName() const
71 return aStyleName;
74 void SetFamily(FontFamily _eFamily);
75 FontFamily GetFamily() const
77 return eFamily;
80 void SetPitch(FontPitch _ePitch);
81 FontPitch GetPitch() const
83 return ePitch;
86 void SetCharSet(rtl_TextEncoding _eEncoding);
87 rtl_TextEncoding GetCharSet() const
89 return eTextEncoding;
92 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
95 EDITENG_DLLPUBLIC void GetDefaultFonts(SvxFontItem& rLatin,
96 SvxFontItem& rAsian,
97 SvxFontItem& rComplex);
99 #endif // INCLUDED_EDITENG_FONTITEM_HXX
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */