Line data Source code
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 :
20 : #include <drawinglayer/attribute/sdrfillattribute.hxx>
21 : #include <basegfx/color/bcolor.hxx>
22 : #include <drawinglayer/attribute/sdrfillgraphicattribute.hxx>
23 : #include <drawinglayer/attribute/fillhatchattribute.hxx>
24 : #include <drawinglayer/attribute/fillgradientattribute.hxx>
25 : #include <rtl/instance.hxx>
26 :
27 :
28 :
29 : namespace drawinglayer
30 : {
31 : namespace attribute
32 : {
33 160394 : class ImpSdrFillAttribute
34 : {
35 : public:
36 : // fill definitions
37 : double mfTransparence; // [0.0 .. 1.0], 0.0==no transp.
38 : basegfx::BColor maColor; // fill color
39 : FillGradientAttribute maGradient; // fill gradient (if used)
40 : FillHatchAttribute maHatch; // fill hatch (if used)
41 : SdrFillGraphicAttribute maFillGraphic; // fill graphic (if used)
42 :
43 : public:
44 53543 : ImpSdrFillAttribute(
45 : double fTransparence,
46 : const basegfx::BColor& rColor,
47 : const FillGradientAttribute& rGradient,
48 : const FillHatchAttribute& rHatch,
49 : const SdrFillGraphicAttribute& rFillGraphic)
50 : : mfTransparence(fTransparence),
51 : maColor(rColor),
52 : maGradient(rGradient),
53 : maHatch(rHatch),
54 53543 : maFillGraphic(rFillGraphic)
55 : {
56 53543 : }
57 :
58 87 : ImpSdrFillAttribute()
59 : : mfTransparence(0.0),
60 : maColor(basegfx::BColor()),
61 : maGradient(FillGradientAttribute()),
62 : maHatch(FillHatchAttribute()),
63 87 : maFillGraphic(SdrFillGraphicAttribute())
64 : {
65 87 : }
66 :
67 : // data read access
68 92359 : double getTransparence() const { return mfTransparence; }
69 65867 : const basegfx::BColor& getColor() const { return maColor; }
70 69385 : const FillGradientAttribute& getGradient() const { return maGradient; }
71 69568 : const FillHatchAttribute& getHatch() const { return maHatch; }
72 68896 : const SdrFillGraphicAttribute& getFillGraphic() const { return maFillGraphic; }
73 :
74 : // compare operator
75 24198 : bool operator==(const ImpSdrFillAttribute& rCandidate) const
76 : {
77 24198 : return(getTransparence() == rCandidate.getTransparence()
78 24196 : && getColor() == rCandidate.getColor()
79 24168 : && getGradient() == rCandidate.getGradient()
80 24166 : && getHatch() == rCandidate.getHatch()
81 48364 : && getFillGraphic() == rCandidate.getFillGraphic());
82 : }
83 : };
84 :
85 : namespace
86 : {
87 : struct theGlobalDefault :
88 : public rtl::Static< SdrFillAttribute::ImplType, theGlobalDefault > {};
89 : }
90 :
91 53543 : SdrFillAttribute::SdrFillAttribute(
92 : double fTransparence,
93 : const basegfx::BColor& rColor,
94 : const FillGradientAttribute& rGradient,
95 : const FillHatchAttribute& rHatch,
96 : const SdrFillGraphicAttribute& rFillGraphic)
97 : : mpSdrFillAttribute(ImpSdrFillAttribute(
98 53543 : fTransparence, rColor, rGradient, rHatch, rFillGraphic))
99 : {
100 53543 : }
101 :
102 197175 : SdrFillAttribute::SdrFillAttribute()
103 197175 : : mpSdrFillAttribute(theGlobalDefault::get())
104 : {
105 197175 : }
106 :
107 185314 : SdrFillAttribute::SdrFillAttribute(const SdrFillAttribute& rCandidate)
108 185314 : : mpSdrFillAttribute(rCandidate.mpSdrFillAttribute)
109 : {
110 185314 : }
111 :
112 435251 : SdrFillAttribute::~SdrFillAttribute()
113 : {
114 435251 : }
115 :
116 553059 : bool SdrFillAttribute::isDefault() const
117 : {
118 553059 : return mpSdrFillAttribute.same_object(theGlobalDefault::get());
119 : }
120 :
121 99139 : SdrFillAttribute& SdrFillAttribute::operator=(const SdrFillAttribute& rCandidate)
122 : {
123 99139 : mpSdrFillAttribute = rCandidate.mpSdrFillAttribute;
124 99139 : return *this;
125 : }
126 :
127 54620 : bool SdrFillAttribute::operator==(const SdrFillAttribute& rCandidate) const
128 : {
129 : // tdf#87509 default attr is always != non-default attr, even with same values
130 54620 : if(rCandidate.isDefault() != isDefault())
131 23 : return false;
132 :
133 54597 : return rCandidate.mpSdrFillAttribute == mpSdrFillAttribute;
134 : }
135 :
136 43963 : double SdrFillAttribute::getTransparence() const
137 : {
138 43963 : return mpSdrFillAttribute->getTransparence();
139 : }
140 :
141 17475 : const basegfx::BColor& SdrFillAttribute::getColor() const
142 : {
143 17475 : return mpSdrFillAttribute->getColor();
144 : }
145 :
146 21049 : const FillGradientAttribute& SdrFillAttribute::getGradient() const
147 : {
148 21049 : return mpSdrFillAttribute->getGradient();
149 : }
150 :
151 21236 : const FillHatchAttribute& SdrFillAttribute::getHatch() const
152 : {
153 21236 : return mpSdrFillAttribute->getHatch();
154 : }
155 :
156 20564 : const SdrFillGraphicAttribute& SdrFillAttribute::getFillGraphic() const
157 : {
158 20564 : return mpSdrFillAttribute->getFillGraphic();
159 : }
160 : } // end of namespace attribute
161 : } // end of namespace drawinglayer
162 :
163 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|