Bump version to 6.4-15
[LibreOffice.git] / include / svl / eitem.hxx
blobaaef90e75964f06bd90b34b84fe65a5cc27a50a3
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 .
20 #ifndef INCLUDED_SVL_EITEM_HXX
21 #define INCLUDED_SVL_EITEM_HXX
23 #include <svl/svldllapi.h>
24 #include <svl/cenumitm.hxx>
27 template<typename EnumT>
28 class SAL_DLLPUBLIC_RTTI SfxEnumItem : public SfxEnumItemInterface
30 EnumT m_nValue;
32 protected:
33 explicit SfxEnumItem(sal_uInt16 const nWhich, EnumT const nValue)
34 : SfxEnumItemInterface(nWhich)
35 , m_nValue(nValue)
36 { }
38 SfxEnumItem(const SfxEnumItem &) = default;
40 public:
42 EnumT GetValue() const { return m_nValue; }
44 void SetValue(EnumT nTheValue)
46 assert(GetRefCount() == 0 && "SfxEnumItem::SetValue(): Pooled item");
47 m_nValue = nTheValue;
50 virtual sal_uInt16 GetEnumValue() const override
52 return static_cast<sal_uInt16>(GetValue());
55 virtual void SetEnumValue(sal_uInt16 nTheValue) override
57 SetValue(static_cast<EnumT>(nTheValue));
60 virtual bool operator==(SfxPoolItem const & other) const override
62 return SfxEnumItemInterface::operator==(other) &&
63 m_nValue == static_cast<const SfxEnumItem<EnumT> &>(other).m_nValue;
67 class SVL_DLLPUBLIC SfxBoolItem
68 : public SfxPoolItem
70 bool m_bValue;
72 public:
73 static SfxPoolItem* CreateDefault();
75 explicit SfxBoolItem(sal_uInt16 const nWhich = 0, bool const bValue = false)
76 : SfxPoolItem(nWhich)
77 , m_bValue(bValue)
78 { }
80 bool GetValue() const { return m_bValue; }
82 void SetValue(bool const bTheValue) { m_bValue = bTheValue; }
84 // SfxPoolItem
85 virtual bool operator ==(const SfxPoolItem & rItem) const override;
87 virtual bool GetPresentation(SfxItemPresentation,
88 MapUnit, MapUnit,
89 OUString & rText,
90 const IntlWrapper&)
91 const override;
93 virtual void dumpAsXml(xmlTextWriterPtr pWriter) const override;
95 virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 = 0) const override;
97 virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8) override;
100 virtual SfxPoolItem * Clone(SfxItemPool * = nullptr) const override;
102 virtual OUString GetValueTextByVal(bool bTheValue) const;
105 #endif // INCLUDED_SVL_EITEM_HXX
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */