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 <tools/stream.hxx>
21 : #include <tools/vcompat.hxx>
22 : #include <tools/debug.hxx>
23 : #include <tools/gen.hxx>
24 : #include <vcl/gradient.hxx>
25 :
26 85148 : Impl_Gradient::Impl_Gradient() :
27 : maStartColor( COL_BLACK ),
28 85148 : maEndColor( COL_WHITE )
29 : {
30 85148 : mnRefCount = 1;
31 85148 : meStyle = GradientStyle_LINEAR;
32 85148 : mnAngle = 0;
33 85148 : mnBorder = 0;
34 85148 : mnOfsX = 50;
35 85148 : mnOfsY = 50;
36 85148 : mnIntensityStart = 100;
37 85148 : mnIntensityEnd = 100;
38 85148 : mnStepCount = 0;
39 85148 : }
40 :
41 78545 : Impl_Gradient::Impl_Gradient( const Impl_Gradient& rImplGradient ) :
42 : maStartColor( rImplGradient.maStartColor ),
43 78545 : maEndColor( rImplGradient.maEndColor )
44 : {
45 78545 : mnRefCount = 1;
46 78545 : meStyle = rImplGradient.meStyle;
47 78545 : mnAngle = rImplGradient.mnAngle;
48 78545 : mnBorder = rImplGradient.mnBorder;
49 78545 : mnOfsX = rImplGradient.mnOfsX;
50 78545 : mnOfsY = rImplGradient.mnOfsY;
51 78545 : mnIntensityStart = rImplGradient.mnIntensityStart;
52 78545 : mnIntensityEnd = rImplGradient.mnIntensityEnd;
53 78545 : mnStepCount = rImplGradient.mnStepCount;
54 78545 : }
55 :
56 419011 : void Gradient::MakeUnique()
57 : {
58 : // If there are still other references, copy
59 419011 : if ( mpImplGradient->mnRefCount != 1 )
60 : {
61 78545 : if( mpImplGradient->mnRefCount )
62 78545 : mpImplGradient->mnRefCount--;
63 :
64 78545 : mpImplGradient = new Impl_Gradient( *mpImplGradient );
65 : }
66 419011 : }
67 :
68 84754 : Gradient::Gradient()
69 : {
70 :
71 84754 : mpImplGradient = new Impl_Gradient;
72 84754 : }
73 :
74 167367 : Gradient::Gradient( const Gradient& rGradient )
75 : {
76 :
77 : // Take over instance data and increment refcount
78 167367 : mpImplGradient = rGradient.mpImplGradient;
79 167367 : mpImplGradient->mnRefCount++;
80 167367 : }
81 :
82 394 : Gradient::Gradient( GradientStyle eStyle,
83 : const Color& rStartColor, const Color& rEndColor )
84 : {
85 :
86 394 : mpImplGradient = new Impl_Gradient;
87 394 : mpImplGradient->meStyle = eStyle;
88 394 : mpImplGradient->maStartColor = rStartColor;
89 394 : mpImplGradient->maEndColor = rEndColor;
90 394 : }
91 :
92 252410 : Gradient::~Gradient()
93 : {
94 :
95 : // If it's the last reference, delete it, otherwise
96 : // decrement refcount
97 252410 : if ( mpImplGradient->mnRefCount == 1 )
98 163588 : delete mpImplGradient;
99 : else
100 88822 : mpImplGradient->mnRefCount--;
101 252410 : }
102 :
103 84754 : void Gradient::SetStyle( GradientStyle eStyle )
104 : {
105 :
106 84754 : MakeUnique();
107 84754 : mpImplGradient->meStyle = eStyle;
108 84754 : }
109 :
110 84763 : void Gradient::SetStartColor( const Color& rColor )
111 : {
112 :
113 84763 : MakeUnique();
114 84763 : mpImplGradient->maStartColor = rColor;
115 84763 : }
116 :
117 84763 : void Gradient::SetEndColor( const Color& rColor )
118 : {
119 :
120 84763 : MakeUnique();
121 84763 : mpImplGradient->maEndColor = rColor;
122 84763 : }
123 :
124 84948 : void Gradient::SetAngle( sal_uInt16 nAngle )
125 : {
126 :
127 84948 : MakeUnique();
128 84948 : mpImplGradient->mnAngle = nAngle;
129 84948 : }
130 :
131 207 : void Gradient::SetBorder( sal_uInt16 nBorder )
132 : {
133 :
134 207 : MakeUnique();
135 207 : mpImplGradient->mnBorder = nBorder;
136 207 : }
137 :
138 207 : void Gradient::SetOfsX( sal_uInt16 nOfsX )
139 : {
140 :
141 207 : MakeUnique();
142 207 : mpImplGradient->mnOfsX = nOfsX;
143 207 : }
144 :
145 207 : void Gradient::SetOfsY( sal_uInt16 nOfsY )
146 : {
147 :
148 207 : MakeUnique();
149 207 : mpImplGradient->mnOfsY = nOfsY;
150 207 : }
151 :
152 207 : void Gradient::SetStartIntensity( sal_uInt16 nIntens )
153 : {
154 :
155 207 : MakeUnique();
156 207 : mpImplGradient->mnIntensityStart = nIntens;
157 207 : }
158 :
159 207 : void Gradient::SetEndIntensity( sal_uInt16 nIntens )
160 : {
161 :
162 207 : MakeUnique();
163 207 : mpImplGradient->mnIntensityEnd = nIntens;
164 207 : }
165 :
166 78748 : void Gradient::SetSteps( sal_uInt16 nSteps )
167 : {
168 :
169 78748 : MakeUnique();
170 78748 : mpImplGradient->mnStepCount = nSteps;
171 78748 : }
172 :
173 78545 : void Gradient::GetBoundRect( const Rectangle& rRect, Rectangle& rBoundRect, Point& rCenter ) const
174 : {
175 78545 : Rectangle aRect( rRect );
176 78545 : sal_uInt16 nAngle = GetAngle() % 3600;
177 :
178 78545 : if( GetStyle() == GradientStyle_LINEAR || GetStyle() == GradientStyle_AXIAL )
179 : {
180 78545 : const double fAngle = nAngle * F_PI1800;
181 78545 : const double fWidth = aRect.GetWidth();
182 78545 : const double fHeight = aRect.GetHeight();
183 78545 : double fDX = fWidth * fabs( cos( fAngle ) ) +
184 78545 : fHeight * fabs( sin( fAngle ) );
185 78545 : double fDY = fHeight * fabs( cos( fAngle ) ) +
186 78545 : fWidth * fabs( sin( fAngle ) );
187 78545 : fDX = (fDX - fWidth) * 0.5 + 0.5;
188 78545 : fDY = (fDY - fHeight) * 0.5 + 0.5;
189 78545 : aRect.Left() -= (long) fDX;
190 78545 : aRect.Right() += (long) fDX;
191 78545 : aRect.Top() -= (long) fDY;
192 78545 : aRect.Bottom() += (long) fDY;
193 :
194 78545 : rBoundRect = aRect;
195 78545 : rCenter = rRect.Center();
196 : }
197 : else
198 : {
199 0 : if( GetStyle() == GradientStyle_SQUARE || GetStyle() == GradientStyle_RECT )
200 : {
201 0 : const double fAngle = nAngle * F_PI1800;
202 0 : const double fWidth = aRect.GetWidth();
203 0 : const double fHeight = aRect.GetHeight();
204 0 : double fDX = fWidth * fabs( cos( fAngle ) ) + fHeight * fabs( sin( fAngle ) );
205 0 : double fDY = fHeight * fabs( cos( fAngle ) ) + fWidth * fabs( sin( fAngle ) );
206 :
207 0 : fDX = ( fDX - fWidth ) * 0.5 + 0.5;
208 0 : fDY = ( fDY - fHeight ) * 0.5 + 0.5;
209 :
210 0 : aRect.Left() -= (long) fDX;
211 0 : aRect.Right() += (long) fDX;
212 0 : aRect.Top() -= (long) fDY;
213 0 : aRect.Bottom() += (long) fDY;
214 : }
215 :
216 0 : Size aSize( aRect.GetSize() );
217 :
218 0 : if( GetStyle() == GradientStyle_RADIAL )
219 : {
220 : // Calculation of radii for circle
221 0 : aSize.Width() = (long)(0.5 + sqrt((double)aSize.Width()*(double)aSize.Width() + (double)aSize.Height()*(double)aSize.Height()));
222 0 : aSize.Height() = aSize.Width();
223 : }
224 0 : else if( GetStyle() == GradientStyle_ELLIPTICAL )
225 : {
226 : // Calculation of radii for ellipse
227 0 : aSize.Width() = (long)( 0.5 + (double) aSize.Width() * 1.4142 );
228 0 : aSize.Height() = (long)( 0.5 + (double) aSize.Height() * 1.4142 );
229 : }
230 :
231 : // Calculate new centers
232 0 : long nZWidth = aRect.GetWidth() * (long) GetOfsX() / 100;
233 0 : long nZHeight = aRect.GetHeight() * (long) GetOfsY() / 100;
234 0 : long nBorderX = (long) GetBorder() * aSize.Width() / 100;
235 0 : long nBorderY = (long) GetBorder() * aSize.Height() / 100;
236 0 : rCenter = Point( aRect.Left() + nZWidth, aRect.Top() + nZHeight );
237 :
238 : // Respect borders
239 0 : aSize.Width() -= nBorderX;
240 0 : aSize.Height() -= nBorderY;
241 :
242 : // Recalculate output rectangle
243 0 : aRect.Left() = rCenter.X() - ( aSize.Width() >> 1 );
244 0 : aRect.Top() = rCenter.Y() - ( aSize.Height() >> 1 );
245 :
246 0 : aRect.SetSize( aSize );
247 0 : rBoundRect = aRect;
248 : }
249 78545 : }
250 :
251 0 : Gradient& Gradient::operator=( const Gradient& rGradient )
252 : {
253 :
254 : // Increment refcount first so that we can reference ourselves
255 0 : rGradient.mpImplGradient->mnRefCount++;
256 :
257 : // If it's the last reference, delete it, otherwise decrement
258 0 : if ( mpImplGradient->mnRefCount == 1 )
259 0 : delete mpImplGradient;
260 : else
261 0 : mpImplGradient->mnRefCount--;
262 0 : mpImplGradient = rGradient.mpImplGradient;
263 :
264 0 : return *this;
265 : }
266 :
267 0 : bool Gradient::operator==( const Gradient& rGradient ) const
268 : {
269 :
270 0 : if ( mpImplGradient == rGradient.mpImplGradient )
271 0 : return true;
272 :
273 0 : if ( (mpImplGradient->meStyle == rGradient.mpImplGradient->meStyle) &&
274 0 : (mpImplGradient->mnAngle == rGradient.mpImplGradient->mnAngle) &&
275 0 : (mpImplGradient->mnBorder == rGradient.mpImplGradient->mnBorder) &&
276 0 : (mpImplGradient->mnOfsX == rGradient.mpImplGradient->mnOfsX) &&
277 0 : (mpImplGradient->mnOfsY == rGradient.mpImplGradient->mnOfsY) &&
278 0 : (mpImplGradient->mnStepCount == rGradient.mpImplGradient->mnStepCount) &&
279 0 : (mpImplGradient->mnIntensityStart == rGradient.mpImplGradient->mnIntensityStart) &&
280 0 : (mpImplGradient->mnIntensityEnd == rGradient.mpImplGradient->mnIntensityEnd) &&
281 0 : (mpImplGradient->maStartColor == rGradient.mpImplGradient->maStartColor) &&
282 0 : (mpImplGradient->maEndColor == rGradient.mpImplGradient->maEndColor) )
283 0 : return true;
284 : else
285 0 : return false;
286 : }
287 :
288 0 : SvStream& ReadImpl_Gradient( SvStream& rIStm, Impl_Gradient& rImpl_Gradient )
289 : {
290 0 : VersionCompat aCompat( rIStm, StreamMode::READ );
291 : sal_uInt16 nTmp16;
292 :
293 0 : rIStm.ReadUInt16( nTmp16 ); rImpl_Gradient.meStyle = (GradientStyle) nTmp16;
294 :
295 0 : ReadColor( rIStm, rImpl_Gradient.maStartColor );
296 0 : ReadColor( rIStm, rImpl_Gradient.maEndColor );
297 0 : rIStm.ReadUInt16( rImpl_Gradient.mnAngle ). ReadUInt16( rImpl_Gradient.mnBorder ). ReadUInt16( rImpl_Gradient.mnOfsX ). ReadUInt16( rImpl_Gradient.mnOfsY ). ReadUInt16( rImpl_Gradient.mnIntensityStart ). ReadUInt16( rImpl_Gradient.mnIntensityEnd ). ReadUInt16( rImpl_Gradient.mnStepCount );
298 :
299 0 : return rIStm;
300 : }
301 :
302 0 : SvStream& WriteImpl_Gradient( SvStream& rOStm, const Impl_Gradient& rImpl_Gradient )
303 : {
304 0 : VersionCompat aCompat( rOStm, StreamMode::WRITE, 1 );
305 :
306 0 : rOStm.WriteUInt16( rImpl_Gradient.meStyle );
307 0 : WriteColor( rOStm, rImpl_Gradient.maStartColor );
308 0 : WriteColor( rOStm, rImpl_Gradient.maEndColor );
309 0 : rOStm.WriteUInt16( rImpl_Gradient.mnAngle )
310 0 : .WriteUInt16( rImpl_Gradient.mnBorder )
311 0 : .WriteUInt16( rImpl_Gradient.mnOfsX )
312 0 : .WriteUInt16( rImpl_Gradient.mnOfsY )
313 0 : .WriteUInt16( rImpl_Gradient.mnIntensityStart )
314 0 : .WriteUInt16( rImpl_Gradient.mnIntensityEnd )
315 0 : .WriteUInt16( rImpl_Gradient.mnStepCount );
316 :
317 0 : return rOStm;
318 : }
319 :
320 0 : SvStream& ReadGradient( SvStream& rIStm, Gradient& rGradient )
321 : {
322 0 : rGradient.MakeUnique();
323 0 : return ReadImpl_Gradient( rIStm, *rGradient.mpImplGradient );
324 : }
325 :
326 0 : SvStream& WriteGradient( SvStream& rOStm, const Gradient& rGradient )
327 : {
328 0 : return WriteImpl_Gradient( rOStm, *rGradient.mpImplGradient );
329 : }
330 :
331 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|