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 |
#ifndef SWDIRECTGDIELLIPSE_H_
|
sl@0
|
17 |
#define SWDIRECTGDIELLIPSE_H_
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalComponent
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32std.h>
|
sl@0
|
25 |
#include <gdi.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
A utility class to efficiently draw and fill ellipses
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
class TSwDirectGdiEllipse
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Enumeration for the ellipse production life cycle
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
enum TEllipseStatus
|
sl@0
|
37 |
{
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Ellipse has been initialised but has no area
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
EInitialised,
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
The ellipse is drawn as two parabolas. These are in two sectors, the top and bottom
|
sl@0
|
44 |
half of the rectangle. The first sector means the top parabola has been produced.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
EFirstSector,
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
The parabola that occupies the bottom half of the rectangle has been produced.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
ESecondSector,
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
The ellipse is complete
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
EComplete,
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
The ellipse has either a height or width of two units or less
|
sl@0
|
57 |
and so takes the appearance of a line
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
ELine
|
sl@0
|
60 |
};
|
sl@0
|
61 |
public:
|
sl@0
|
62 |
void Construct(const TRect& aRect);
|
sl@0
|
63 |
TBool SingleStep(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
|
sl@0
|
64 |
TBool NextStep(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
|
sl@0
|
65 |
TPoint Intersection(const TRect& aRect,const TPoint& aPoint);
|
sl@0
|
66 |
protected:
|
sl@0
|
67 |
TBool Output(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
|
sl@0
|
68 |
protected:
|
sl@0
|
69 |
TEllipseStatus iStatus;
|
sl@0
|
70 |
TInt iA;
|
sl@0
|
71 |
TInt iB;
|
sl@0
|
72 |
TInt64 iASquared;
|
sl@0
|
73 |
TInt64 iBSquared;
|
sl@0
|
74 |
TInt64 iASquBSqu;
|
sl@0
|
75 |
TInt iX;
|
sl@0
|
76 |
TInt iY;
|
sl@0
|
77 |
TInt iXAdj;
|
sl@0
|
78 |
TInt iYAdj;
|
sl@0
|
79 |
TPoint iOffset;
|
sl@0
|
80 |
TInt64 iD1;
|
sl@0
|
81 |
TInt64 iD2;
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif /*SWDIRECTGDIELLIPSE_H_*/
|