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/fillhatchattribute.hxx>
21 : #include <basegfx/color/bcolor.hxx>
22 : #include <rtl/instance.hxx>
23 :
24 :
25 :
26 : namespace drawinglayer
27 : {
28 : namespace attribute
29 : {
30 9026 : class ImpFillHatchAttribute
31 : {
32 : public:
33 : // data definitions
34 : HatchStyle meStyle;
35 : double mfDistance;
36 : double mfAngle;
37 : basegfx::BColor maColor;
38 : sal_uInt32 mnMinimalDiscreteDistance;
39 :
40 : // bitfield
41 : bool mbFillBackground : 1;
42 :
43 2987 : ImpFillHatchAttribute(
44 : HatchStyle eStyle,
45 : double fDistance,
46 : double fAngle,
47 : const basegfx::BColor& rColor,
48 : sal_uInt32 nMinimalDiscreteDistance,
49 : bool bFillBackground)
50 : : meStyle(eStyle),
51 : mfDistance(fDistance),
52 : mfAngle(fAngle),
53 : maColor(rColor),
54 : mnMinimalDiscreteDistance(nMinimalDiscreteDistance),
55 2987 : mbFillBackground(bFillBackground)
56 : {
57 2987 : }
58 :
59 87 : ImpFillHatchAttribute()
60 : : meStyle(HATCHSTYLE_SINGLE),
61 : mfDistance(0.0),
62 : mfAngle(0.0),
63 : maColor(basegfx::BColor()),
64 : mnMinimalDiscreteDistance(3), // same as VCL
65 87 : mbFillBackground(false)
66 : {
67 87 : }
68 :
69 : // data read access
70 3592 : HatchStyle getStyle() const { return meStyle; }
71 3559 : double getDistance() const { return mfDistance; }
72 3555 : double getAngle() const { return mfAngle; }
73 3552 : const basegfx::BColor& getColor() const { return maColor; }
74 2932 : sal_uInt32 getMinimalDiscreteDistance() const { return mnMinimalDiscreteDistance; }
75 3631 : bool isFillBackground() const { return mbFillBackground; }
76 :
77 1457 : bool operator==(const ImpFillHatchAttribute& rCandidate) const
78 : {
79 1457 : return (getStyle() == rCandidate.getStyle()
80 1457 : && getDistance() == rCandidate.getDistance()
81 1457 : && getAngle() == rCandidate.getAngle()
82 1457 : && getColor() == rCandidate.getColor()
83 1457 : && getMinimalDiscreteDistance() == rCandidate.getMinimalDiscreteDistance()
84 2914 : && isFillBackground() == rCandidate.isFillBackground());
85 : }
86 : };
87 :
88 : namespace
89 : {
90 : struct theGlobalDefault :
91 : public rtl::Static< FillHatchAttribute::ImplType, theGlobalDefault > {};
92 : }
93 :
94 2987 : FillHatchAttribute::FillHatchAttribute(
95 : HatchStyle eStyle,
96 : double fDistance,
97 : double fAngle,
98 : const basegfx::BColor& rColor,
99 : sal_uInt32 nMinimalDiscreteDistance,
100 : bool bFillBackground)
101 : : mpFillHatchAttribute(ImpFillHatchAttribute(
102 : eStyle, fDistance, fAngle, rColor,
103 2987 : nMinimalDiscreteDistance, bFillBackground))
104 : {
105 2987 : }
106 :
107 53630 : FillHatchAttribute::FillHatchAttribute()
108 53630 : : mpFillHatchAttribute(theGlobalDefault::get())
109 : {
110 53630 : }
111 :
112 110100 : FillHatchAttribute::FillHatchAttribute(const FillHatchAttribute& rCandidate)
113 110100 : : mpFillHatchAttribute(rCandidate.mpFillHatchAttribute)
114 : {
115 110100 : }
116 :
117 166367 : FillHatchAttribute::~FillHatchAttribute()
118 : {
119 166367 : }
120 :
121 69554 : bool FillHatchAttribute::isDefault() const
122 : {
123 69554 : return mpFillHatchAttribute.same_object(theGlobalDefault::get());
124 : }
125 :
126 2987 : FillHatchAttribute& FillHatchAttribute::operator=(const FillHatchAttribute& rCandidate)
127 : {
128 2987 : mpFillHatchAttribute = rCandidate.mpFillHatchAttribute;
129 2987 : return *this;
130 : }
131 :
132 24166 : bool FillHatchAttribute::operator==(const FillHatchAttribute& rCandidate) const
133 : {
134 : // tdf#87509 default attr is always != non-default attr, even with same values
135 24166 : if(rCandidate.isDefault() != isDefault())
136 0 : return false;
137 :
138 24166 : return rCandidate.mpFillHatchAttribute == mpFillHatchAttribute;
139 : }
140 :
141 : // data read access
142 678 : HatchStyle FillHatchAttribute::getStyle() const
143 : {
144 678 : return mpFillHatchAttribute->getStyle();
145 : }
146 :
147 645 : double FillHatchAttribute::getDistance() const
148 : {
149 645 : return mpFillHatchAttribute->getDistance();
150 : }
151 :
152 641 : double FillHatchAttribute::getAngle() const
153 : {
154 641 : return mpFillHatchAttribute->getAngle();
155 : }
156 :
157 638 : const basegfx::BColor& FillHatchAttribute::getColor() const
158 : {
159 638 : return mpFillHatchAttribute->getColor();
160 : }
161 :
162 18 : sal_uInt32 FillHatchAttribute::getMinimalDiscreteDistance() const
163 : {
164 18 : return mpFillHatchAttribute->getMinimalDiscreteDistance();
165 : }
166 :
167 717 : bool FillHatchAttribute::isFillBackground() const
168 : {
169 717 : return mpFillHatchAttribute->isFillBackground();
170 : }
171 :
172 : } // end of namespace attribute
173 : } // end of namespace drawinglayer
174 :
175 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|