1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_COLRITEM_HXX
20 #define INCLUDED_EDITENG_COLRITEM_HXX
22 #include <svl/poolitem.hxx>
23 #include <tools/color.hxx>
24 #include <editeng/editengdllapi.h>
25 #include <docmodel/color/ComplexColor.hxx>
27 #define VERSION_USEAUTOCOLOR 1
29 /** SvxColorItem item describes a color.
31 class EDITENG_DLLPUBLIC SvxColorItem final
: public SfxPoolItem
35 model::ComplexColor maComplexColor
;
38 static SfxPoolItem
* CreateDefault();
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
;
45 // "pure virtual Methods" from SfxPoolItem
46 virtual bool operator==(const SfxPoolItem
& rPoolItem
) const override
;
47 virtual bool supportsHashCode() const override
{ return true; }
48 virtual size_t hashCode() const override
;
49 virtual bool QueryValue(css::uno::Any
& rVal
, sal_uInt8 nMemberId
= 0) const override
;
50 virtual bool PutValue(const css::uno::Any
& rVal
, sal_uInt8 nMemberId
) override
;
52 virtual bool GetPresentation(SfxItemPresentation ePres
,
53 MapUnit eCoreMetric
, MapUnit ePresMetric
,
54 OUString
&rText
, const IntlWrapper
& rIntlWrapper
) const override
;
56 virtual SvxColorItem
* Clone(SfxItemPool
* pPool
= nullptr) const override
;
57 SvxColorItem(SvxColorItem
const &) = default; // SfxPoolItem copy function dichotomy
59 const Color
& GetValue() const
63 void SetValue(const Color
& rNewColor
)
65 ASSERT_CHANGE_REFCOUNTED_ITEM
;
69 const Color
& getColor() const
73 void setColor(const Color
& rNewColor
)
75 ASSERT_CHANGE_REFCOUNTED_ITEM
;
79 model::ComplexColor
const& getComplexColor() const { return maComplexColor
; }
80 void setComplexColor(model::ComplexColor
const& rComplexColor
) { ASSERT_CHANGE_REFCOUNTED_ITEM
; maComplexColor
= rComplexColor
; }
82 void dumpAsXml(xmlTextWriterPtr pWriter
) const override
;
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */