LibreOffice Module editeng (master) 1
colritem.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_COLRITEM_HXX
20#define INCLUDED_EDITENG_COLRITEM_HXX
21
22#include <svl/poolitem.hxx>
23#include <tools/color.hxx>
26
27#define VERSION_USEAUTOCOLOR 1
28
32{
33private:
36
37public:
38 static SfxPoolItem* CreateDefault();
39
40 explicit SvxColorItem(const sal_uInt16 nId);
41 SvxColorItem(const Color& aColor, const sal_uInt16 nId);
42 SvxColorItem(const Color& aColor, model::ComplexColor const& rComplexColor, const sal_uInt16 nId);
43 virtual ~SvxColorItem() override;
44
45 // "pure virtual Methods" from SfxPoolItem
46 virtual bool operator==(const SfxPoolItem& rPoolItem) const override;
47 virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
48 virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
49
50 virtual bool GetPresentation(SfxItemPresentation ePres,
51 MapUnit eCoreMetric, MapUnit ePresMetric,
52 OUString &rText, const IntlWrapper& rIntlWrapper) const override;
53
54 virtual SvxColorItem* Clone(SfxItemPool* pPool = nullptr) const override;
55 SvxColorItem(SvxColorItem const &) = default; // SfxPoolItem copy function dichotomy
56
57 const Color& GetValue() const
58 {
59 return mColor;
60 }
61 void SetValue(const Color& rNewColor)
62 {
63 mColor = rNewColor;
64 }
65
66 const Color& getColor() const
67 {
68 return mColor;
69 }
70 void setColor(const Color& rNewColor)
71 {
72 mColor = rNewColor;
73 }
74
75 model::ComplexColor const& getComplexColor() const { return maComplexColor; }
76 void setComplexColor(model::ComplexColor const& rComplexColor) { maComplexColor = rComplexColor; }
77
78 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
79};
80
81#endif
82
83/* 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 SfxPoolItem * Clone(SfxItemPool *pPool=nullptr) const=0
SvxColorItem item describes a color.
Definition: colritem.hxx:32
const Color & GetValue() const
Definition: colritem.hxx:57
void SetValue(const Color &rNewColor)
Definition: colritem.hxx:61
const Color & getColor() const
Definition: colritem.hxx:66
void setComplexColor(model::ComplexColor const &rComplexColor)
Definition: colritem.hxx:76
Color mColor
Definition: colritem.hxx:34
SvxColorItem(SvxColorItem const &)=default
model::ComplexColor const & getComplexColor() const
Definition: colritem.hxx:75
void setColor(const Color &rNewColor)
Definition: colritem.hxx:70
model::ComplexColor maComplexColor
Definition: colritem.hxx:35
#define EDITENG_DLLPUBLIC
Definition: editengdllapi.h:28
struct _xmlTextWriter * xmlTextWriterPtr
MapUnit
SfxItemPresentation
unsigned char sal_uInt8