sl@0
|
1 |
// Copyright (c) 2006-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 __REMOTEGC_H__
|
sl@0
|
17 |
#define __REMOTEGC_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <w32std.h>
|
sl@0
|
20 |
#include <s32mem.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
class CCommandBuffer;
|
sl@0
|
23 |
class RWsDrawableSource;
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
MCommandBufferObserver should be implemented by classes that want a notification when the commandbuffer has been updated.
|
sl@0
|
27 |
@publishedPartner
|
sl@0
|
28 |
@released*/
|
sl@0
|
29 |
class MCommandBufferObserver
|
sl@0
|
30 |
{
|
sl@0
|
31 |
public:
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
CommandBufferUpdated is called when the commandbuffer has been updated.
|
sl@0
|
34 |
|
sl@0
|
35 |
@param aDrawRect The rect that has been updated.
|
sl@0
|
36 |
@param aBoundingRect The boundingrect of the commands that has been updated.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
virtual void CommandBufferUpdated(const TRect& aDrawRect, const TRect& aBoundingRect) = 0;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Intercepts and logs all draw operations to a window-gc
|
sl@0
|
43 |
@publishedPartner
|
sl@0
|
44 |
@released*/
|
sl@0
|
45 |
NONSHARABLE_CLASS(CRemoteGc): public CWindowGc
|
sl@0
|
46 |
{
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
IMPORT_C static CRemoteGc* NewL(CWsScreenDevice* aDevice);
|
sl@0
|
49 |
IMPORT_C ~CRemoteGc();
|
sl@0
|
50 |
IMPORT_C void SetCommandBufferObserver(MCommandBufferObserver* aCommandBufferObserver);
|
sl@0
|
51 |
IMPORT_C void ResetCommandBuffer();
|
sl@0
|
52 |
IMPORT_C void ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer);
|
sl@0
|
53 |
IMPORT_C void BeginDraw(const TRect& aRect);
|
sl@0
|
54 |
IMPORT_C void EndDraw();
|
sl@0
|
55 |
|
sl@0
|
56 |
public: // inherited methods
|
sl@0
|
57 |
|
sl@0
|
58 |
// CWindowGc
|
sl@0
|
59 |
void Activate(RDrawableWindow &aDevice);
|
sl@0
|
60 |
void Deactivate();
|
sl@0
|
61 |
void BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap);
|
sl@0
|
62 |
void BitBlt(const TPoint &aDestination, const CWsBitmap *aBitmap, const TRect &aSource);
|
sl@0
|
63 |
void BitBltMasked(const TPoint& aPoint, const CWsBitmap *aBitmap, const TRect& aSourceRect, const CWsBitmap *aMaskBitmap, TBool aInvertMask);
|
sl@0
|
64 |
|
sl@0
|
65 |
// CBitmapContext
|
sl@0
|
66 |
void Clear();
|
sl@0
|
67 |
void Clear(const TRect &aRect);
|
sl@0
|
68 |
void CopyRect(const TPoint &anOffset, const TRect &aRect);
|
sl@0
|
69 |
void BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap);
|
sl@0
|
70 |
void BitBlt(const TPoint &aDestination, const CFbsBitmap *aBitmap, const TRect &aSource);
|
sl@0
|
71 |
void BitBltMasked(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask);
|
sl@0
|
72 |
void SetFaded(TBool aFaded);
|
sl@0
|
73 |
void SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap);
|
sl@0
|
74 |
TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt);
|
sl@0
|
75 |
TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt);
|
sl@0
|
76 |
|
sl@0
|
77 |
// CGraphicsContext
|
sl@0
|
78 |
void SetOrigin(const TPoint &aPoint);
|
sl@0
|
79 |
void SetDrawMode(TDrawMode aDrawingMode);
|
sl@0
|
80 |
void SetClippingRect(const TRect& aRect);
|
sl@0
|
81 |
void CancelClippingRect();
|
sl@0
|
82 |
void Reset();
|
sl@0
|
83 |
void UseFont(const CFont *aFont);
|
sl@0
|
84 |
void DiscardFont();
|
sl@0
|
85 |
void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
|
sl@0
|
86 |
void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
|
sl@0
|
87 |
void SetWordJustification(TInt aExcessWidth,TInt aNumGaps);
|
sl@0
|
88 |
void SetCharJustification(TInt aExcessWidth,TInt aNumChars);
|
sl@0
|
89 |
void SetPenColor(const TRgb &aColor);
|
sl@0
|
90 |
void SetPenStyle(TPenStyle aPenStyle);
|
sl@0
|
91 |
void SetPenSize(const TSize& aSize);
|
sl@0
|
92 |
void SetBrushColor(const TRgb &aColor);
|
sl@0
|
93 |
void SetBrushStyle(TBrushStyle aBrushStyle);
|
sl@0
|
94 |
void SetBrushOrigin(const TPoint &aOrigin);
|
sl@0
|
95 |
void UseBrushPattern(const CFbsBitmap *aDevice);
|
sl@0
|
96 |
void DiscardBrushPattern();
|
sl@0
|
97 |
void MoveTo(const TPoint &aPoint);
|
sl@0
|
98 |
void MoveBy(const TPoint &aPoint);
|
sl@0
|
99 |
void Plot(const TPoint &aPoint);
|
sl@0
|
100 |
void DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
|
sl@0
|
101 |
void DrawLine(const TPoint &aPoint1,const TPoint &aPoint2);
|
sl@0
|
102 |
void DrawLineTo(const TPoint &aPoint);
|
sl@0
|
103 |
void DrawLineBy(const TPoint &aPoint);
|
sl@0
|
104 |
void DrawPolyLine(const CArrayFix<TPoint> *aPointList);
|
sl@0
|
105 |
void DrawPolyLine(const TPoint* aPointList, TInt aNumPoints);
|
sl@0
|
106 |
void DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd);
|
sl@0
|
107 |
void DrawEllipse(const TRect &aRect);
|
sl@0
|
108 |
void DrawRect(const TRect &aRect);
|
sl@0
|
109 |
void DrawRoundRect(const TRect &aRect,const TSize &aEllipse);
|
sl@0
|
110 |
TInt DrawPolygon(const CArrayFix<TPoint> *aPointList, TFillRule aFillRule);
|
sl@0
|
111 |
TInt DrawPolygon(const TPoint* aPointList,TInt aNumPoints, TFillRule aFillRule);
|
sl@0
|
112 |
void DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice);
|
sl@0
|
113 |
void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice);
|
sl@0
|
114 |
void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect);
|
sl@0
|
115 |
void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask);
|
sl@0
|
116 |
void DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask);
|
sl@0
|
117 |
|
sl@0
|
118 |
// Required as not all DrawText and DrawTextVertical functions are implemented in CRemoteGc
|
sl@0
|
119 |
using CWindowGc::DrawText;
|
sl@0
|
120 |
using CWindowGc::DrawTextVertical;
|
sl@0
|
121 |
|
sl@0
|
122 |
void DrawText(const TDesC &aBuf,const TPoint &aPos);
|
sl@0
|
123 |
void DrawText(const TDesC &aBuf,const TRect &aBox,TInt aBaselineOffset, TTextAlign aHoriz, TInt aLeftMrg);
|
sl@0
|
124 |
void DrawText(const TDesC& aText,const TPoint& aPosition,const TDrawTextParam& aParam);
|
sl@0
|
125 |
void MapColors(const TRect& aRect,const TRgb* aColors, TInt aNumPairs, TBool aMapForwards);
|
sl@0
|
126 |
TInt SetClippingRegion(const TRegion &aRegion);
|
sl@0
|
127 |
void CancelClippingRegion();
|
sl@0
|
128 |
void DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp);
|
sl@0
|
129 |
void DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin);
|
sl@0
|
130 |
void DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect);
|
sl@0
|
131 |
void DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData);
|
sl@0
|
132 |
void SetDitherOrigin(const TPoint& aPoint);
|
sl@0
|
133 |
void SetOpaque(TBool aDrawOpaque=ETrue);
|
sl@0
|
134 |
protected:
|
sl@0
|
135 |
TInt APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput);
|
sl@0
|
136 |
private:
|
sl@0
|
137 |
CRemoteGc(CWsScreenDevice* aDevice);
|
sl@0
|
138 |
void ConstructL();
|
sl@0
|
139 |
TInt APIExGetUnderlineMetrics(TAny*& aOutput);
|
sl@0
|
140 |
TInt APIExSetShadowColor(TAny* aShadowColor);
|
sl@0
|
141 |
TInt APIExGetShadowColor(TAny*& aOutput);
|
sl@0
|
142 |
// New DrawText API's that take in context
|
sl@0
|
143 |
TInt APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TPoint &aPos);
|
sl@0
|
144 |
TInt APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz=ELeft,TInt aLeftMrg=0);
|
sl@0
|
145 |
|
sl@0
|
146 |
TInt APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp);
|
sl@0
|
147 |
TInt APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0);
|
sl@0
|
148 |
TInt APIExInterface(TAny*& aInterface, TUid aInterfaceId);
|
sl@0
|
149 |
|
sl@0
|
150 |
void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone);
|
sl@0
|
151 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone);
|
sl@0
|
152 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone);
|
sl@0
|
153 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam);
|
sl@0
|
154 |
|
sl@0
|
155 |
private:
|
sl@0
|
156 |
TRect iDrawRect;
|
sl@0
|
157 |
TRect iBoundingRect;
|
sl@0
|
158 |
TBool iHasBitmapCommand;
|
sl@0
|
159 |
CCommandBuffer* iCommandBuffer;
|
sl@0
|
160 |
MCommandBufferObserver* iCommandBufferObserver;
|
sl@0
|
161 |
#ifdef SYMBIAN_GRAPHICS_GCE
|
sl@0
|
162 |
CFbsFont *iFont;
|
sl@0
|
163 |
TRgb iShadowColor;
|
sl@0
|
164 |
class CPimpl;
|
sl@0
|
165 |
friend class CPimpl;
|
sl@0
|
166 |
CPimpl* iRemoteGcPimpl;
|
sl@0
|
167 |
#endif
|
sl@0
|
168 |
};
|
sl@0
|
169 |
|
sl@0
|
170 |
#endif // __REMOTEGC_H__
|