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/fillgradientattribute.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 ImpFillGradientAttribute
31 : {
32 : public:
33 : // data definitions
34 : GradientStyle meStyle;
35 : double mfBorder;
36 : double mfOffsetX;
37 : double mfOffsetY;
38 : double mfAngle;
39 : basegfx::BColor maStartColor;
40 : basegfx::BColor maEndColor;
41 : sal_uInt16 mnSteps;
42 :
43 0 : ImpFillGradientAttribute(
44 : GradientStyle eStyle,
45 : double fBorder,
46 : double fOffsetX,
47 : double fOffsetY,
48 : double fAngle,
49 : const basegfx::BColor& rStartColor,
50 : const basegfx::BColor& rEndColor,
51 : sal_uInt16 nSteps)
52 : : meStyle(eStyle),
53 : mfBorder(fBorder),
54 : mfOffsetX(fOffsetX),
55 : mfOffsetY(fOffsetY),
56 : mfAngle(fAngle),
57 : maStartColor(rStartColor),
58 : maEndColor(rEndColor),
59 0 : mnSteps(nSteps)
60 : {
61 0 : }
62 :
63 0 : ImpFillGradientAttribute()
64 : : meStyle(GRADIENTSTYLE_LINEAR),
65 : mfBorder(0.0),
66 : mfOffsetX(0.0),
67 : mfOffsetY(0.0),
68 : mfAngle(0.0),
69 : maStartColor(basegfx::BColor()),
70 : maEndColor(basegfx::BColor()),
71 0 : mnSteps(0)
72 : {
73 0 : }
74 :
75 : // data read access
76 0 : GradientStyle getStyle() const { return meStyle; }
77 0 : double getBorder() const { return mfBorder; }
78 0 : double getOffsetX() const { return mfOffsetX; }
79 0 : double getOffsetY() const { return mfOffsetY; }
80 0 : double getAngle() const { return mfAngle; }
81 0 : const basegfx::BColor& getStartColor() const { return maStartColor; }
82 0 : const basegfx::BColor& getEndColor() const { return maEndColor; }
83 0 : sal_uInt16 getSteps() const { return mnSteps; }
84 :
85 0 : bool operator==(const ImpFillGradientAttribute& rCandidate) const
86 : {
87 0 : return (getStyle() == rCandidate.getStyle()
88 0 : && getBorder() == rCandidate.getBorder()
89 0 : && getOffsetX() == rCandidate.getOffsetX()
90 0 : && getOffsetY() == rCandidate.getOffsetY()
91 0 : && getAngle() == rCandidate.getAngle()
92 0 : && getStartColor() == rCandidate.getStartColor()
93 0 : && getEndColor() == rCandidate.getEndColor()
94 0 : && getSteps() == rCandidate.getSteps());
95 : }
96 : };
97 :
98 : namespace
99 : {
100 : struct theGlobalDefault :
101 : public rtl::Static< FillGradientAttribute::ImplType, theGlobalDefault > {};
102 : }
103 :
104 0 : FillGradientAttribute::FillGradientAttribute(
105 : GradientStyle eStyle,
106 : double fBorder,
107 : double fOffsetX,
108 : double fOffsetY,
109 : double fAngle,
110 : const basegfx::BColor& rStartColor,
111 : const basegfx::BColor& rEndColor,
112 : sal_uInt16 nSteps)
113 : : mpFillGradientAttribute(ImpFillGradientAttribute(
114 0 : eStyle, fBorder, fOffsetX, fOffsetY, fAngle, rStartColor, rEndColor, nSteps))
115 : {
116 0 : }
117 :
118 0 : FillGradientAttribute::FillGradientAttribute()
119 0 : : mpFillGradientAttribute(theGlobalDefault::get())
120 : {
121 0 : }
122 :
123 0 : FillGradientAttribute::FillGradientAttribute(const FillGradientAttribute& rCandidate)
124 0 : : mpFillGradientAttribute(rCandidate.mpFillGradientAttribute)
125 : {
126 0 : }
127 :
128 0 : FillGradientAttribute::~FillGradientAttribute()
129 : {
130 0 : }
131 :
132 0 : bool FillGradientAttribute::isDefault() const
133 : {
134 0 : return mpFillGradientAttribute.same_object(theGlobalDefault::get());
135 : }
136 :
137 0 : FillGradientAttribute& FillGradientAttribute::operator=(const FillGradientAttribute& rCandidate)
138 : {
139 0 : mpFillGradientAttribute = rCandidate.mpFillGradientAttribute;
140 0 : return *this;
141 : }
142 :
143 0 : bool FillGradientAttribute::operator==(const FillGradientAttribute& rCandidate) const
144 : {
145 0 : return rCandidate.mpFillGradientAttribute == mpFillGradientAttribute;
146 : }
147 :
148 0 : const basegfx::BColor& FillGradientAttribute::getStartColor() const
149 : {
150 0 : return mpFillGradientAttribute->getStartColor();
151 : }
152 :
153 0 : const basegfx::BColor& FillGradientAttribute::getEndColor() const
154 : {
155 0 : return mpFillGradientAttribute->getEndColor();
156 : }
157 :
158 0 : double FillGradientAttribute::getBorder() const
159 : {
160 0 : return mpFillGradientAttribute->getBorder();
161 : }
162 :
163 0 : double FillGradientAttribute::getOffsetX() const
164 : {
165 0 : return mpFillGradientAttribute->getOffsetX();
166 : }
167 :
168 0 : double FillGradientAttribute::getOffsetY() const
169 : {
170 0 : return mpFillGradientAttribute->getOffsetY();
171 : }
172 :
173 0 : double FillGradientAttribute::getAngle() const
174 : {
175 0 : return mpFillGradientAttribute->getAngle();
176 : }
177 :
178 0 : GradientStyle FillGradientAttribute::getStyle() const
179 : {
180 0 : return mpFillGradientAttribute->getStyle();
181 : }
182 :
183 0 : sal_uInt16 FillGradientAttribute::getSteps() const
184 : {
185 0 : return mpFillGradientAttribute->getSteps();
186 : }
187 :
188 : } // end of namespace attribute
189 : } // end of namespace drawinglayer
190 :
191 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|