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 0 : 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 0 : 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 0 : mbFillBackground(bFillBackground)
56 : {
57 0 : }
58 :
59 0 : ImpFillHatchAttribute()
60 : : meStyle(HATCHSTYLE_SINGLE),
61 : mfDistance(0.0),
62 : mfAngle(0.0),
63 : maColor(basegfx::BColor()),
64 : mnMinimalDiscreteDistance(3), // same as VCL
65 0 : mbFillBackground(false)
66 : {
67 0 : }
68 :
69 : // data read access
70 0 : HatchStyle getStyle() const { return meStyle; }
71 0 : double getDistance() const { return mfDistance; }
72 0 : double getAngle() const { return mfAngle; }
73 0 : const basegfx::BColor& getColor() const { return maColor; }
74 0 : sal_uInt32 getMinimalDiscreteDistance() const { return mnMinimalDiscreteDistance; }
75 0 : bool isFillBackground() const { return mbFillBackground; }
76 :
77 0 : bool operator==(const ImpFillHatchAttribute& rCandidate) const
78 : {
79 0 : return (getStyle() == rCandidate.getStyle()
80 0 : && getDistance() == rCandidate.getDistance()
81 0 : && getAngle() == rCandidate.getAngle()
82 0 : && getColor() == rCandidate.getColor()
83 0 : && getMinimalDiscreteDistance() == rCandidate.getMinimalDiscreteDistance()
84 0 : && isFillBackground() == rCandidate.isFillBackground());
85 : }
86 : };
87 :
88 : namespace
89 : {
90 : struct theGlobalDefault :
91 : public rtl::Static< FillHatchAttribute::ImplType, theGlobalDefault > {};
92 : }
93 :
94 0 : 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 0 : nMinimalDiscreteDistance, bFillBackground))
104 : {
105 0 : }
106 :
107 0 : FillHatchAttribute::FillHatchAttribute()
108 0 : : mpFillHatchAttribute(theGlobalDefault::get())
109 : {
110 0 : }
111 :
112 0 : FillHatchAttribute::FillHatchAttribute(const FillHatchAttribute& rCandidate)
113 0 : : mpFillHatchAttribute(rCandidate.mpFillHatchAttribute)
114 : {
115 0 : }
116 :
117 0 : FillHatchAttribute::~FillHatchAttribute()
118 : {
119 0 : }
120 :
121 0 : bool FillHatchAttribute::isDefault() const
122 : {
123 0 : return mpFillHatchAttribute.same_object(theGlobalDefault::get());
124 : }
125 :
126 0 : FillHatchAttribute& FillHatchAttribute::operator=(const FillHatchAttribute& rCandidate)
127 : {
128 0 : mpFillHatchAttribute = rCandidate.mpFillHatchAttribute;
129 0 : return *this;
130 : }
131 :
132 0 : bool FillHatchAttribute::operator==(const FillHatchAttribute& rCandidate) const
133 : {
134 0 : return rCandidate.mpFillHatchAttribute == mpFillHatchAttribute;
135 : }
136 :
137 : // data read access
138 0 : HatchStyle FillHatchAttribute::getStyle() const
139 : {
140 0 : return mpFillHatchAttribute->getStyle();
141 : }
142 :
143 0 : double FillHatchAttribute::getDistance() const
144 : {
145 0 : return mpFillHatchAttribute->getDistance();
146 : }
147 :
148 0 : double FillHatchAttribute::getAngle() const
149 : {
150 0 : return mpFillHatchAttribute->getAngle();
151 : }
152 :
153 0 : const basegfx::BColor& FillHatchAttribute::getColor() const
154 : {
155 0 : return mpFillHatchAttribute->getColor();
156 : }
157 :
158 0 : sal_uInt32 FillHatchAttribute::getMinimalDiscreteDistance() const
159 : {
160 0 : return mpFillHatchAttribute->getMinimalDiscreteDistance();
161 : }
162 :
163 0 : bool FillHatchAttribute::isFillBackground() const
164 : {
165 0 : return mpFillHatchAttribute->isFillBackground();
166 : }
167 :
168 : } // end of namespace attribute
169 : } // end of namespace drawinglayer
170 :
171 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|