sl@0
|
1 |
// Copyright (c) 2008-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 __GRAPHICSCONTEXTCHECKER_H__
|
sl@0
|
17 |
#define __GRAPHICSCONTEXTCHECKER_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <graphics/wsgraphicscontext.h>
|
sl@0
|
20 |
#include <graphics/wscursor.h>
|
sl@0
|
21 |
#include <graphics/wsgraphicdrawer.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
class CGraphicsContextChecker : public CBase,
|
sl@0
|
24 |
public MWsGraphicsContext,
|
sl@0
|
25 |
public MWsTextCursor,
|
sl@0
|
26 |
public MWsFader,
|
sl@0
|
27 |
public MWsDrawAnnotationObserver
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
static CGraphicsContextChecker* NewL(MWsGraphicDrawerEnvironment& aEnv);
|
sl@0
|
31 |
~CGraphicsContextChecker();
|
sl@0
|
32 |
|
sl@0
|
33 |
void SetGraphicsContext(MWsGraphicsContext* aGraphicsContext);
|
sl@0
|
34 |
const MWsGraphicsContext* GraphicsContext() const;
|
sl@0
|
35 |
void SetTextCursor(MWsTextCursor* aTextCursor);
|
sl@0
|
36 |
const MWsTextCursor* TextCursor() const;
|
sl@0
|
37 |
void SetFader(MWsFader* aFader);
|
sl@0
|
38 |
const MWsFader* Fader() const;
|
sl@0
|
39 |
|
sl@0
|
40 |
public: //MWsObjectProvider
|
sl@0
|
41 |
TAny* ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
42 |
public: //MWsGraphicsContext
|
sl@0
|
43 |
void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap);
|
sl@0
|
44 |
void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
|
sl@0
|
45 |
void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
|
sl@0
|
46 |
void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos);
|
sl@0
|
47 |
void ResetClippingRegion();
|
sl@0
|
48 |
void Clear();
|
sl@0
|
49 |
void Clear(const TRect& aRect);
|
sl@0
|
50 |
void ResetBrushPattern();
|
sl@0
|
51 |
void ResetFont();
|
sl@0
|
52 |
void DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
|
sl@0
|
53 |
void DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
|
sl@0
|
54 |
void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap);
|
sl@0
|
55 |
void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
|
sl@0
|
56 |
void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
|
sl@0
|
57 |
void DrawRoundRect(const TRect& aRect, const TSize& aEllipse);
|
sl@0
|
58 |
void DrawPolyLine(const TArray<TPoint>& aPointList);
|
sl@0
|
59 |
void DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList);
|
sl@0
|
60 |
void DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule=EAlternate);
|
sl@0
|
61 |
void DrawEllipse(const TRect& aRect);
|
sl@0
|
62 |
void DrawLine(const TPoint& aStart, const TPoint& aEnd);
|
sl@0
|
63 |
void DrawLineTo(const TPoint& aPoint);
|
sl@0
|
64 |
void DrawLineBy(const TPoint& aVector);
|
sl@0
|
65 |
void DrawRect(const TRect& aRect);
|
sl@0
|
66 |
void DrawText(const TDesC& aText, const TTextParameters* aParam);
|
sl@0
|
67 |
void DrawText(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition);
|
sl@0
|
68 |
void DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect);
|
sl@0
|
69 |
void DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset, TTextAlign aHrz=ELeft, TInt aMargin=0);
|
sl@0
|
70 |
void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp);
|
sl@0
|
71 |
void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition, TBool aUp);
|
sl@0
|
72 |
void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TBool aUp);
|
sl@0
|
73 |
void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TBool aUp, TTextAlign aVert=ELeft, TInt aMargin=0);
|
sl@0
|
74 |
void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TInt aTextWidth, TBool aUp, TTextAlign aVert=ELeft, TInt aMargin=0);
|
sl@0
|
75 |
void MoveTo(const TPoint& aPoint);
|
sl@0
|
76 |
void MoveBy(const TPoint& aVector);
|
sl@0
|
77 |
void Plot(const TPoint& aPoint);
|
sl@0
|
78 |
void Reset();
|
sl@0
|
79 |
void SetBrushColor(const TRgb& aColor);
|
sl@0
|
80 |
void SetBrushOrigin(const TPoint& aOrigin);
|
sl@0
|
81 |
void SetBrushStyle(TBrushStyle aBrushStyle);
|
sl@0
|
82 |
void SetClippingRegion(const TRegion& aRegion);
|
sl@0
|
83 |
void SetDrawMode(TDrawMode aDrawMode);
|
sl@0
|
84 |
void SetOrigin(const TPoint& aPoint = TPoint(0, 0));
|
sl@0
|
85 |
void SetPenColor(const TRgb& aColor);
|
sl@0
|
86 |
void SetPenStyle(TPenStyle aPenStyle);
|
sl@0
|
87 |
void SetPenSize(const TSize& aSize);
|
sl@0
|
88 |
void SetTextShadowColor(const TRgb& aColor);
|
sl@0
|
89 |
void SetCharJustification(TInt aExcessWidth, TInt aNumChars);
|
sl@0
|
90 |
void SetWordJustification(TInt aExcessWidth, TInt aNumGaps);
|
sl@0
|
91 |
void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
|
sl@0
|
92 |
void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
|
sl@0
|
93 |
void SetBrushPattern(const CFbsBitmap& aBitmap);
|
sl@0
|
94 |
void SetBrushPattern(TInt aFbsBitmapHandle);
|
sl@0
|
95 |
void SetFont(const CFont* aFont);
|
sl@0
|
96 |
void CopyRect(const TPoint& aOffset, const TRect& aRect);
|
sl@0
|
97 |
void UpdateJustification(const TDesC& aText, const TTextParameters* aParam);
|
sl@0
|
98 |
void UpdateJustificationVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp);
|
sl@0
|
99 |
void SetFontNoDuplicate(const CFont* aFont);
|
sl@0
|
100 |
TBool HasBrushPattern() const;
|
sl@0
|
101 |
TBool HasFont() const;
|
sl@0
|
102 |
TRgb BrushColor() const;
|
sl@0
|
103 |
TRgb PenColor() const;
|
sl@0
|
104 |
TRgb TextShadowColor() const;
|
sl@0
|
105 |
TInt GetError();
|
sl@0
|
106 |
TPoint Origin() const;
|
sl@0
|
107 |
const TRegion& ClippingRegion();
|
sl@0
|
108 |
TInt Push();
|
sl@0
|
109 |
void Pop();
|
sl@0
|
110 |
public: //MWsTextCursor
|
sl@0
|
111 |
void DrawTextCursor(const TTextCursorInfo& aTextCursorInfo);
|
sl@0
|
112 |
public: //MWsFader
|
sl@0
|
113 |
void SetFadingParameters(const TDesC8& aData);
|
sl@0
|
114 |
void FadeArea(const TRegion& aRegion);
|
sl@0
|
115 |
public: //MWsDrawAnnotationObserver
|
sl@0
|
116 |
void WindowRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
|
sl@0
|
117 |
void WindowRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
|
sl@0
|
118 |
void WindowAnimRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
|
sl@0
|
119 |
void WindowAnimRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
|
sl@0
|
120 |
void SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
|
sl@0
|
121 |
void SpriteRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
|
sl@0
|
122 |
void SpriteFlash(const MWsWindowTreeNode& aWindowTreeNode, TBool aFlashOn);
|
sl@0
|
123 |
void SegmentRedrawStart(const TRegion& aRegion);
|
sl@0
|
124 |
void SegmentRedrawEnd();
|
sl@0
|
125 |
|
sl@0
|
126 |
private:
|
sl@0
|
127 |
enum TDrawingTarget
|
sl@0
|
128 |
{
|
sl@0
|
129 |
ETargetNone,
|
sl@0
|
130 |
ETargetWindow,
|
sl@0
|
131 |
ETargetWindowAnim,
|
sl@0
|
132 |
ETargetWindowSprite,
|
sl@0
|
133 |
ETargetFloatingSprite,
|
sl@0
|
134 |
};
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
CGraphicsContextChecker();
|
sl@0
|
137 |
private:
|
sl@0
|
138 |
MWsGraphicsContext* iContext;
|
sl@0
|
139 |
MWsTextCursor* iTextCursor;
|
sl@0
|
140 |
MWsFader* iFader;
|
sl@0
|
141 |
TDrawingTarget iTarget;
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
#endif //__GRAPHICSCONTEXTCHECKER_H__
|