sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "directgdiadapter.h"
|
sl@0
|
17 |
#include "swdirectgdiellipse.h"
|
sl@0
|
18 |
#include "swdirectgdiengine.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
/*
|
sl@0
|
21 |
* TSwDirectGdiEllipse
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Initialises the values of the ellipse so that it conforms to a rectangle entered as a parameter.
|
sl@0
|
26 |
@param aRect the rectangle within which the ellipse is drawn
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
void TSwDirectGdiEllipse::Construct(const TRect& aRect)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
TInt width = aRect.Width();
|
sl@0
|
31 |
TInt height = aRect.Height();
|
sl@0
|
32 |
iA = (width-1) >> 1;
|
sl@0
|
33 |
iB = (height-1) >> 1;
|
sl@0
|
34 |
iXAdj = (width+1) & 1;
|
sl@0
|
35 |
iYAdj = (height+1) & 1;
|
sl@0
|
36 |
iOffset = aRect.iTl;
|
sl@0
|
37 |
iX = 0;
|
sl@0
|
38 |
iY = iB;
|
sl@0
|
39 |
iASquared = iA * iA;
|
sl@0
|
40 |
iBSquared = iB * iB;
|
sl@0
|
41 |
iASquBSqu = iASquared * iBSquared;
|
sl@0
|
42 |
iD1 = iBSquared - iASquared * iB + (iASquared>>1);
|
sl@0
|
43 |
if (width<=0 || height<=0)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
iStatus = EComplete;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
else if (width<=2 || height<=2)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
iStatus = ELine;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
else
|
sl@0
|
52 |
{
|
sl@0
|
53 |
iStatus = EInitialised;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Does the next stage in producing an ellipse by taking four points (the corners of
|
sl@0
|
59 |
the rectangle the ellipse should fill) as parameters. Updates TSwDirectGdiEllipse status
|
sl@0
|
60 |
accordingly and calls Output(aTopLeft,aTopRight,aBottomLeft,aBottomRight).
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aTopLeft Top left corner of rectangle.
|
sl@0
|
63 |
@param aTopRight Top right corner of rectangle.
|
sl@0
|
64 |
@param aBottomLeft Bottom left corner of rectangle.
|
sl@0
|
65 |
@param aBottomRight Bottom right corner of rectangle.
|
sl@0
|
66 |
@return TBool ETrue if step completed successfully.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
TBool TSwDirectGdiEllipse::SingleStep(TPoint& aTopLeft, TPoint& aTopRight,
|
sl@0
|
69 |
TPoint& aBottomLeft, TPoint& aBottomRight)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TBool ret = EFalse;
|
sl@0
|
72 |
if (iStatus == EFirstSector)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
if (iD1 < 0)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
iD1 += iBSquared * ((iX<<1)+3);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
else if (iY > 0)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
iD1 += iBSquared * ((iX<<1)+3) + iASquared * (2-(iY<<1));
|
sl@0
|
81 |
iY--;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
iX++;
|
sl@0
|
84 |
ret = Output(aTopLeft,aTopRight,aBottomLeft,aBottomRight);
|
sl@0
|
85 |
if (iStatus == EComplete && iX<iA)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
iStatus = EFirstSector;
|
sl@0
|
88 |
return EFalse;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
if (iASquared*iY<=iBSquared*(iX+1) && ret==EFalse)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
iStatus = ESecondSector;
|
sl@0
|
93 |
iD2 =- iASquBSqu + iBSquared * iX * iX + iASquared * (iY-1) * (iY-1);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
return ret;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
if (iStatus == ESecondSector)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
if (iD2 < 0)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
iD2 += iBSquared * ((iX<<1)+2) + iASquared * (3-(iY<<1));
|
sl@0
|
102 |
iX++;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
else
|
sl@0
|
105 |
{
|
sl@0
|
106 |
iD2 += iASquared * (3-(iY<<1));
|
sl@0
|
107 |
}
|
sl@0
|
108 |
iY--;
|
sl@0
|
109 |
return Output(aTopLeft, aTopRight, aBottomLeft, aBottomRight);
|
sl@0
|
110 |
}
|
sl@0
|
111 |
if (iStatus == ELine)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
ret = Output(aTopLeft, aTopRight, aBottomLeft, aBottomRight);
|
sl@0
|
114 |
if (iA == 0)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
iY--;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
else
|
sl@0
|
119 |
{
|
sl@0
|
120 |
iX++;
|
sl@0
|
121 |
if (iX > iA+iXAdj)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
ret = ETrue;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
else
|
sl@0
|
126 |
{
|
sl@0
|
127 |
iStatus = ELine;
|
sl@0
|
128 |
ret = EFalse;
|
sl@0
|
129 |
}
|
sl@0
|
130 |
}
|
sl@0
|
131 |
return ret;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
if (iStatus == EInitialised)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
iStatus = EFirstSector;
|
sl@0
|
136 |
return Output(aTopLeft, aTopRight, aBottomLeft, aBottomRight);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
Output(aTopLeft, aTopRight, aBottomLeft, aBottomRight);
|
sl@0
|
139 |
return ETrue;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
/**
|
sl@0
|
143 |
Sets the absolute points that define the ellipse as calculated using its iOffset
|
sl@0
|
144 |
from the origin and using the half width and half height of the rectangle iA and iB.
|
sl@0
|
145 |
|
sl@0
|
146 |
@param aTopLeft The absolute (x,y) position for the top left point.
|
sl@0
|
147 |
@param aTopRight The absolute (x,y) position for the top right point.
|
sl@0
|
148 |
@param aBottomLeft The absolute (x,y) position for the bottom left point.
|
sl@0
|
149 |
@param aBottomRight The absolute (x,y) position for the bottom right point.
|
sl@0
|
150 |
@return ETrue if a valid rectangle is produced, else EFalse. Also sets
|
sl@0
|
151 |
iStatus to EComplete.
|
sl@0
|
152 |
*/
|
sl@0
|
153 |
TBool TSwDirectGdiEllipse::Output(TPoint& aTopLeft, TPoint& aTopRight,
|
sl@0
|
154 |
TPoint& aBottomLeft, TPoint& aBottomRight)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
TInt lx = iA-iX+iOffset.iX;
|
sl@0
|
157 |
TInt ty = iB-iY+iOffset.iY;
|
sl@0
|
158 |
TInt rx = iA+iX+iXAdj+iOffset.iX;
|
sl@0
|
159 |
TInt by = iB+iY+iYAdj+iOffset.iY;
|
sl@0
|
160 |
aTopLeft.SetXY(lx,ty);
|
sl@0
|
161 |
aTopRight.SetXY(rx,ty);
|
sl@0
|
162 |
aBottomLeft.SetXY(lx,by);
|
sl@0
|
163 |
aBottomRight.SetXY(rx,by);
|
sl@0
|
164 |
if (iY <= 0)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
iStatus = EComplete;
|
sl@0
|
167 |
if (iYAdj==0 || ty>by)
|
sl@0
|
168 |
return ETrue;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
return EFalse;
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
By analysing the current state of the ellipse the process is taken to the next appropriate step.
|
sl@0
|
175 |
If iStatus = EInitialised only one step will be taken, if the ellipse is already semi constructed then
|
sl@0
|
176 |
it will be taken to completion. Takes in four point parameters that define the rectangle in order to pass to
|
sl@0
|
177 |
SingleStep(aTopLeft,aTopRight,aBottomLeft,aBottomRight).
|
sl@0
|
178 |
|
sl@0
|
179 |
@param aTopLeft Top-left corner of rectangle.
|
sl@0
|
180 |
@param aTopRight Top-right corner of rectangle.
|
sl@0
|
181 |
@param aBottomLeft Bottom-left corner of rectangle.
|
sl@0
|
182 |
@param aBottomRight Bottom-right corner of rectangle.
|
sl@0
|
183 |
@return ETrue if a valid rectangle is produced, else EFalse.
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
TBool TSwDirectGdiEllipse::NextStep(TPoint& aTopLeft, TPoint& aTopRight,
|
sl@0
|
186 |
TPoint& aBottomLeft, TPoint& aBottomRight)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
if(iStatus == EInitialised)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
return(SingleStep(aTopLeft,aTopRight,aBottomLeft,aBottomRight));
|
sl@0
|
191 |
}
|
sl@0
|
192 |
TInt prevlev = iY;
|
sl@0
|
193 |
TBool ret;
|
sl@0
|
194 |
do
|
sl@0
|
195 |
{
|
sl@0
|
196 |
ret = SingleStep(aTopLeft,aTopRight,aBottomLeft,aBottomRight);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
while (prevlev==iY && ret==EFalse);
|
sl@0
|
199 |
return ret;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
/**
|
sl@0
|
203 |
Constructs an ellipse from the rectangle that has been added. Assesses the position of
|
sl@0
|
204 |
the points and the places where they intersect the ellipse.
|
sl@0
|
205 |
|
sl@0
|
206 |
@param aRect The rectangle within which the ellipse is drawn.
|
sl@0
|
207 |
@param aPoint A point to compare with the ellipse to determine if intersection occurs.
|
sl@0
|
208 |
@return TPoint The point is set to the corner which the intersection is nearest to.
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
TPoint TSwDirectGdiEllipse::Intersection(const TRect& aRect, const TPoint& aPoint)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
Construct(aRect); //constructs the rect (an elipse object)
|
sl@0
|
213 |
TPoint centre = aRect.Center(); //centre of ellipse
|
sl@0
|
214 |
TPoint ptcpy(aPoint);
|
sl@0
|
215 |
ptcpy -= iOffset; //ptcpy = aPoint - iOffset - TPoint(iA,iB) //radius from centre of ellipse
|
sl@0
|
216 |
ptcpy -= TPoint(iA,iB);
|
sl@0
|
217 |
TPoint pt[4], opt[4];
|
sl@0
|
218 |
TInt mpt[4], ompt[4];
|
sl@0
|
219 |
TInt count = 0;
|
sl@0
|
220 |
for( ; count < 4; count++)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
ompt[count]=KMaxTInt; //fills ompt 1->4 with KMaxTInt
|
sl@0
|
223 |
}
|
sl@0
|
224 |
while (SingleStep(pt[0], pt[1], pt[2], pt[3]) == EFalse) //creates a complete ellipse with pts as rect
|
sl@0
|
225 |
{
|
sl@0
|
226 |
for (count = 0; count < 4; count++)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
mpt[count] = Abs((pt[count].iY-iOffset.iY-iB)*(ptcpy.iX)-(ptcpy.iY)*(pt[count].iX-iOffset.iX-iA));
|
sl@0
|
229 |
if (mpt[count] < ompt[count]) //use the larger number set.
|
sl@0
|
230 |
{
|
sl@0
|
231 |
ompt[count] = mpt[count];
|
sl@0
|
232 |
opt[count] = pt[count];
|
sl@0
|
233 |
}
|
sl@0
|
234 |
}
|
sl@0
|
235 |
}
|
sl@0
|
236 |
if (pt[0].iY == pt[2].iY) //if it is horizontal
|
sl@0
|
237 |
{
|
sl@0
|
238 |
for (count = 0; count < 4; count++)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
mpt[count] = Abs((pt[count].iY-iOffset.iY-iB)*(ptcpy.iX)-(ptcpy.iY)*(pt[count].iX-iOffset.iX-iA));
|
sl@0
|
241 |
if (mpt[count] < ompt[count]) //use the larger number set.
|
sl@0
|
242 |
{
|
sl@0
|
243 |
ompt[count] = mpt[count];
|
sl@0
|
244 |
opt[count] = pt[count];
|
sl@0
|
245 |
}
|
sl@0
|
246 |
}
|
sl@0
|
247 |
}
|
sl@0
|
248 |
if (ptcpy.iX<0 && ptcpy.iY<0) //if point is further left and higher than centre of rect
|
sl@0
|
249 |
{
|
sl@0
|
250 |
return opt[0];
|
sl@0
|
251 |
}
|
sl@0
|
252 |
if (ptcpy.iY < 0) //if point is higher than centre of rect
|
sl@0
|
253 |
{
|
sl@0
|
254 |
return opt[1];
|
sl@0
|
255 |
}
|
sl@0
|
256 |
if (ptcpy.iX < 0) //if point is further left than centre of rect
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return opt[2];
|
sl@0
|
259 |
}
|
sl@0
|
260 |
if (aPoint.iX<centre.iX && aPoint.iY<centre.iY) //if point is further left and higher than centre of rect
|
sl@0
|
261 |
{
|
sl@0
|
262 |
return opt[0];
|
sl@0
|
263 |
}
|
sl@0
|
264 |
if (aPoint.iY < centre.iY) //if point is higher than centre of rect
|
sl@0
|
265 |
{
|
sl@0
|
266 |
return opt[1];
|
sl@0
|
267 |
}
|
sl@0
|
268 |
if (aPoint.iX < centre.iX) //if point is further left than centre of rect
|
sl@0
|
269 |
{
|
sl@0
|
270 |
return opt[2];
|
sl@0
|
271 |
}
|
sl@0
|
272 |
return(opt[3]); //else
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
//
|
sl@0
|
276 |
// Ellipse drawing
|
sl@0
|
277 |
//
|
sl@0
|
278 |
|
sl@0
|
279 |
/**
|
sl@0
|
280 |
@see MDirectGdiEngine::DrawEllipse()
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
void CSwDirectGdiEngine::DrawEllipse(const TRect& aRect)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
TRect rcpy(aRect);
|
sl@0
|
285 |
rcpy.Move(iOrigin);
|
sl@0
|
286 |
TruncateRect(rcpy);
|
sl@0
|
287 |
iBrushBitmap.BeginDataAccess();
|
sl@0
|
288 |
if(iBrushStyle!=DirectGdi::ENullBrush)
|
sl@0
|
289 |
EllipseFill(rcpy);
|
sl@0
|
290 |
|
sl@0
|
291 |
if(iPenStyle!=DirectGdi::ENullPen)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
if(iPenSize.iWidth>1 && iPenSize.iHeight>1)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
EllipseOutlineWide(rcpy);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
else if(iPenSize.iWidth==1 || iPenSize.iHeight==1)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
EllipseOutline(rcpy);
|
sl@0
|
300 |
}
|
sl@0
|
301 |
}
|
sl@0
|
302 |
iBrushBitmap.EndDataAccess(ETrue);
|
sl@0
|
303 |
}
|
sl@0
|
304 |
|
sl@0
|
305 |
/**
|
sl@0
|
306 |
Draws an ellipse inside the given rectangle. Current pen settings apply.
|
sl@0
|
307 |
@param aRect The rectangle in which to draw the ellipse.
|
sl@0
|
308 |
*/
|
sl@0
|
309 |
void CSwDirectGdiEngine::EllipseOutline(const TRect& aRect)
|
sl@0
|
310 |
{
|
sl@0
|
311 |
TPoint tl,tr,bl,br;
|
sl@0
|
312 |
#if defined(_DEBUG)
|
sl@0
|
313 |
TRect deviceDestRect;
|
sl@0
|
314 |
iDrawDevice->GetDrawRect(deviceDestRect);
|
sl@0
|
315 |
#endif
|
sl@0
|
316 |
TRect clipRect(0,0,0,0);
|
sl@0
|
317 |
const CGraphicsContext::TDrawMode drawMode = GcDrawMode(iDrawMode);
|
sl@0
|
318 |
for(TInt count=0;count<iDefaultRegionPtr->Count();count++)
|
sl@0
|
319 |
{
|
sl@0
|
320 |
clipRect=(*iDefaultRegionPtr)[count];
|
sl@0
|
321 |
if(!clipRect.Intersects(aRect))
|
sl@0
|
322 |
continue;
|
sl@0
|
323 |
clipRect.Intersection(aRect);
|
sl@0
|
324 |
GRAPHICS_ASSERT_DEBUG(clipRect.iTl.iX >= deviceDestRect.iTl.iX, EDirectGdiPanicOutOfBounds);
|
sl@0
|
325 |
GRAPHICS_ASSERT_DEBUG(clipRect.iTl.iY >= deviceDestRect.iTl.iY, EDirectGdiPanicOutOfBounds);
|
sl@0
|
326 |
GRAPHICS_ASSERT_DEBUG(clipRect.iBr.iX <= deviceDestRect.iBr.iX, EDirectGdiPanicOutOfBounds);
|
sl@0
|
327 |
GRAPHICS_ASSERT_DEBUG(clipRect.iBr.iY <= deviceDestRect.iBr.iY, EDirectGdiPanicOutOfBounds);
|
sl@0
|
328 |
TSwDirectGdiEllipse ellipse;
|
sl@0
|
329 |
ellipse.Construct(aRect);
|
sl@0
|
330 |
TInt pattern=0;
|
sl@0
|
331 |
while(!ellipse.SingleStep(tl,tr,bl,br))
|
sl@0
|
332 |
{
|
sl@0
|
333 |
if(iPenStyle==DirectGdi::ESolidPen || (iDotMask&(1<<(pattern%iDotLength))))
|
sl@0
|
334 |
{
|
sl@0
|
335 |
if(tl.iY>=clipRect.iTl.iY && tl.iY<clipRect.iBr.iY)
|
sl@0
|
336 |
{
|
sl@0
|
337 |
if(tl.iX>=clipRect.iTl.iX && tl.iX<clipRect.iBr.iX)
|
sl@0
|
338 |
iDrawDevice->WriteRgb(tl.iX,tl.iY,iPenColor,drawMode);
|
sl@0
|
339 |
if(tr.iX>=clipRect.iTl.iX && tr.iX<clipRect.iBr.iX && tl.iX!=tr.iX)
|
sl@0
|
340 |
iDrawDevice->WriteRgb(tr.iX,tr.iY,iPenColor,drawMode);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
if(bl.iY>=clipRect.iTl.iY && bl.iY<clipRect.iBr.iY)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
if(bl.iX>=clipRect.iTl.iX && bl.iX<clipRect.iBr.iX)
|
sl@0
|
345 |
iDrawDevice->WriteRgb(bl.iX,bl.iY,iPenColor,drawMode);
|
sl@0
|
346 |
if(br.iX>=clipRect.iTl.iX && br.iX<clipRect.iBr.iX && bl.iX!=br.iX)
|
sl@0
|
347 |
iDrawDevice->WriteRgb(br.iX,br.iY,iPenColor,drawMode);
|
sl@0
|
348 |
}
|
sl@0
|
349 |
}
|
sl@0
|
350 |
pattern++;
|
sl@0
|
351 |
}
|
sl@0
|
352 |
if(tl.iY==bl.iY && tl.iY>=clipRect.iTl.iY && tl.iY<clipRect.iBr.iY)
|
sl@0
|
353 |
{
|
sl@0
|
354 |
if(tl.iX>=clipRect.iTl.iX && tl.iX<clipRect.iBr.iX)
|
sl@0
|
355 |
iDrawDevice->WriteRgb(tl.iX,tl.iY,iPenColor,drawMode);
|
sl@0
|
356 |
if(tr.iX>=clipRect.iTl.iX && tr.iX<clipRect.iBr.iX && tl.iX!=tr.iX)
|
sl@0
|
357 |
iDrawDevice->WriteRgb(tr.iX,tr.iY,iPenColor,drawMode);
|
sl@0
|
358 |
}
|
sl@0
|
359 |
iDrawDevice->UpdateRegion(clipRect);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
/**
|
sl@0
|
364 |
Draws an ellipse inside the given rectangle. Current pen settings apply.
|
sl@0
|
365 |
@param aRect The rectangle in which to draw the ellipse.
|
sl@0
|
366 |
*/
|
sl@0
|
367 |
void CSwDirectGdiEngine::EllipseOutlineWide(const TRect& aRect)
|
sl@0
|
368 |
{
|
sl@0
|
369 |
TRect rcpy(aRect);
|
sl@0
|
370 |
TPoint tl,tr,bl,br;
|
sl@0
|
371 |
TInt halfpenwidth=(iPenSize.iWidth+1)>>1;
|
sl@0
|
372 |
TInt halfpenheight=(iPenSize.iHeight+1)>>1;
|
sl@0
|
373 |
rcpy.Grow(halfpenwidth, halfpenheight);
|
sl@0
|
374 |
TInt dp=iDotParam;
|
sl@0
|
375 |
TRect clipRect(0,0,0,0);
|
sl@0
|
376 |
for(TInt count=0;count<iDefaultRegionPtr->Count();count++)
|
sl@0
|
377 |
{
|
sl@0
|
378 |
clipRect=(*iDefaultRegionPtr)[count];
|
sl@0
|
379 |
if(!clipRect.Intersects(rcpy))
|
sl@0
|
380 |
continue;
|
sl@0
|
381 |
clipRect.Intersection(rcpy);
|
sl@0
|
382 |
TSwDirectGdiEllipse ellipse;
|
sl@0
|
383 |
ellipse.Construct(aRect);
|
sl@0
|
384 |
iDotParam=Max(iPenSize.iWidth>>1,iPenSize.iHeight>>1);
|
sl@0
|
385 |
while(!ellipse.SingleStep(tl,tr,bl,br))
|
sl@0
|
386 |
{
|
sl@0
|
387 |
PenDrawClipped(tl, clipRect);
|
sl@0
|
388 |
PenDrawClipped(tr, clipRect);
|
sl@0
|
389 |
PenDrawClipped(bl, clipRect);
|
sl@0
|
390 |
PenDrawClipped(br, clipRect);
|
sl@0
|
391 |
iDotParam+=iDotDirection;
|
sl@0
|
392 |
}
|
sl@0
|
393 |
if(tl.iY==bl.iY)
|
sl@0
|
394 |
{
|
sl@0
|
395 |
PenDrawClipped(tl, clipRect);
|
sl@0
|
396 |
PenDrawClipped(tr, clipRect);
|
sl@0
|
397 |
}
|
sl@0
|
398 |
iDrawDevice->UpdateRegion(clipRect);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
iDotParam=dp;
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
/**
|
sl@0
|
404 |
Fills an ellipse inside the given rectangle. Current brush settings apply.
|
sl@0
|
405 |
@param aRect The rectangle in which to draw the ellipse.
|
sl@0
|
406 |
*/
|
sl@0
|
407 |
void CSwDirectGdiEngine::EllipseFill(const TRect& aRect)
|
sl@0
|
408 |
{
|
sl@0
|
409 |
TRect rcpy(aRect);
|
sl@0
|
410 |
if(iPenSize.iWidth==0 || iPenSize.iHeight==0)
|
sl@0
|
411 |
{
|
sl@0
|
412 |
rcpy.Grow(1,1);
|
sl@0
|
413 |
}
|
sl@0
|
414 |
TPoint tl,tr,bl,br;
|
sl@0
|
415 |
TRect clipRect(0,0,0,0);
|
sl@0
|
416 |
for(TInt count=0;count<iDefaultRegionPtr->Count();count++)
|
sl@0
|
417 |
{
|
sl@0
|
418 |
clipRect=(*iDefaultRegionPtr)[count];
|
sl@0
|
419 |
if(!clipRect.Intersects(rcpy))
|
sl@0
|
420 |
continue;
|
sl@0
|
421 |
clipRect.Intersection(rcpy);
|
sl@0
|
422 |
TSwDirectGdiEllipse ellipse;
|
sl@0
|
423 |
ellipse.Construct(rcpy);
|
sl@0
|
424 |
while(!ellipse.NextStep(tl,tr,bl,br))
|
sl@0
|
425 |
{
|
sl@0
|
426 |
tl.iX++;
|
sl@0
|
427 |
tr.iX--;
|
sl@0
|
428 |
bl.iX++;
|
sl@0
|
429 |
br.iX--;
|
sl@0
|
430 |
ClipFillLine(tl,tr, clipRect);
|
sl@0
|
431 |
ClipFillLine(bl,br, clipRect);
|
sl@0
|
432 |
}
|
sl@0
|
433 |
if(tl.iY==bl.iY)
|
sl@0
|
434 |
{
|
sl@0
|
435 |
tl.iX++;
|
sl@0
|
436 |
tr.iX--;
|
sl@0
|
437 |
ClipFillLine(tl,tr, clipRect);
|
sl@0
|
438 |
}
|
sl@0
|
439 |
iDrawDevice->UpdateRegion(clipRect);
|
sl@0
|
440 |
}
|
sl@0
|
441 |
}
|