/src/libreoffice/include/editeng/colritem.hxx
Line | Count | Source (jump to first uncovered line) |
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> |
24 | | #include <editeng/editengdllapi.h> |
25 | | #include <docmodel/color/ComplexColor.hxx> |
26 | | |
27 | 0 | #define VERSION_USEAUTOCOLOR 1 |
28 | | |
29 | | /** SvxColorItem item describes a color. |
30 | | */ |
31 | | class EDITENG_DLLPUBLIC SvxColorItem final : public SfxPoolItem |
32 | | { |
33 | | private: |
34 | | Color mColor; |
35 | | model::ComplexColor maComplexColor; |
36 | | |
37 | | public: |
38 | | static SfxPoolItem* CreateDefault(); |
39 | | |
40 | | DECLARE_ITEM_TYPE_FUNCTION(SvxColorItem) |
41 | | explicit SvxColorItem(const sal_uInt16 nId); |
42 | | SvxColorItem(const Color& aColor, const sal_uInt16 nId); |
43 | | SvxColorItem(const Color& aColor, model::ComplexColor const& rComplexColor, const sal_uInt16 nId); |
44 | | virtual ~SvxColorItem() override; |
45 | | |
46 | | // "pure virtual Methods" from SfxPoolItem |
47 | | virtual bool operator==(const SfxPoolItem& rPoolItem) const override; |
48 | 12 | virtual bool supportsHashCode() const override { return true; } |
49 | | virtual size_t hashCode() 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; |
52 | | |
53 | | virtual bool GetPresentation(SfxItemPresentation ePres, |
54 | | MapUnit eCoreMetric, MapUnit ePresMetric, |
55 | | OUString &rText, const IntlWrapper& rIntlWrapper) const override; |
56 | | |
57 | | virtual SvxColorItem* Clone(SfxItemPool* pPool = nullptr) const override; |
58 | 3.33M | SvxColorItem(SvxColorItem const &) = default; // SfxPoolItem copy function dichotomy |
59 | | |
60 | | const Color& GetValue() const |
61 | 56.5M | { |
62 | 56.5M | return mColor; |
63 | 56.5M | } |
64 | | void SetValue(const Color& rNewColor) |
65 | 0 | { |
66 | 0 | ASSERT_CHANGE_REFCOUNTED_ITEM; |
67 | 0 | mColor = rNewColor; |
68 | 0 | } |
69 | | |
70 | | const Color& getColor() const |
71 | 0 | { |
72 | 0 | return mColor; |
73 | 0 | } |
74 | | void setColor(const Color& rNewColor) |
75 | 0 | { |
76 | 0 | ASSERT_CHANGE_REFCOUNTED_ITEM; |
77 | 0 | mColor = rNewColor; |
78 | 0 | } Unexecuted instantiation: SvxColorItem::setColor(Color const&) Unexecuted instantiation: SvxColorItem::setColor(Color const&) |
79 | | |
80 | 0 | model::ComplexColor const& getComplexColor() const { return maComplexColor; } |
81 | 0 | void setComplexColor(model::ComplexColor const& rComplexColor) { ASSERT_CHANGE_REFCOUNTED_ITEM; maComplexColor = rComplexColor; } |
82 | | |
83 | | void dumpAsXml(xmlTextWriterPtr pWriter) const override; |
84 | | }; |
85 | | |
86 | | #endif |
87 | | |
88 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |