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 |
#include <graphics/remotegc.h>
|
sl@0
|
17 |
#include <graphics/commandbuffer.h>
|
sl@0
|
18 |
#include <graphics/wsdrawresource.h>
|
sl@0
|
19 |
#include <graphics/gdi/gdiconsts.h>
|
sl@0
|
20 |
#include <graphics/gdi/gdistructs.h>
|
sl@0
|
21 |
#include "graphics/windowserverconstants.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
#define KDefaultShadowColor KRgbGray
|
sl@0
|
24 |
|
sl@0
|
25 |
class CRemoteGc::CPimpl : public CBase, public MWsDrawResource
|
sl@0
|
26 |
{
|
sl@0
|
27 |
public:
|
sl@0
|
28 |
CPimpl(CRemoteGc& aGc) : iGc(aGc) {}
|
sl@0
|
29 |
public: //from MWsDrawResource
|
sl@0
|
30 |
void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
iGc.DrawResource(aPos, aSource, aRotation);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
iGc.DrawResource(aDestRect, aSource, aRotation);
|
sl@0
|
37 |
}
|
sl@0
|
38 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
iGc.DrawResource(aDestRect, aSource, aSrcRect, aRotation);
|
sl@0
|
41 |
}
|
sl@0
|
42 |
void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
iGc.DrawResource(aDestRect, aSource, aParam);
|
sl@0
|
45 |
}
|
sl@0
|
46 |
private:
|
sl@0
|
47 |
CRemoteGc& iGc;
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
Creates a new remotegc.
|
sl@0
|
52 |
|
sl@0
|
53 |
@param aDevice The windowserver screendevice to use.
|
sl@0
|
54 |
@param aCommandBufferObserver Pointer to a commandbufferobserver.
|
sl@0
|
55 |
@return A pointer to a new instance of CRemoteGc.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
EXPORT_C CRemoteGc* CRemoteGc::NewL(CWsScreenDevice* aDevice)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
CRemoteGc* remoteGc = new (ELeave) CRemoteGc(aDevice);
|
sl@0
|
60 |
CleanupStack::PushL(remoteGc);
|
sl@0
|
61 |
remoteGc->ConstructL();
|
sl@0
|
62 |
CleanupStack::Pop(remoteGc);
|
sl@0
|
63 |
return remoteGc;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
CRemoteGc::CRemoteGc(CWsScreenDevice* aDevice) : CWindowGc(aDevice), iCommandBufferObserver(NULL), iFont(NULL), iShadowColor(KDefaultShadowColor)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
EXPORT_C CRemoteGc::~CRemoteGc()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
delete iCommandBuffer;
|
sl@0
|
73 |
delete iRemoteGcPimpl;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
void CRemoteGc::ConstructL()
|
sl@0
|
77 |
{
|
sl@0
|
78 |
User::LeaveIfError(CWindowGc::Construct());
|
sl@0
|
79 |
iCommandBuffer = CCommandBuffer::NewL();
|
sl@0
|
80 |
iRemoteGcPimpl = new(ELeave) CPimpl(*this);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C void CRemoteGc::SetCommandBufferObserver(MCommandBufferObserver* aCommandBufferObserver)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
iCommandBufferObserver = aCommandBufferObserver;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
Resets the commandbuffer.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
EXPORT_C void CRemoteGc::ResetCommandBuffer()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
iCommandBuffer->Reset();
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
|
sl@0
|
98 |
If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
|
sl@0
|
99 |
otherwise only sections which has not been externalized before will be externalized. Note that if only
|
sl@0
|
100 |
not externalized sections is asked for, the flag will be reset on that section so next call
|
sl@0
|
101 |
to ExternalizeLC will not externalize that section.
|
sl@0
|
102 |
|
sl@0
|
103 |
@param aMsgBuf A buffer used to externalize the commandbuffer to.
|
sl@0
|
104 |
@param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
EXPORT_C void CRemoteGc::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
return iCommandBuffer->ExternalizeL(aMsgBuf, aEntireBuffer);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
Prepares the remotegc to be drawn to.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aRect The rect to be drawn.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
EXPORT_C void CRemoteGc::BeginDraw(const TRect& aRect)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
iDrawRect = aRect;
|
sl@0
|
119 |
iBoundingRect = TRect();
|
sl@0
|
120 |
iHasBitmapCommand = EFalse;
|
sl@0
|
121 |
iCommandBuffer->Prepare(aRect);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
Finishes the current redraw.
|
sl@0
|
126 |
This method should be called when drawing to the remotegc is complete.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
EXPORT_C void CRemoteGc::EndDraw()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
iBoundingRect.Intersection(iDrawRect);
|
sl@0
|
131 |
const TInt err = iCommandBuffer->Finish(iDrawRect, iBoundingRect, iHasBitmapCommand);
|
sl@0
|
132 |
|
sl@0
|
133 |
if(iCommandBufferObserver && !err)
|
sl@0
|
134 |
iCommandBufferObserver->CommandBufferUpdated(iDrawRect, iBoundingRect);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
void CRemoteGc::Activate(RDrawableWindow &aDevice)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
BeginDraw(aDevice.GetDrawRect());
|
sl@0
|
140 |
CWindowGc::Activate(aDevice);
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
void CRemoteGc::Deactivate()
|
sl@0
|
144 |
{
|
sl@0
|
145 |
CWindowGc::Deactivate();
|
sl@0
|
146 |
iFont = NULL;
|
sl@0
|
147 |
iShadowColor = KDefaultShadowColor;
|
sl@0
|
148 |
EndDraw();
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
void CRemoteGc::Clear()
|
sl@0
|
152 |
{
|
sl@0
|
153 |
iCommandBuffer->Write<TDrawCode>(ECommandClear);
|
sl@0
|
154 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
void CRemoteGc::Clear(const TRect& aRect)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
iCommandBuffer->Write<TDrawCode>(ECommandClearRect);
|
sl@0
|
160 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
161 |
iBoundingRect.BoundingRect(aRect);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
void CRemoteGc::CopyRect(const TPoint &anOffset, const TRect &aRect)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
iCommandBuffer->Write<TDrawCode>(ECommandCopyRect);
|
sl@0
|
167 |
iCommandBuffer->Write<TPoint>(anOffset);
|
sl@0
|
168 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
169 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
void CRemoteGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
__ASSERT_DEBUG(aBitmap, User::Invariant());
|
sl@0
|
175 |
if(aBitmap)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
iCommandBuffer->Write<TDrawCode>(ECommandBitBlt1);
|
sl@0
|
178 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
179 |
iCommandBuffer->Write<TInt>(aBitmap->Handle());
|
sl@0
|
180 |
iBoundingRect.BoundingRect(TRect(aPoint, aBitmap->SizeInPixels()));
|
sl@0
|
181 |
iHasBitmapCommand = ETrue;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
void CRemoteGc::BitBlt(const TPoint &aDestination, const CFbsBitmap *aBitmap, const TRect &aSource)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
__ASSERT_DEBUG(aBitmap, User::Invariant());
|
sl@0
|
188 |
if(aBitmap)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
iCommandBuffer->Write<TDrawCode>(ECommandBitBlt2);
|
sl@0
|
191 |
iCommandBuffer->Write<TPoint>(aDestination);
|
sl@0
|
192 |
iCommandBuffer->Write<TInt>(aBitmap->Handle());
|
sl@0
|
193 |
iCommandBuffer->Write<TRect>(aSource);
|
sl@0
|
194 |
iBoundingRect.BoundingRect(TRect(aDestination, aSource.Size()));
|
sl@0
|
195 |
iHasBitmapCommand = ETrue;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
__ASSERT_DEBUG(aBitmap && aMaskBitmap, User::Invariant());
|
sl@0
|
202 |
if(aBitmap && aMaskBitmap)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
iCommandBuffer->Write<TDrawCode>(ECommandBitBltMasked);
|
sl@0
|
205 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
206 |
iCommandBuffer->Write<TInt>(aBitmap->Handle());
|
sl@0
|
207 |
iCommandBuffer->Write<TRect>(aSourceRect);
|
sl@0
|
208 |
iCommandBuffer->Write<TInt>(aMaskBitmap->Handle());
|
sl@0
|
209 |
iCommandBuffer->Write<TBool>(aInvertMask);
|
sl@0
|
210 |
iBoundingRect.BoundingRect(TRect(aPoint, aSourceRect.Size()));
|
sl@0
|
211 |
iHasBitmapCommand = ETrue;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
void CRemoteGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
BitBlt(aPoint, reinterpret_cast<const CFbsBitmap*>(aBitmap));
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
void CRemoteGc::BitBlt(const TPoint &aDestination, const CWsBitmap *aBitmap, const TRect &aSource)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
BitBlt(aDestination, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSource);
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CWsBitmap *aBitmap, const TRect& aSourceRect, const CWsBitmap *aMaskBitmap, TBool aInvertMask)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
BitBltMasked(aPoint, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSourceRect, reinterpret_cast<const CFbsBitmap*>(aMaskBitmap), aInvertMask);
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
void CRemoteGc::SetFaded(TBool /*aFaded*/)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
// deprecated
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
void CRemoteGc::SetFadingParameters(TUint8 /*aBlackMap*/,TUint8 /*aWhiteMap*/)
|
sl@0
|
236 |
{
|
sl@0
|
237 |
// deprecated
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
iCommandBuffer->Write<TDrawCode>(ECommandAlphaBlendBitmaps);
|
sl@0
|
243 |
iCommandBuffer->Write<TPoint>(aDestPt);
|
sl@0
|
244 |
iCommandBuffer->Write<TInt>(aSrcBmp->Handle());
|
sl@0
|
245 |
iCommandBuffer->Write<TRect>(aSrcRect);
|
sl@0
|
246 |
iCommandBuffer->Write<TInt>(aAlphaBmp->Handle());
|
sl@0
|
247 |
iCommandBuffer->Write<TPoint>(aAlphaPt);
|
sl@0
|
248 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
249 |
iHasBitmapCommand = ETrue;
|
sl@0
|
250 |
return KErrNone;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
return AlphaBlendBitmaps(aDestPt, reinterpret_cast<const CFbsBitmap*>(aSrcBmp), aSrcRect, reinterpret_cast<const CFbsBitmap*>(aAlphaBmp), aAlphaPt);
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
void CRemoteGc::SetOrigin(const TPoint &aPoint)
|
sl@0
|
259 |
{
|
sl@0
|
260 |
iCommandBuffer->Write<TDrawCode>(ECommandSetOrigin);
|
sl@0
|
261 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
void CRemoteGc::SetDrawMode(TDrawMode aDrawingMode)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
iCommandBuffer->Write<TDrawCode>(ECommandSetDrawMode);
|
sl@0
|
267 |
iCommandBuffer->Write<TDrawMode>(aDrawingMode);
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
void CRemoteGc::SetClippingRect(const TRect& aRect)
|
sl@0
|
271 |
{
|
sl@0
|
272 |
iCommandBuffer->Write<TDrawCode>(ECommandSetClippingRect);
|
sl@0
|
273 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
void CRemoteGc::CancelClippingRect()
|
sl@0
|
277 |
{
|
sl@0
|
278 |
iCommandBuffer->Write<TDrawCode>(ECommandCancelClippingRect);
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
void CRemoteGc::Reset()
|
sl@0
|
282 |
{
|
sl@0
|
283 |
iCommandBuffer->Write<TDrawCode>(ECommandReset);
|
sl@0
|
284 |
iFont = NULL;
|
sl@0
|
285 |
iShadowColor = KDefaultShadowColor;
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
void CRemoteGc::UseFont(const CFont *aFont)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
if (iFont!=(CFbsFont *)aFont)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
iFont=(CFbsFont *)aFont;
|
sl@0
|
293 |
iCommandBuffer->Write<TDrawCode>(ECommandUseFont);
|
sl@0
|
294 |
iCommandBuffer->Write<TInt>(((CFbsFont*)aFont)->Handle());
|
sl@0
|
295 |
}
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
void CRemoteGc::DiscardFont()
|
sl@0
|
299 |
{
|
sl@0
|
300 |
iFont = NULL;
|
sl@0
|
301 |
iCommandBuffer->Write<TDrawCode>(ECommandDiscardFont);
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
void CRemoteGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
|
sl@0
|
305 |
{
|
sl@0
|
306 |
iCommandBuffer->Write<TDrawCode>(ECommandSetUnderlineStyle);
|
sl@0
|
307 |
iCommandBuffer->Write<TFontUnderline>(aUnderlineStyle);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
void CRemoteGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
|
sl@0
|
311 |
{
|
sl@0
|
312 |
iCommandBuffer->Write<TDrawCode>(ECommandSetStrikethroughStyle);
|
sl@0
|
313 |
iCommandBuffer->Write<TFontStrikethrough>(aStrikethroughStyle);
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
void CRemoteGc::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
iCommandBuffer->Write<TDrawCode>(ECommandSetWordJustification);
|
sl@0
|
319 |
iCommandBuffer->Write<TInt>(aExcessWidth);
|
sl@0
|
320 |
iCommandBuffer->Write<TInt>(aNumGaps);
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
void CRemoteGc::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
iCommandBuffer->Write<TDrawCode>(ECommandSetCharJustification);
|
sl@0
|
326 |
iCommandBuffer->Write<TInt>(aExcessWidth);
|
sl@0
|
327 |
iCommandBuffer->Write<TInt>(aNumChars);
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
void CRemoteGc::SetPenColor(const TRgb &aColor)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
iCommandBuffer->Write<TDrawCode>(ECommandSetPenColor);
|
sl@0
|
333 |
iCommandBuffer->Write<TRgb>(aColor);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
void CRemoteGc::SetPenStyle(TPenStyle aPenStyle)
|
sl@0
|
337 |
{
|
sl@0
|
338 |
iCommandBuffer->Write<TDrawCode>(ECommandSetPenStyle);
|
sl@0
|
339 |
iCommandBuffer->Write<TPenStyle>(aPenStyle);
|
sl@0
|
340 |
}
|
sl@0
|
341 |
|
sl@0
|
342 |
void CRemoteGc::SetPenSize(const TSize& aSize)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
iCommandBuffer->Write<TDrawCode>(ECommandSetPenSize);
|
sl@0
|
345 |
iCommandBuffer->Write<TSize>(aSize);
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
void CRemoteGc::SetBrushColor(const TRgb &aColor)
|
sl@0
|
349 |
{
|
sl@0
|
350 |
iCommandBuffer->Write<TDrawCode>(ECommandSetBrushColor);
|
sl@0
|
351 |
iCommandBuffer->Write<TRgb>(aColor);
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
void CRemoteGc::SetBrushStyle(TBrushStyle aBrushStyle)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
iCommandBuffer->Write<TDrawCode>(ECommandSetBrushStyle);
|
sl@0
|
357 |
iCommandBuffer->Write<TBrushStyle>(aBrushStyle);
|
sl@0
|
358 |
}
|
sl@0
|
359 |
|
sl@0
|
360 |
void CRemoteGc::SetBrushOrigin(const TPoint &aOrigin)
|
sl@0
|
361 |
{
|
sl@0
|
362 |
iCommandBuffer->Write<TDrawCode>(ECommandSetBrushOrigin);
|
sl@0
|
363 |
iCommandBuffer->Write<TPoint>(aOrigin);
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
void CRemoteGc::UseBrushPattern(const CFbsBitmap *aDevice)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
iCommandBuffer->Write<TDrawCode>(ECommandUseBrushPattern);
|
sl@0
|
369 |
iCommandBuffer->Write<TInt>(aDevice->Handle());
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
void CRemoteGc::DiscardBrushPattern()
|
sl@0
|
373 |
{
|
sl@0
|
374 |
iCommandBuffer->Write<TDrawCode>(ECommandDiscardBrushPattern);
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
void CRemoteGc::MoveTo(const TPoint &aPoint)
|
sl@0
|
378 |
{
|
sl@0
|
379 |
iCommandBuffer->Write<TDrawCode>(ECommandMoveTo);
|
sl@0
|
380 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
void CRemoteGc::MoveBy(const TPoint &aPoint)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
iCommandBuffer->Write<TDrawCode>(ECommandMoveBy);
|
sl@0
|
386 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
void CRemoteGc::Plot(const TPoint &aPoint)
|
sl@0
|
390 |
{
|
sl@0
|
391 |
iCommandBuffer->Write<TDrawCode>(ECommandPlot);
|
sl@0
|
392 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
393 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
void CRemoteGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawArc);
|
sl@0
|
399 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
400 |
iCommandBuffer->Write<TPoint>(aStart);
|
sl@0
|
401 |
iCommandBuffer->Write<TPoint>(aEnd);
|
sl@0
|
402 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
void CRemoteGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawLine);
|
sl@0
|
408 |
iCommandBuffer->Write<TPoint>(aPoint1);
|
sl@0
|
409 |
iCommandBuffer->Write<TPoint>(aPoint2);
|
sl@0
|
410 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
411 |
}
|
sl@0
|
412 |
|
sl@0
|
413 |
void CRemoteGc::DrawLineTo(const TPoint &aPoint)
|
sl@0
|
414 |
{
|
sl@0
|
415 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawLineTo);
|
sl@0
|
416 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
417 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
void CRemoteGc::DrawLineBy(const TPoint &aPoint)
|
sl@0
|
421 |
{
|
sl@0
|
422 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawLineBy);
|
sl@0
|
423 |
iCommandBuffer->Write<TPoint>(aPoint);
|
sl@0
|
424 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
void CRemoteGc::DrawPolyLine(const CArrayFix<TPoint> *aPointList)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawPolyLine);
|
sl@0
|
430 |
iCommandBuffer->Write<TInt>(aPointList->Count()); // Write number of points
|
sl@0
|
431 |
|
sl@0
|
432 |
const TInt count = aPointList->Count();
|
sl@0
|
433 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
434 |
{
|
sl@0
|
435 |
iCommandBuffer->Write<TPoint>(aPointList->At(i));
|
sl@0
|
436 |
}
|
sl@0
|
437 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
void CRemoteGc::DrawPolyLine(const TPoint* aPointList, TInt aNumPoints)
|
sl@0
|
441 |
{
|
sl@0
|
442 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawPolyLine);
|
sl@0
|
443 |
iCommandBuffer->Write<TInt>(aNumPoints); // Write number of points
|
sl@0
|
444 |
|
sl@0
|
445 |
for(TInt i = 0; i < aNumPoints; i++)
|
sl@0
|
446 |
{
|
sl@0
|
447 |
iCommandBuffer->Write<TPoint>(aPointList[i]);
|
sl@0
|
448 |
}
|
sl@0
|
449 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
void CRemoteGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawPie);
|
sl@0
|
455 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
456 |
iCommandBuffer->Write<TPoint>(aStart);
|
sl@0
|
457 |
iCommandBuffer->Write<TPoint>(aEnd);
|
sl@0
|
458 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
void CRemoteGc::DrawEllipse(const TRect &aRect)
|
sl@0
|
462 |
{
|
sl@0
|
463 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawEllipse);
|
sl@0
|
464 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
465 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
void CRemoteGc::DrawRect(const TRect &aRect)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawRect);
|
sl@0
|
471 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
472 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
void CRemoteGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse)
|
sl@0
|
476 |
{
|
sl@0
|
477 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawRoundRect);
|
sl@0
|
478 |
iCommandBuffer->Write<TRect>(aRect);
|
sl@0
|
479 |
iCommandBuffer->Write<TSize>(aEllipse);
|
sl@0
|
480 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
481 |
}
|
sl@0
|
482 |
|
sl@0
|
483 |
TInt CRemoteGc::DrawPolygon(const CArrayFix<TPoint> *aPointList, TFillRule aFillRule)
|
sl@0
|
484 |
{
|
sl@0
|
485 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawPolygon);
|
sl@0
|
486 |
iCommandBuffer->Write<TInt>(aPointList->Count()); // Write number of points
|
sl@0
|
487 |
|
sl@0
|
488 |
for(TInt i = 0; i < aPointList->Count(); i++)
|
sl@0
|
489 |
{
|
sl@0
|
490 |
iCommandBuffer->Write<TPoint>(aPointList->At(i));
|
sl@0
|
491 |
}
|
sl@0
|
492 |
|
sl@0
|
493 |
iCommandBuffer->Write<TFillRule>(aFillRule);
|
sl@0
|
494 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
495 |
return KErrNone;
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
TInt CRemoteGc::DrawPolygon(const TPoint* aPointList, TInt aNumPoints, TFillRule aFillRule)
|
sl@0
|
499 |
{
|
sl@0
|
500 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawPolygon);
|
sl@0
|
501 |
iCommandBuffer->Write<TInt>(aNumPoints); // Write number of points
|
sl@0
|
502 |
|
sl@0
|
503 |
for(TInt i = 0; i < aNumPoints; i++)
|
sl@0
|
504 |
{
|
sl@0
|
505 |
iCommandBuffer->Write<TPoint>(aPointList[i]);
|
sl@0
|
506 |
}
|
sl@0
|
507 |
|
sl@0
|
508 |
iCommandBuffer->Write<TFillRule>(aFillRule);
|
sl@0
|
509 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
510 |
return KErrNone;
|
sl@0
|
511 |
}
|
sl@0
|
512 |
|
sl@0
|
513 |
void CRemoteGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice)
|
sl@0
|
514 |
{
|
sl@0
|
515 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap1);
|
sl@0
|
516 |
iCommandBuffer->Write<TPoint>(aTopLeft);
|
sl@0
|
517 |
iCommandBuffer->Write<TInt>(aDevice->Handle());
|
sl@0
|
518 |
iBoundingRect.BoundingRect(TRect(aTopLeft, aDevice->SizeInPixels()));
|
sl@0
|
519 |
iHasBitmapCommand = ETrue;
|
sl@0
|
520 |
}
|
sl@0
|
521 |
|
sl@0
|
522 |
void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap2);
|
sl@0
|
525 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
526 |
iCommandBuffer->Write<TInt>(aDevice->Handle());
|
sl@0
|
527 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
528 |
iHasBitmapCommand = ETrue;
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect)
|
sl@0
|
532 |
{
|
sl@0
|
533 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap3);
|
sl@0
|
534 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
535 |
iCommandBuffer->Write<TInt>(aDevice->Handle());
|
sl@0
|
536 |
iCommandBuffer->Write<TRect>(aSourceRect);
|
sl@0
|
537 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
538 |
iHasBitmapCommand = ETrue;
|
sl@0
|
539 |
}
|
sl@0
|
540 |
|
sl@0
|
541 |
void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
|
sl@0
|
542 |
{
|
sl@0
|
543 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmapMasked);
|
sl@0
|
544 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
545 |
iCommandBuffer->Write<TInt>(aBitmap->Handle());
|
sl@0
|
546 |
iCommandBuffer->Write<TRect>(aSourceRect);
|
sl@0
|
547 |
iCommandBuffer->Write<TInt>(aMaskBitmap->Handle());
|
sl@0
|
548 |
iCommandBuffer->Write<TBool>(aInvertMask);
|
sl@0
|
549 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
550 |
iHasBitmapCommand = ETrue;
|
sl@0
|
551 |
}
|
sl@0
|
552 |
|
sl@0
|
553 |
void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask)
|
sl@0
|
554 |
{
|
sl@0
|
555 |
DrawBitmapMasked(aDestRect, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSourceRect, reinterpret_cast<const CFbsBitmap*>(aMaskBitmap), aInvertMask);
|
sl@0
|
556 |
}
|
sl@0
|
557 |
|
sl@0
|
558 |
void CRemoteGc::DrawText(const TDesC &aBuf,const TPoint &aPos)
|
sl@0
|
559 |
{
|
sl@0
|
560 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawText1);
|
sl@0
|
561 |
iCommandBuffer->WriteText(aBuf);
|
sl@0
|
562 |
iCommandBuffer->Write<TPoint>(aPos);
|
sl@0
|
563 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
564 |
}
|
sl@0
|
565 |
|
sl@0
|
566 |
void CRemoteGc::DrawText(const TDesC &aBuf, const TRect &aBox, TInt aBaselineOffset, TTextAlign aHoriz, TInt aLeftMrg)
|
sl@0
|
567 |
{
|
sl@0
|
568 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawText2);
|
sl@0
|
569 |
iCommandBuffer->WriteText(aBuf);
|
sl@0
|
570 |
iCommandBuffer->Write<TRect>(aBox);
|
sl@0
|
571 |
iCommandBuffer->Write<TInt>(aBaselineOffset);
|
sl@0
|
572 |
iCommandBuffer->Write<TTextAlign>(aHoriz);
|
sl@0
|
573 |
iCommandBuffer->Write<TInt>(aLeftMrg);
|
sl@0
|
574 |
iBoundingRect.BoundingRect(aBox);
|
sl@0
|
575 |
}
|
sl@0
|
576 |
|
sl@0
|
577 |
void CRemoteGc::DrawText(const TDesC& aText, const TPoint& aPosition, const TDrawTextParam& aParam)
|
sl@0
|
578 |
{
|
sl@0
|
579 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawText3);
|
sl@0
|
580 |
iCommandBuffer->WriteText(aText);
|
sl@0
|
581 |
iCommandBuffer->Write<TPoint>(aPosition);
|
sl@0
|
582 |
iCommandBuffer->Write<TDrawTextParam>(aParam);
|
sl@0
|
583 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
584 |
}
|
sl@0
|
585 |
|
sl@0
|
586 |
void CRemoteGc::MapColors(const TRect& /*aRect*/, const TRgb* /*aColors*/, TInt /*aNumPairs*/, TBool /*aMapForwards*/)
|
sl@0
|
587 |
{
|
sl@0
|
588 |
//deprecated
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
TInt CRemoteGc::SetClippingRegion(const TRegion &aRegion)
|
sl@0
|
592 |
{
|
sl@0
|
593 |
iCommandBuffer->Write<TDrawCode>(ECommandSetClippingRegion);
|
sl@0
|
594 |
|
sl@0
|
595 |
const TInt count = aRegion.Count();
|
sl@0
|
596 |
iCommandBuffer->Write<TInt>(count);
|
sl@0
|
597 |
|
sl@0
|
598 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
599 |
{
|
sl@0
|
600 |
iCommandBuffer->Write<TRect>(aRegion.RectangleList()[i]);
|
sl@0
|
601 |
}
|
sl@0
|
602 |
|
sl@0
|
603 |
return KErrNone;
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
void CRemoteGc::CancelClippingRegion()
|
sl@0
|
607 |
{
|
sl@0
|
608 |
iCommandBuffer->Write<TDrawCode>(ECommandCancelClippingRegion);
|
sl@0
|
609 |
}
|
sl@0
|
610 |
|
sl@0
|
611 |
void CRemoteGc::DrawTextVertical(const TDesC& aText, const TPoint& aPos, TBool aUp)
|
sl@0
|
612 |
{
|
sl@0
|
613 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical1);
|
sl@0
|
614 |
iCommandBuffer->WriteText(aText);
|
sl@0
|
615 |
iCommandBuffer->Write<TPoint>(aPos);
|
sl@0
|
616 |
iCommandBuffer->Write<TBool>(aUp);
|
sl@0
|
617 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
618 |
}
|
sl@0
|
619 |
|
sl@0
|
620 |
void CRemoteGc::DrawTextVertical(const TDesC& aText, const TRect& aBox, TInt aBaselineOffset, TBool aUp, TTextAlign aVert, TInt aMargin)
|
sl@0
|
621 |
{
|
sl@0
|
622 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical2);
|
sl@0
|
623 |
iCommandBuffer->WriteText(aText);
|
sl@0
|
624 |
iCommandBuffer->Write<TRect>(aBox);
|
sl@0
|
625 |
iCommandBuffer->Write<TInt>(aBaselineOffset);
|
sl@0
|
626 |
iCommandBuffer->Write<TBool>(aUp);
|
sl@0
|
627 |
iCommandBuffer->Write<TTextAlign>(aVert);
|
sl@0
|
628 |
iCommandBuffer->Write<TInt>(aMargin);
|
sl@0
|
629 |
iBoundingRect.BoundingRect(aBox);
|
sl@0
|
630 |
}
|
sl@0
|
631 |
|
sl@0
|
632 |
void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect)
|
sl@0
|
633 |
{
|
sl@0
|
634 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawWsGraphic1);
|
sl@0
|
635 |
iCommandBuffer->Write<TInt>(aId.IsUid()? aId.Uid().iUid: aId.Id());
|
sl@0
|
636 |
iCommandBuffer->Write<TBool>(aId.IsUid());
|
sl@0
|
637 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
638 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
639 |
}
|
sl@0
|
640 |
|
sl@0
|
641 |
void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData)
|
sl@0
|
642 |
{
|
sl@0
|
643 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawWsGraphic2);
|
sl@0
|
644 |
iCommandBuffer->Write<TInt>(aId.IsUid()? aId.Uid().iUid: aId.Id());
|
sl@0
|
645 |
iCommandBuffer->Write<TBool>(aId.IsUid());
|
sl@0
|
646 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
647 |
iCommandBuffer->WriteText(aData);
|
sl@0
|
648 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
649 |
}
|
sl@0
|
650 |
|
sl@0
|
651 |
void CRemoteGc::SetDitherOrigin(const TPoint& /*aPoint*/) //deprecated
|
sl@0
|
652 |
{
|
sl@0
|
653 |
// do nothing, does not apply to CBitmapContext which CCommandBuffer is using
|
sl@0
|
654 |
}
|
sl@0
|
655 |
|
sl@0
|
656 |
void CRemoteGc::SetOpaque(TBool /*aDrawOpaque*/) // deprecated
|
sl@0
|
657 |
{
|
sl@0
|
658 |
// overrides to prevent calling CWindowGc::SetOpaque, it's specific to how wserv blends windows content
|
sl@0
|
659 |
}
|
sl@0
|
660 |
|
sl@0
|
661 |
TInt CRemoteGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput)
|
sl@0
|
662 |
{
|
sl@0
|
663 |
if (aUid == KGetUnderlineMetrics)
|
sl@0
|
664 |
{
|
sl@0
|
665 |
return APIExGetUnderlineMetrics(aOutput);
|
sl@0
|
666 |
}
|
sl@0
|
667 |
else if (aUid == KSetShadowColor)
|
sl@0
|
668 |
{
|
sl@0
|
669 |
return APIExSetShadowColor(aInput);
|
sl@0
|
670 |
}
|
sl@0
|
671 |
else if (aUid == KDrawTextInContextUid)
|
sl@0
|
672 |
{
|
sl@0
|
673 |
TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
|
sl@0
|
674 |
return APIExDrawText(contextParam->iText, &contextParam->iParam, contextParam->iPosition);
|
sl@0
|
675 |
}
|
sl@0
|
676 |
else if (aUid == KDrawBoxTextInContextUid)
|
sl@0
|
677 |
{
|
sl@0
|
678 |
TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
|
sl@0
|
679 |
return APIExDrawText(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iAlign,contextParam->iMargin);
|
sl@0
|
680 |
}
|
sl@0
|
681 |
else if (aUid == KDrawTextInContextVerticalUid)
|
sl@0
|
682 |
{
|
sl@0
|
683 |
TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
|
sl@0
|
684 |
return APIExDrawTextVertical(contextParam->iText, &contextParam->iParam, contextParam->iPosition,contextParam->iUp);
|
sl@0
|
685 |
}
|
sl@0
|
686 |
else if (aUid == KDrawBoxTextInContextVerticalUid)
|
sl@0
|
687 |
{
|
sl@0
|
688 |
TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
|
sl@0
|
689 |
return APIExDrawTextVertical(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iUp,contextParam->iAlign,contextParam->iMargin);
|
sl@0
|
690 |
}
|
sl@0
|
691 |
else if (aUid == KApiExtensionInterfaceUid)
|
sl@0
|
692 |
{
|
sl@0
|
693 |
return APIExInterface(aOutput, *static_cast<TUid*>(aInput));
|
sl@0
|
694 |
}
|
sl@0
|
695 |
/* Future cases may be placed here later.*/
|
sl@0
|
696 |
else
|
sl@0
|
697 |
{
|
sl@0
|
698 |
return CBitmapContext::APIExtension(aUid, aOutput, aInput);
|
sl@0
|
699 |
}
|
sl@0
|
700 |
}
|
sl@0
|
701 |
|
sl@0
|
702 |
TInt CRemoteGc::APIExGetUnderlineMetrics(TAny*& aOutput)
|
sl@0
|
703 |
{
|
sl@0
|
704 |
const TInt width = Max(iFont->HeightInPixels() / 10,1);
|
sl@0
|
705 |
TTwoTInt* ptr = (TTwoTInt*)aOutput;
|
sl@0
|
706 |
ptr->iTop = 1 + width / 2;
|
sl@0
|
707 |
ptr->iBottom = (ptr->iTop) + width;
|
sl@0
|
708 |
return KErrNone;
|
sl@0
|
709 |
}
|
sl@0
|
710 |
|
sl@0
|
711 |
TInt CRemoteGc::APIExSetShadowColor(TAny* aShadowColor)
|
sl@0
|
712 |
{
|
sl@0
|
713 |
const TRgb shadowColor = *(reinterpret_cast<TRgb*> (aShadowColor));
|
sl@0
|
714 |
iCommandBuffer->Write<TDrawCode>(ECommandSetShadowColor);
|
sl@0
|
715 |
iCommandBuffer->Write<TRgb>(shadowColor);
|
sl@0
|
716 |
iShadowColor = shadowColor;
|
sl@0
|
717 |
return KErrNone;
|
sl@0
|
718 |
}
|
sl@0
|
719 |
|
sl@0
|
720 |
TInt CRemoteGc::APIExGetShadowColor(TAny*& aOutput)
|
sl@0
|
721 |
{
|
sl@0
|
722 |
TRgb* ptr = (TRgb*)aOutput;
|
sl@0
|
723 |
ptr->SetInternal(iShadowColor.Internal());
|
sl@0
|
724 |
return KErrNone;
|
sl@0
|
725 |
}
|
sl@0
|
726 |
|
sl@0
|
727 |
TInt CRemoteGc::APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TPoint &aPos)
|
sl@0
|
728 |
{
|
sl@0
|
729 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawText4);
|
sl@0
|
730 |
iCommandBuffer->WriteText(aBuf);
|
sl@0
|
731 |
iCommandBuffer->Write<TTextParameters>(*aParam);
|
sl@0
|
732 |
iCommandBuffer->Write<TPoint>(aPos);
|
sl@0
|
733 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
734 |
return KErrNone;
|
sl@0
|
735 |
}
|
sl@0
|
736 |
|
sl@0
|
737 |
TInt CRemoteGc::APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg)
|
sl@0
|
738 |
{
|
sl@0
|
739 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawText5);
|
sl@0
|
740 |
iCommandBuffer->WriteText(aBuf);
|
sl@0
|
741 |
iCommandBuffer->Write<TTextParameters>(*aParam);
|
sl@0
|
742 |
iCommandBuffer->Write<TRect>(aBox);
|
sl@0
|
743 |
iCommandBuffer->Write<TInt>(aBaselineOffset);
|
sl@0
|
744 |
iCommandBuffer->Write<TTextAlign>(aHoriz);
|
sl@0
|
745 |
iCommandBuffer->Write<TInt>(aLeftMrg);
|
sl@0
|
746 |
iBoundingRect.BoundingRect(aBox);
|
sl@0
|
747 |
return KErrNone;
|
sl@0
|
748 |
}
|
sl@0
|
749 |
|
sl@0
|
750 |
TInt CRemoteGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp)
|
sl@0
|
751 |
{
|
sl@0
|
752 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical3);
|
sl@0
|
753 |
iCommandBuffer->WriteText(aText);
|
sl@0
|
754 |
iCommandBuffer->Write<TTextParameters>(*aParam);
|
sl@0
|
755 |
iCommandBuffer->Write<TPoint>(aPos);
|
sl@0
|
756 |
iCommandBuffer->Write<TBool>(aUp);
|
sl@0
|
757 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
758 |
return KErrNone;
|
sl@0
|
759 |
}
|
sl@0
|
760 |
|
sl@0
|
761 |
TInt CRemoteGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
|
sl@0
|
762 |
{
|
sl@0
|
763 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical4);
|
sl@0
|
764 |
iCommandBuffer->WriteText(aText);
|
sl@0
|
765 |
iCommandBuffer->Write<TTextParameters>(*aParam);
|
sl@0
|
766 |
iCommandBuffer->Write<TRect>(aBox);
|
sl@0
|
767 |
iCommandBuffer->Write<TInt>(aBaselineOffset);
|
sl@0
|
768 |
iCommandBuffer->Write<TBool>(aUp);
|
sl@0
|
769 |
iCommandBuffer->Write<TTextAlign>(aVert);
|
sl@0
|
770 |
iCommandBuffer->Write<TInt>(aMargin);
|
sl@0
|
771 |
iBoundingRect.BoundingRect(aBox);
|
sl@0
|
772 |
return KErrNone;
|
sl@0
|
773 |
}
|
sl@0
|
774 |
|
sl@0
|
775 |
TInt CRemoteGc::APIExInterface(TAny*& aInterface, TUid aInterfaceId)
|
sl@0
|
776 |
{
|
sl@0
|
777 |
if(aInterfaceId == KMWsDrawResourceInterfaceUid)
|
sl@0
|
778 |
{
|
sl@0
|
779 |
aInterface = static_cast<MWsDrawResource*>(iRemoteGcPimpl);
|
sl@0
|
780 |
return KErrNone;
|
sl@0
|
781 |
}
|
sl@0
|
782 |
return KErrNotSupported;
|
sl@0
|
783 |
}
|
sl@0
|
784 |
|
sl@0
|
785 |
void CRemoteGc::DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
786 |
{
|
sl@0
|
787 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceToPos);
|
sl@0
|
788 |
iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
|
sl@0
|
789 |
iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
|
sl@0
|
790 |
iCommandBuffer->Write<TPoint>(aPos);
|
sl@0
|
791 |
iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
|
sl@0
|
792 |
iBoundingRect.BoundingRect(iDrawRect);
|
sl@0
|
793 |
iHasBitmapCommand = ETrue;
|
sl@0
|
794 |
}
|
sl@0
|
795 |
|
sl@0
|
796 |
void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
797 |
{
|
sl@0
|
798 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceToRect);
|
sl@0
|
799 |
iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
|
sl@0
|
800 |
iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
|
sl@0
|
801 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
802 |
iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
|
sl@0
|
803 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
804 |
iHasBitmapCommand = ETrue;
|
sl@0
|
805 |
}
|
sl@0
|
806 |
|
sl@0
|
807 |
void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
808 |
{
|
sl@0
|
809 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceFromRectToRect);
|
sl@0
|
810 |
iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
|
sl@0
|
811 |
iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
|
sl@0
|
812 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
813 |
iCommandBuffer->Write<TRect>(aSrcRect);
|
sl@0
|
814 |
iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
|
sl@0
|
815 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
816 |
iHasBitmapCommand = ETrue;
|
sl@0
|
817 |
}
|
sl@0
|
818 |
|
sl@0
|
819 |
void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
|
sl@0
|
820 |
{
|
sl@0
|
821 |
iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceWithData);
|
sl@0
|
822 |
iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
|
sl@0
|
823 |
iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
|
sl@0
|
824 |
iCommandBuffer->Write<TRect>(aDestRect);
|
sl@0
|
825 |
iCommandBuffer->WriteText(aParam);
|
sl@0
|
826 |
iBoundingRect.BoundingRect(aDestRect);
|
sl@0
|
827 |
iHasBitmapCommand = ETrue;
|
sl@0
|
828 |
}
|
sl@0
|
829 |
|