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/WSGRAPHICMSGBUF.H"
|
sl@0
|
17 |
#include "DrawSection.h"
|
sl@0
|
18 |
#include "CommandBuffer.h"
|
sl@0
|
19 |
#include "BitmapCache.h"
|
sl@0
|
20 |
#include "FontsCache.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
const TInt KBufferSize = 1024;
|
sl@0
|
23 |
|
sl@0
|
24 |
EXPORT_C CCommandBuffer* CCommandBuffer::NewL()
|
sl@0
|
25 |
{
|
sl@0
|
26 |
CCommandBuffer* buffer = new (ELeave) CCommandBuffer;
|
sl@0
|
27 |
CleanupStack::PushL(buffer);
|
sl@0
|
28 |
buffer->ConstructL();
|
sl@0
|
29 |
CleanupStack::Pop(buffer);
|
sl@0
|
30 |
return buffer;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
CCommandBuffer::CCommandBuffer()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C CCommandBuffer::~CCommandBuffer()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
iDrawSections.ResetAndDestroy();
|
sl@0
|
40 |
iDrawSections.Close();
|
sl@0
|
41 |
iBufReadStream.Close();
|
sl@0
|
42 |
iClippingRegion.Close();
|
sl@0
|
43 |
|
sl@0
|
44 |
iBufRead = NULL;
|
sl@0
|
45 |
delete iRecordSegBuf;
|
sl@0
|
46 |
delete iBitmapCache;
|
sl@0
|
47 |
delete iFontCache;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
void CCommandBuffer::ConstructL()
|
sl@0
|
51 |
{
|
sl@0
|
52 |
iBitmapCache = new (ELeave) CBitmapCache;
|
sl@0
|
53 |
iRecordSegBuf = CBufSeg::NewL(KBufferSize);
|
sl@0
|
54 |
iFontCache = new (ELeave) CFontsCache;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Resets the entire commandbuffer.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
void CCommandBuffer::Reset()
|
sl@0
|
61 |
{
|
sl@0
|
62 |
if(iRecordSegBuf)
|
sl@0
|
63 |
iRecordSegBuf->Reset();
|
sl@0
|
64 |
|
sl@0
|
65 |
iError = KErrNone;
|
sl@0
|
66 |
iOrigin = TPoint(0,0);
|
sl@0
|
67 |
iClippingRegion.Clear();
|
sl@0
|
68 |
iDrawSections.ResetAndDestroy();
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
|
sl@0
|
73 |
If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
|
sl@0
|
74 |
otherwise only sections which has not been externalized before will be externalized. Note that if only
|
sl@0
|
75 |
not externalized sections is asked for, the flag will be reset on that section so next call
|
sl@0
|
76 |
to ExternalizeLC will not externalize that section.
|
sl@0
|
77 |
|
sl@0
|
78 |
@param aMsgBuf A buffer used to externalize the commandbuffer to.
|
sl@0
|
79 |
@param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
void CCommandBuffer::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
// Add drawsections to aMsgBuf
|
sl@0
|
84 |
const TInt sectionCount = iDrawSections.Count();
|
sl@0
|
85 |
for(TInt j = 0; j < sectionCount; j++)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
CDrawSection* section = iDrawSections[j];
|
sl@0
|
88 |
if(aEntireBuffer || !section->HasBeenExternalized())
|
sl@0
|
89 |
{
|
sl@0
|
90 |
section->ExternalizeL(aMsgBuf);
|
sl@0
|
91 |
section->SetHasBeenExternalized(ETrue);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
}
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
Internalizes the entire commandbuffer from buffer containing information about all drawsections and drawcommands.
|
sl@0
|
98 |
|
sl@0
|
99 |
@param aBuf A buffer containing information about all drawsections and drawcommands.
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
EXPORT_C void CCommandBuffer::InternalizeL(const TDesC8& aBuf)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
// Reset the commandbuffer
|
sl@0
|
104 |
iRecordSegBuf->Reset();
|
sl@0
|
105 |
InternalizeAppendL(aBuf);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
Internalizes and appends from a buffer containing information about some drawsections and drawcommands.
|
sl@0
|
110 |
|
sl@0
|
111 |
@param aBuf A buffer containing information about some drawsections and drawcommands.
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
EXPORT_C void CCommandBuffer::InternalizeAppendL(const TDesC8& aBuf)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
// Reset the commandbuffer
|
sl@0
|
116 |
TWsGraphicMsgBufParser parser(aBuf);
|
sl@0
|
117 |
|
sl@0
|
118 |
// Load drawsections
|
sl@0
|
119 |
const TInt count = parser.Count();
|
sl@0
|
120 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
CDrawSection* drawSection = CDrawSection::NewL();;
|
sl@0
|
123 |
CleanupStack::PushL(drawSection);
|
sl@0
|
124 |
User::LeaveIfError(drawSection->LoadL(parser, i));
|
sl@0
|
125 |
iDrawSections.AppendL(drawSection);
|
sl@0
|
126 |
CleanupStack::Pop(drawSection);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
// Tidy the iDrawSection array so completely blocked sections will be removed
|
sl@0
|
130 |
Tidy();
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
@return the current active clipping region of the commandbuffer.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
EXPORT_C const TRegion& CCommandBuffer::ClippingRegion() const
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return *iActiveMasterClippingRegion;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
Prepares to record new drawcommands for a drawsection.
|
sl@0
|
143 |
This method is called from CRemoteGc::Activate().
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
void CCommandBuffer::Prepare(const TRect& aDrawRect)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
iDrawSectionRect = aDrawRect;
|
sl@0
|
148 |
iError = KErrNone;
|
sl@0
|
149 |
if(iRecordSegBuf)
|
sl@0
|
150 |
iRecordSegBuf->Delete(0, iRecordSegBuf->Size()); // Reset record buffer
|
sl@0
|
151 |
else
|
sl@0
|
152 |
TRAP(iError, iRecordSegBuf = CBufSeg::NewL(KBufferSize));
|
sl@0
|
153 |
}
|
sl@0
|
154 |
|
sl@0
|
155 |
/**
|
sl@0
|
156 |
Finishes the recording of drawcommands for a drawsection.
|
sl@0
|
157 |
This method is called from CRemoteGc::Deactivate().
|
sl@0
|
158 |
|
sl@0
|
159 |
@param aDrawRect The drawrect of the recorded drawcommands.
|
sl@0
|
160 |
@param aBoundingRect The boundingrect of the recorded drawcommands.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
TInt CCommandBuffer::Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
// If some error occured during the recording of this section, dont add the section
|
sl@0
|
165 |
if(!iError)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
CDrawSection* drawSection = NULL;
|
sl@0
|
168 |
TRAP(iError, drawSection = CDrawSection::NewL(aDrawRect, aBoundingRect, aHasBitmapCommand))
|
sl@0
|
169 |
if(iError)
|
sl@0
|
170 |
return iError;
|
sl@0
|
171 |
|
sl@0
|
172 |
// If boundingRect is empty clear the drawcommands added
|
sl@0
|
173 |
if(aBoundingRect.IsEmpty())
|
sl@0
|
174 |
iRecordSegBuf->Delete(0, iRecordSegBuf->Size());
|
sl@0
|
175 |
|
sl@0
|
176 |
iRecordSegBuf->Compress();
|
sl@0
|
177 |
drawSection->SetBuffer(iRecordSegBuf); //Takes ownership of the memory allocated by iRecordSegBuf
|
sl@0
|
178 |
iRecordSegBuf = NULL;
|
sl@0
|
179 |
if(CheckForDuplicate(*drawSection))
|
sl@0
|
180 |
{
|
sl@0
|
181 |
delete drawSection;
|
sl@0
|
182 |
return KErrAlreadyExists;
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
iError = iDrawSections.Append(drawSection);
|
sl@0
|
186 |
if(iError)
|
sl@0
|
187 |
delete drawSection;
|
sl@0
|
188 |
else
|
sl@0
|
189 |
{
|
sl@0
|
190 |
Tidy();
|
sl@0
|
191 |
if(iDrawSections.Count() == 0 || AllSectionsExternalized())
|
sl@0
|
192 |
return KErrGeneral;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
return iError;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
/**
|
sl@0
|
200 |
Remove drawsections that is completely blocked by another drawsection.
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
void CCommandBuffer::Tidy()
|
sl@0
|
203 |
{
|
sl@0
|
204 |
RRegion region;
|
sl@0
|
205 |
TInt count = 0;
|
sl@0
|
206 |
for(TInt i = 0; i < (count = iDrawSections.Count()); i++)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
TRect rect1 = iDrawSections[i]->DrawRect();
|
sl@0
|
209 |
region.Clear();
|
sl@0
|
210 |
region.AddRect(rect1);
|
sl@0
|
211 |
for(TInt j = i + 1; j < count; j++)
|
sl@0
|
212 |
{
|
sl@0
|
213 |
TRect rect2 = iDrawSections[j]->DrawRect();
|
sl@0
|
214 |
region.SubRect(rect2);
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
if(region.IsEmpty())
|
sl@0
|
218 |
{
|
sl@0
|
219 |
delete iDrawSections[i];
|
sl@0
|
220 |
iDrawSections.Remove(i--);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
}
|
sl@0
|
223 |
region.Close();
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
/**
|
sl@0
|
227 |
@return ETrue if all sections in the commandbuffer have been externalized, otherwise EFalse.
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
TBool CCommandBuffer::AllSectionsExternalized() const
|
sl@0
|
230 |
{
|
sl@0
|
231 |
const TInt count = iDrawSections.Count();
|
sl@0
|
232 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
if(!iDrawSections[i]->HasBeenExternalized())
|
sl@0
|
235 |
return EFalse;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
return ETrue;
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
Checks if there exists any duplicate of aDrawSection already in the iDrawSection array.
|
sl@0
|
242 |
|
sl@0
|
243 |
@param aDrawSection The drawsection to look for a duplicate of.
|
sl@0
|
244 |
@return ETrue if a duplicate was found, otherwise EFalse.
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
TBool CCommandBuffer::CheckForDuplicate(const CDrawSection& aDrawSection) const
|
sl@0
|
247 |
{
|
sl@0
|
248 |
const TInt count = iDrawSections.Count();
|
sl@0
|
249 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
if(!iDrawSections[i]->IsIdentical(aDrawSection))
|
sl@0
|
252 |
continue;
|
sl@0
|
253 |
|
sl@0
|
254 |
// Check if there is some drawsection that overlaps the section we found identical,
|
sl@0
|
255 |
// if that is the case it is not a duplicate
|
sl@0
|
256 |
for(TInt j = i + 1; j < count; j++)
|
sl@0
|
257 |
{
|
sl@0
|
258 |
TRect compareRect = iDrawSections[j]->DrawRect();
|
sl@0
|
259 |
if(aDrawSection.DrawRect().Intersects(compareRect))
|
sl@0
|
260 |
return EFalse; //Found a drawrect that overlapped, no duplicate exists then
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
// Found duplicate
|
sl@0
|
264 |
return ETrue;
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
return EFalse;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
/**
|
sl@0
|
271 |
Updates the clippingregion for a specific drawsection.
|
sl@0
|
272 |
|
sl@0
|
273 |
@param aDrawSectionIndex The index in iDrawSections of the drawsection to update the clippingregion for.
|
sl@0
|
274 |
@param aBitmapContext The bitmapcontext to set the new clippingregion on.
|
sl@0
|
275 |
*/
|
sl@0
|
276 |
void CCommandBuffer::UpdateClippingRegion(TInt aDrawSectionIndex)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
__ASSERT_DEBUG(aDrawSectionIndex < iDrawSections.Count(), User::Invariant());
|
sl@0
|
279 |
|
sl@0
|
280 |
iDrawSectionClippingRegion.Clear();
|
sl@0
|
281 |
if (iMasterClippingRegion)
|
sl@0
|
282 |
{
|
sl@0
|
283 |
iDrawSectionClippingRegion.Copy(*iMasterClippingRegion);
|
sl@0
|
284 |
}
|
sl@0
|
285 |
else
|
sl@0
|
286 |
{
|
sl@0
|
287 |
TRect rect = iMasterClippingRect;
|
sl@0
|
288 |
rect.Move(iMasterOrigin);
|
sl@0
|
289 |
iDrawSectionClippingRegion.AddRect(rect);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
const TInt count = iDrawSections.Count();
|
sl@0
|
293 |
for(TInt i = aDrawSectionIndex + 1; i < count; ++i)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
TRect rect = iDrawSections[i]->DrawRect();
|
sl@0
|
296 |
rect.Move(iMasterOrigin);
|
sl@0
|
297 |
iDrawSectionClippingRegion.SubRect(rect);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
if (iDrawSectionClippingRegion.CheckError())
|
sl@0
|
301 |
iActiveMasterClippingRegion = iMasterClippingRegion;
|
sl@0
|
302 |
else
|
sl@0
|
303 |
iActiveMasterClippingRegion = &iDrawSectionClippingRegion;
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
/**
|
sl@0
|
307 |
Writes data of a specific length to the recordbuffer.
|
sl@0
|
308 |
|
sl@0
|
309 |
@param aPtr The data to write.
|
sl@0
|
310 |
@param aLength The length of the data to write.
|
sl@0
|
311 |
*/
|
sl@0
|
312 |
void CCommandBuffer::Write(const TUint8* aPtr, TUint aLength)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
if(iError)
|
sl@0
|
315 |
return;
|
sl@0
|
316 |
|
sl@0
|
317 |
TRAP(iError, iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aPtr, aLength))
|
sl@0
|
318 |
if(iError)
|
sl@0
|
319 |
return;
|
sl@0
|
320 |
}
|
sl@0
|
321 |
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
Writes text to the recordbuffer.
|
sl@0
|
324 |
|
sl@0
|
325 |
@param aText The text to write to the recordbuffer.
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
void CCommandBuffer::WriteText(const TDesC8 &aText)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
if(iError)
|
sl@0
|
330 |
return;
|
sl@0
|
331 |
|
sl@0
|
332 |
// Append the total size of the text
|
sl@0
|
333 |
Write<TInt>(aText.Size());
|
sl@0
|
334 |
if(iError)
|
sl@0
|
335 |
return;
|
sl@0
|
336 |
|
sl@0
|
337 |
TRAP(iError, DoWriteTextL(aText));
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
Writes text to the recordbuffer.
|
sl@0
|
342 |
|
sl@0
|
343 |
@param aText The text to write to the recordbuffer.
|
sl@0
|
344 |
*/
|
sl@0
|
345 |
void CCommandBuffer::WriteText(const TDesC16 &aText)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
if(iError)
|
sl@0
|
348 |
return;
|
sl@0
|
349 |
|
sl@0
|
350 |
// Append the total size of the text
|
sl@0
|
351 |
Write<TInt>(aText.Size());
|
sl@0
|
352 |
if(iError)
|
sl@0
|
353 |
return;
|
sl@0
|
354 |
|
sl@0
|
355 |
TPtrC8 textPtr(reinterpret_cast<const TUint8*>(aText.Ptr()),aText.Size());
|
sl@0
|
356 |
TRAP(iError, DoWriteTextL(textPtr));
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
/**
|
sl@0
|
360 |
Writes text to the recordbuffer.
|
sl@0
|
361 |
|
sl@0
|
362 |
@param aText The text to write to the recordbuffer.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
void CCommandBuffer::DoWriteTextL(const TDesC8 &aText)
|
sl@0
|
365 |
{
|
sl@0
|
366 |
iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aText, aText.Size());
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
/**
|
sl@0
|
370 |
Reads data with a specific length from iBufReadStream.
|
sl@0
|
371 |
|
sl@0
|
372 |
@param aPtr The read data is written to this paramenter.
|
sl@0
|
373 |
@param aLength The length of the data to be read.
|
sl@0
|
374 |
*/
|
sl@0
|
375 |
void CCommandBuffer::ReadL(TUint8* aPtr, TUint aLength)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
iBufReadStream.ReadL(aPtr, aLength);
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
/**
|
sl@0
|
381 |
Reads text from iBufReadStream.
|
sl@0
|
382 |
|
sl@0
|
383 |
@param aText The read text is put into this 8-bit buffer.
|
sl@0
|
384 |
*/
|
sl@0
|
385 |
void CCommandBuffer::ReadTextLC(TPtrC8& aText)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
DoReadTextLC(aText,EFalse);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
/**
|
sl@0
|
391 |
Reads text from iBufReadStream.
|
sl@0
|
392 |
|
sl@0
|
393 |
@param aText The read text is put into this 16-bit buffer.
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
void CCommandBuffer::ReadTextLC(TPtrC16& aText)
|
sl@0
|
396 |
{
|
sl@0
|
397 |
TPtrC8 text8;
|
sl@0
|
398 |
DoReadTextLC(text8,ETrue);
|
sl@0
|
399 |
aText.Set(reinterpret_cast<const TUint16*>(text8.Ptr()),text8.Size()/2);
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
Reads text from iBufReadStream; used by ReadTextLC
|
sl@0
|
404 |
|
sl@0
|
405 |
@internalComponent
|
sl@0
|
406 |
*/
|
sl@0
|
407 |
void CCommandBuffer::DoReadTextLC(TPtrC8& aText,TBool a16Bit)
|
sl@0
|
408 |
{
|
sl@0
|
409 |
ASSERT(iBufRead);
|
sl@0
|
410 |
|
sl@0
|
411 |
TInt textSize;
|
sl@0
|
412 |
ReadL<TInt>(textSize); // Read the length of the text
|
sl@0
|
413 |
if(0 > textSize)
|
sl@0
|
414 |
{
|
sl@0
|
415 |
User::Leave(KErrArgument);
|
sl@0
|
416 |
}
|
sl@0
|
417 |
|
sl@0
|
418 |
// attempt to do it inline
|
sl@0
|
419 |
const TInt pos = iBufReadStream.Source()->TellL(MStreamBuf::ERead).Offset();
|
sl@0
|
420 |
if(!a16Bit || !(pos & 1)) // check 16bit-aligned
|
sl@0
|
421 |
{
|
sl@0
|
422 |
const TPtrC8 remaining = iBufRead->Ptr(pos);
|
sl@0
|
423 |
if(remaining.Size() >= textSize) // can do inline!
|
sl@0
|
424 |
{
|
sl@0
|
425 |
CleanupStack::PushL((TAny*)NULL); // have to push something
|
sl@0
|
426 |
iBufReadStream.Source()->SeekL(MStreamBuf::ERead,textSize);
|
sl@0
|
427 |
aText.Set(remaining.Ptr(),textSize);
|
sl@0
|
428 |
return;
|
sl@0
|
429 |
}
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
// have to copy into a continuous segment
|
sl@0
|
433 |
HBufC8* buf = HBufC8::NewLC(textSize);
|
sl@0
|
434 |
TPtr8 textPtr8(buf->Des());
|
sl@0
|
435 |
iBufReadStream.ReadL(textPtr8,textSize);
|
sl@0
|
436 |
aText.Set(*buf);
|
sl@0
|
437 |
}
|
sl@0
|
438 |
|
sl@0
|
439 |
/**
|
sl@0
|
440 |
Compares the commands in one buffer to those in another
|
sl@0
|
441 |
@param aBuffer The buffer to compare to
|
sl@0
|
442 |
@return ETrue if they are an exact match, EFalse otherwise
|
sl@0
|
443 |
*/
|
sl@0
|
444 |
EXPORT_C TBool CCommandBuffer::IsIdentical(const CCommandBuffer & aBuffer) const
|
sl@0
|
445 |
{
|
sl@0
|
446 |
for(TInt i = 0; i < iDrawSections.Count(); ++i)
|
sl@0
|
447 |
{
|
sl@0
|
448 |
if (!iDrawSections[i]->IsIdentical(*aBuffer.iDrawSections[i]))
|
sl@0
|
449 |
return EFalse;
|
sl@0
|
450 |
}
|
sl@0
|
451 |
return ETrue;
|
sl@0
|
452 |
}
|
sl@0
|
453 |
|
sl@0
|
454 |
/**
|
sl@0
|
455 |
Draws drawcommands that are within a specific rect to a specific position.
|
sl@0
|
456 |
This function is deprecated use the other overload
|
sl@0
|
457 |
|
sl@0
|
458 |
@param aPosition Draws the drawcommands to this position.
|
sl@0
|
459 |
@param aDrawRect Draws only drawcommands that are within this rect.
|
sl@0
|
460 |
@param aBitmapContext The bitmapcontext to draw to.
|
sl@0
|
461 |
@deprecated
|
sl@0
|
462 |
@publishedPartner
|
sl@0
|
463 |
*/
|
sl@0
|
464 |
EXPORT_C TInt CCommandBuffer::Play(const TPoint& aPosition, const TRect& aDrawRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
|
sl@0
|
465 |
{
|
sl@0
|
466 |
iMasterOrigin = aPosition;
|
sl@0
|
467 |
iOrigin = TPoint(0,0); // Need to save this to be able to make Reset not affect Origin beacuse that is how CWsGc works.
|
sl@0
|
468 |
aContext.SetOrigin(iMasterOrigin);
|
sl@0
|
469 |
iMasterClippingRect = aDrawRect;
|
sl@0
|
470 |
iMasterClippingRegion=0;
|
sl@0
|
471 |
|
sl@0
|
472 |
TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
|
sl@0
|
473 |
return errMess;
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
/**
|
sl@0
|
477 |
Draws drawcommands that are within a specific rect to a specific position.
|
sl@0
|
478 |
|
sl@0
|
479 |
@param aMasterOrigin The origin relative to which all draw commands will be drawn
|
sl@0
|
480 |
@param aMasterClippingRegion The region to which all draw commands are clipped
|
sl@0
|
481 |
@param aMasterClippingRect The rectangle to which all draw commands are clipped
|
sl@0
|
482 |
@param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
|
sl@0
|
483 |
@param aContext The bitmap context to draw to
|
sl@0
|
484 |
@publishedPartner
|
sl@0
|
485 |
*/
|
sl@0
|
486 |
EXPORT_C TInt CCommandBuffer::Play(const TPoint& aMasterOrigin, const TRegion * aMasterClippingRegion, const TRect& aMasterClippingRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
|
sl@0
|
487 |
{
|
sl@0
|
488 |
iMasterOrigin = aMasterOrigin;
|
sl@0
|
489 |
iMasterClippingRegion = aMasterClippingRegion;
|
sl@0
|
490 |
iMasterClippingRect = aMasterClippingRect;
|
sl@0
|
491 |
|
sl@0
|
492 |
Reset(aContext);
|
sl@0
|
493 |
|
sl@0
|
494 |
TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
|
sl@0
|
495 |
return errMess;
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
/**
|
sl@0
|
499 |
@internalTechnology
|
sl@0
|
500 |
*/
|
sl@0
|
501 |
EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aOffset*/, const TRegion* /*aClippingRegion*/, const TRect& /*aSourceRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, MWsGraphicsContext& /*aGraphicsContext*/) //Stub implementation to maintain compatibility with NGA Window Server
|
sl@0
|
502 |
{
|
sl@0
|
503 |
ASSERT(0);
|
sl@0
|
504 |
return KErrNotSupported;
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
/**
|
sl@0
|
508 |
@internalTechnology
|
sl@0
|
509 |
*/
|
sl@0
|
510 |
EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aOffset*/, const TRegion* /*aClippingRegion*/, const TRect& /*aSourceRect*/, RWsSession& /*aWsSession*/, CWindowGc& /*aWindowGc*/) //Stub implementation to maintain compatibility with NGA Window Server
|
sl@0
|
511 |
{
|
sl@0
|
512 |
ASSERT(0);
|
sl@0
|
513 |
return KErrNotSupported;
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
/**
|
sl@0
|
517 |
Draws drawcommands that are within a specific rect.
|
sl@0
|
518 |
|
sl@0
|
519 |
@param aDrawRect Draws only drawcommands that are within this rect.
|
sl@0
|
520 |
@param aBitmapContext The bitmapcontext to draw to.
|
sl@0
|
521 |
*/
|
sl@0
|
522 |
void CCommandBuffer::DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
const TInt sections = iDrawSections.Count();
|
sl@0
|
525 |
if(sections == 0)
|
sl@0
|
526 |
User::Leave(KErrEof);
|
sl@0
|
527 |
|
sl@0
|
528 |
iBitmapCache->BeginUpdate();
|
sl@0
|
529 |
iFontCache->BeginUpdate();
|
sl@0
|
530 |
for(TInt i = 0; i < sections; i++)
|
sl@0
|
531 |
{
|
sl@0
|
532 |
UpdateClippingRegion(i);
|
sl@0
|
533 |
DrawSectionL(*iDrawSections[i], aWsGraphicResolver, aBitmapContext);
|
sl@0
|
534 |
}
|
sl@0
|
535 |
iFontCache->EndUpdate();
|
sl@0
|
536 |
iBitmapCache->EndUpdate();
|
sl@0
|
537 |
}
|
sl@0
|
538 |
|
sl@0
|
539 |
/**
|
sl@0
|
540 |
Draws a specific drawsection.
|
sl@0
|
541 |
|
sl@0
|
542 |
@param aDrawSection The drawsection to be drawn.
|
sl@0
|
543 |
@param aBitmapContext The bitmapcontext to draw to.
|
sl@0
|
544 |
*/
|
sl@0
|
545 |
void CCommandBuffer::DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
|
sl@0
|
546 |
{
|
sl@0
|
547 |
iDrawSectionRect = aDrawSection.DrawRect();
|
sl@0
|
548 |
Reset(aBitmapContext);
|
sl@0
|
549 |
|
sl@0
|
550 |
iBufRead = aDrawSection.Buffer();
|
sl@0
|
551 |
iBufReadStream.Open(*iBufRead, 0);
|
sl@0
|
552 |
|
sl@0
|
553 |
TDrawCode drawCode;
|
sl@0
|
554 |
while(ETrue)
|
sl@0
|
555 |
{
|
sl@0
|
556 |
TRAPD(err, ReadL<TDrawCode>(drawCode));
|
sl@0
|
557 |
if(err == KErrEof)
|
sl@0
|
558 |
return;
|
sl@0
|
559 |
else if(err)
|
sl@0
|
560 |
User::Leave(err);
|
sl@0
|
561 |
|
sl@0
|
562 |
switch(drawCode)
|
sl@0
|
563 |
{
|
sl@0
|
564 |
case ECommandClear:
|
sl@0
|
565 |
Clear(aBitmapContext);
|
sl@0
|
566 |
break;
|
sl@0
|
567 |
case ECommandClearRect:
|
sl@0
|
568 |
ClearRectL(aBitmapContext);
|
sl@0
|
569 |
break;
|
sl@0
|
570 |
case ECommandCopyRect:
|
sl@0
|
571 |
CopyRectL(aBitmapContext);
|
sl@0
|
572 |
break;
|
sl@0
|
573 |
case ECommandBitBlt1:
|
sl@0
|
574 |
BitBlt1L(aBitmapContext);
|
sl@0
|
575 |
break;
|
sl@0
|
576 |
case ECommandBitBlt2:
|
sl@0
|
577 |
BitBlt2L(aBitmapContext);
|
sl@0
|
578 |
break;
|
sl@0
|
579 |
case ECommandBitBltMasked:
|
sl@0
|
580 |
BitBltMaskedL(aBitmapContext);
|
sl@0
|
581 |
break;
|
sl@0
|
582 |
case ECommandSetFaded:
|
sl@0
|
583 |
SetFadedL(aBitmapContext);
|
sl@0
|
584 |
break;
|
sl@0
|
585 |
case ECommandSetFadingParameters:
|
sl@0
|
586 |
SetFadingParametersL(aBitmapContext);
|
sl@0
|
587 |
break;
|
sl@0
|
588 |
case ECommandAlphaBlendBitmaps:
|
sl@0
|
589 |
AlphaBlendBitmapsL(aBitmapContext);
|
sl@0
|
590 |
break;
|
sl@0
|
591 |
case ECommandSetOrigin:
|
sl@0
|
592 |
SetOriginL(aBitmapContext);
|
sl@0
|
593 |
break;
|
sl@0
|
594 |
case ECommandSetDrawMode:
|
sl@0
|
595 |
SetDrawModeL(aBitmapContext);
|
sl@0
|
596 |
break;
|
sl@0
|
597 |
case ECommandSetClippingRect:
|
sl@0
|
598 |
SetClippingRectL(aBitmapContext);
|
sl@0
|
599 |
break;
|
sl@0
|
600 |
case ECommandCancelClippingRect:
|
sl@0
|
601 |
CancelClippingRect(aBitmapContext);
|
sl@0
|
602 |
break;
|
sl@0
|
603 |
case ECommandReset:
|
sl@0
|
604 |
Reset(aBitmapContext);
|
sl@0
|
605 |
break;
|
sl@0
|
606 |
case ECommandUseFont:
|
sl@0
|
607 |
UseFontL(aBitmapContext);
|
sl@0
|
608 |
break;
|
sl@0
|
609 |
case ECommandDiscardFont:
|
sl@0
|
610 |
DiscardFont(aBitmapContext);
|
sl@0
|
611 |
break;
|
sl@0
|
612 |
case ECommandSetUnderlineStyle:
|
sl@0
|
613 |
SetUnderlineStyleL(aBitmapContext);
|
sl@0
|
614 |
break;
|
sl@0
|
615 |
case ECommandSetStrikethroughStyle:
|
sl@0
|
616 |
SetStrikethroughStyleL(aBitmapContext);
|
sl@0
|
617 |
break;
|
sl@0
|
618 |
case ECommandSetWordJustification:
|
sl@0
|
619 |
SetWordJustificationL(aBitmapContext);
|
sl@0
|
620 |
break;
|
sl@0
|
621 |
case ECommandSetCharJustification:
|
sl@0
|
622 |
SetCharJustificationL(aBitmapContext);
|
sl@0
|
623 |
break;
|
sl@0
|
624 |
case ECommandSetPenColor:
|
sl@0
|
625 |
SetPenColorL(aBitmapContext);
|
sl@0
|
626 |
break;
|
sl@0
|
627 |
case ECommandSetPenStyle:
|
sl@0
|
628 |
SetPenStyleL(aBitmapContext);
|
sl@0
|
629 |
break;
|
sl@0
|
630 |
case ECommandSetPenSize:
|
sl@0
|
631 |
SetPenSizeL(aBitmapContext);
|
sl@0
|
632 |
break;
|
sl@0
|
633 |
case ECommandSetBrushColor:
|
sl@0
|
634 |
SetBrushColorL(aBitmapContext);
|
sl@0
|
635 |
break;
|
sl@0
|
636 |
case ECommandSetBrushStyle:
|
sl@0
|
637 |
SetBrushStyleL(aBitmapContext);
|
sl@0
|
638 |
break;
|
sl@0
|
639 |
case ECommandSetBrushOrigin:
|
sl@0
|
640 |
SetBrushOriginL(aBitmapContext);
|
sl@0
|
641 |
break;
|
sl@0
|
642 |
case ECommandUseBrushPattern:
|
sl@0
|
643 |
UseBrushPatternL(aBitmapContext);
|
sl@0
|
644 |
break;
|
sl@0
|
645 |
case ECommandDiscardBrushPattern:
|
sl@0
|
646 |
DiscardBrushPattern(aBitmapContext);
|
sl@0
|
647 |
break;
|
sl@0
|
648 |
case ECommandMoveTo:
|
sl@0
|
649 |
MoveToL(aBitmapContext);
|
sl@0
|
650 |
break;
|
sl@0
|
651 |
case ECommandMoveBy:
|
sl@0
|
652 |
MoveByL(aBitmapContext);
|
sl@0
|
653 |
break;
|
sl@0
|
654 |
case ECommandPlot:
|
sl@0
|
655 |
PlotL(aBitmapContext);
|
sl@0
|
656 |
break;
|
sl@0
|
657 |
case ECommandDrawArc:
|
sl@0
|
658 |
DrawArcL(aBitmapContext);
|
sl@0
|
659 |
break;
|
sl@0
|
660 |
case ECommandDrawLine:
|
sl@0
|
661 |
DrawLineL(aBitmapContext);
|
sl@0
|
662 |
break;
|
sl@0
|
663 |
case ECommandDrawLineTo:
|
sl@0
|
664 |
DrawLineToL(aBitmapContext);
|
sl@0
|
665 |
break;
|
sl@0
|
666 |
case ECommandDrawLineBy:
|
sl@0
|
667 |
DrawLineByL(aBitmapContext);
|
sl@0
|
668 |
break;
|
sl@0
|
669 |
case ECommandDrawPolyLine:
|
sl@0
|
670 |
DrawPolyLineL(aBitmapContext);
|
sl@0
|
671 |
break;
|
sl@0
|
672 |
case ECommandDrawPie:
|
sl@0
|
673 |
DrawPieL(aBitmapContext);
|
sl@0
|
674 |
break;
|
sl@0
|
675 |
case ECommandDrawEllipse:
|
sl@0
|
676 |
DrawEllipseL(aBitmapContext);
|
sl@0
|
677 |
break;
|
sl@0
|
678 |
case ECommandDrawRect:
|
sl@0
|
679 |
DrawRectL(aBitmapContext);
|
sl@0
|
680 |
break;
|
sl@0
|
681 |
case ECommandDrawPolygon:
|
sl@0
|
682 |
DrawPolygonL(aBitmapContext);
|
sl@0
|
683 |
break;
|
sl@0
|
684 |
case ECommandDrawRoundRect:
|
sl@0
|
685 |
DrawRoundRectL(aBitmapContext);
|
sl@0
|
686 |
break;
|
sl@0
|
687 |
case ECommandDrawBitmap1:
|
sl@0
|
688 |
DrawBitmap1L(aBitmapContext);
|
sl@0
|
689 |
break;
|
sl@0
|
690 |
case ECommandDrawBitmap2:
|
sl@0
|
691 |
DrawBitmap2L(aBitmapContext);
|
sl@0
|
692 |
break;
|
sl@0
|
693 |
case ECommandDrawBitmap3:
|
sl@0
|
694 |
DrawBitmap3L(aBitmapContext);
|
sl@0
|
695 |
break;
|
sl@0
|
696 |
case ECommandDrawBitmapMasked:
|
sl@0
|
697 |
DrawBitmapMaskedL(aBitmapContext);
|
sl@0
|
698 |
break;
|
sl@0
|
699 |
case ECommandDrawText1:
|
sl@0
|
700 |
DrawText1L(aBitmapContext);
|
sl@0
|
701 |
break;
|
sl@0
|
702 |
case ECommandDrawText2:
|
sl@0
|
703 |
DrawText2L(aBitmapContext);
|
sl@0
|
704 |
break;
|
sl@0
|
705 |
case ECommandDrawText3:
|
sl@0
|
706 |
DrawText3L(aBitmapContext);
|
sl@0
|
707 |
break;
|
sl@0
|
708 |
case ECommandMapColors:
|
sl@0
|
709 |
MapColorsL(aBitmapContext);
|
sl@0
|
710 |
break;
|
sl@0
|
711 |
case ECommandSetClippingRegion:
|
sl@0
|
712 |
SetClippingRegionL(aBitmapContext);
|
sl@0
|
713 |
break;
|
sl@0
|
714 |
case ECommandCancelClippingRegion:
|
sl@0
|
715 |
CancelClippingRegion(aBitmapContext);
|
sl@0
|
716 |
break;
|
sl@0
|
717 |
case ECommandDrawTextVertical1:
|
sl@0
|
718 |
DrawTextVertical1L(aBitmapContext);
|
sl@0
|
719 |
break;
|
sl@0
|
720 |
case ECommandDrawTextVertical2:
|
sl@0
|
721 |
DrawTextVertical2L(aBitmapContext);
|
sl@0
|
722 |
break;
|
sl@0
|
723 |
case ECommandDrawWsGraphic1:
|
sl@0
|
724 |
DrawWsGraphic1L(aWsGraphicResolver);
|
sl@0
|
725 |
break;
|
sl@0
|
726 |
case ECommandDrawWsGraphic2:
|
sl@0
|
727 |
DrawWsGraphic2L(aWsGraphicResolver);
|
sl@0
|
728 |
break;
|
sl@0
|
729 |
case ECommandSetShadowColor:
|
sl@0
|
730 |
SetShadowColorL(aBitmapContext);
|
sl@0
|
731 |
break;
|
sl@0
|
732 |
default:
|
sl@0
|
733 |
User::LeaveIfError(KErrNotFound);
|
sl@0
|
734 |
break;
|
sl@0
|
735 |
}
|
sl@0
|
736 |
}
|
sl@0
|
737 |
}
|
sl@0
|
738 |
|
sl@0
|
739 |
void CCommandBuffer::Clear(CBitmapContext& aBitmapContext) const
|
sl@0
|
740 |
{
|
sl@0
|
741 |
aBitmapContext.Clear();
|
sl@0
|
742 |
}
|
sl@0
|
743 |
|
sl@0
|
744 |
void CCommandBuffer::ClearRectL(CBitmapContext& aBitmapContext)
|
sl@0
|
745 |
{
|
sl@0
|
746 |
TRect rect;
|
sl@0
|
747 |
ReadL<TRect>(rect);
|
sl@0
|
748 |
|
sl@0
|
749 |
aBitmapContext.Clear(rect);
|
sl@0
|
750 |
}
|
sl@0
|
751 |
|
sl@0
|
752 |
void CCommandBuffer::CopyRectL(CBitmapContext& aBitmapContext)
|
sl@0
|
753 |
{
|
sl@0
|
754 |
TPoint point;
|
sl@0
|
755 |
TRect rect;
|
sl@0
|
756 |
|
sl@0
|
757 |
ReadL<TPoint>(point);
|
sl@0
|
758 |
ReadL<TRect>(rect);
|
sl@0
|
759 |
|
sl@0
|
760 |
aBitmapContext.CopyRect(point, rect);
|
sl@0
|
761 |
}
|
sl@0
|
762 |
|
sl@0
|
763 |
void CCommandBuffer::BitBlt1L(CBitmapContext& aBitmapContext)
|
sl@0
|
764 |
{
|
sl@0
|
765 |
TPoint point;
|
sl@0
|
766 |
TInt handle;
|
sl@0
|
767 |
|
sl@0
|
768 |
ReadL<TPoint>(point);
|
sl@0
|
769 |
ReadL<TInt>(handle);
|
sl@0
|
770 |
|
sl@0
|
771 |
if(!iBitmapCache->UseL(handle))
|
sl@0
|
772 |
aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle));
|
sl@0
|
773 |
}
|
sl@0
|
774 |
|
sl@0
|
775 |
void CCommandBuffer::BitBlt2L(CBitmapContext& aBitmapContext)
|
sl@0
|
776 |
{
|
sl@0
|
777 |
TPoint point;
|
sl@0
|
778 |
TRect sourceRect;
|
sl@0
|
779 |
TInt handle;
|
sl@0
|
780 |
|
sl@0
|
781 |
ReadL<TPoint>(point);
|
sl@0
|
782 |
ReadL<TInt>(handle);
|
sl@0
|
783 |
ReadL<TRect>(sourceRect);
|
sl@0
|
784 |
|
sl@0
|
785 |
if(!iBitmapCache->UseL(handle))
|
sl@0
|
786 |
aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle), sourceRect);
|
sl@0
|
787 |
}
|
sl@0
|
788 |
|
sl@0
|
789 |
void CCommandBuffer::BitBltMaskedL(CBitmapContext& aBitmapContext)
|
sl@0
|
790 |
{
|
sl@0
|
791 |
TPoint point;
|
sl@0
|
792 |
TInt bitmapHandle;
|
sl@0
|
793 |
TRect sourceRect;
|
sl@0
|
794 |
TInt maskHandle;
|
sl@0
|
795 |
TBool invertedMask;
|
sl@0
|
796 |
|
sl@0
|
797 |
ReadL<TPoint>(point);
|
sl@0
|
798 |
ReadL<TInt>(bitmapHandle);
|
sl@0
|
799 |
ReadL<TRect>(sourceRect);
|
sl@0
|
800 |
ReadL<TInt>(maskHandle);
|
sl@0
|
801 |
ReadL<TBool>(invertedMask);
|
sl@0
|
802 |
|
sl@0
|
803 |
if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
|
sl@0
|
804 |
aBitmapContext.BitBltMasked(point, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
|
sl@0
|
805 |
}
|
sl@0
|
806 |
|
sl@0
|
807 |
void CCommandBuffer::SetFadedL(CBitmapContext& aBitmapContext)
|
sl@0
|
808 |
{
|
sl@0
|
809 |
TBool faded;
|
sl@0
|
810 |
ReadL<TBool>(faded);
|
sl@0
|
811 |
|
sl@0
|
812 |
aBitmapContext.SetFaded(faded);
|
sl@0
|
813 |
}
|
sl@0
|
814 |
|
sl@0
|
815 |
void CCommandBuffer::SetFadingParametersL(CBitmapContext& aBitmapContext)
|
sl@0
|
816 |
{
|
sl@0
|
817 |
TUint8 blackMap;
|
sl@0
|
818 |
TUint8 whiteMap;
|
sl@0
|
819 |
|
sl@0
|
820 |
ReadL<TUint8>(blackMap);
|
sl@0
|
821 |
ReadL<TUint8>(whiteMap);
|
sl@0
|
822 |
aBitmapContext.SetFadingParameters(blackMap, whiteMap);
|
sl@0
|
823 |
}
|
sl@0
|
824 |
|
sl@0
|
825 |
void CCommandBuffer::AlphaBlendBitmapsL(CBitmapContext& aBitmapContext)
|
sl@0
|
826 |
{
|
sl@0
|
827 |
TPoint destPoint;
|
sl@0
|
828 |
TInt srcHandle;
|
sl@0
|
829 |
TRect sourceRect;
|
sl@0
|
830 |
TInt alphaHandle;
|
sl@0
|
831 |
TPoint alphaPoint;
|
sl@0
|
832 |
|
sl@0
|
833 |
ReadL<TPoint>(destPoint);
|
sl@0
|
834 |
ReadL<TInt>(srcHandle);
|
sl@0
|
835 |
ReadL<TRect>(sourceRect);
|
sl@0
|
836 |
ReadL<TInt>(alphaHandle);
|
sl@0
|
837 |
ReadL<TPoint>(alphaPoint);
|
sl@0
|
838 |
|
sl@0
|
839 |
if(!iBitmapCache->UseL(srcHandle) && !iBitmapCache->UseL(alphaHandle))
|
sl@0
|
840 |
aBitmapContext.AlphaBlendBitmaps(destPoint, iBitmapCache->Resolve(srcHandle), sourceRect, iBitmapCache->Resolve(alphaHandle), alphaPoint);
|
sl@0
|
841 |
}
|
sl@0
|
842 |
|
sl@0
|
843 |
void CCommandBuffer::SetOriginL(CBitmapContext& aBitmapContext)
|
sl@0
|
844 |
{
|
sl@0
|
845 |
ReadL<TPoint>(iOrigin);
|
sl@0
|
846 |
aBitmapContext.SetOrigin(iMasterOrigin + iOrigin);
|
sl@0
|
847 |
|
sl@0
|
848 |
}
|
sl@0
|
849 |
|
sl@0
|
850 |
void CCommandBuffer::SetDrawModeL(CBitmapContext& aBitmapContext)
|
sl@0
|
851 |
{
|
sl@0
|
852 |
CGraphicsContext::TDrawMode drawMode;
|
sl@0
|
853 |
ReadL<CGraphicsContext::TDrawMode>(drawMode);
|
sl@0
|
854 |
aBitmapContext.SetDrawMode(drawMode);
|
sl@0
|
855 |
}
|
sl@0
|
856 |
|
sl@0
|
857 |
void CCommandBuffer::SetClippingRectL(CBitmapContext& aBitmapContext)
|
sl@0
|
858 |
{
|
sl@0
|
859 |
TRect rect;
|
sl@0
|
860 |
ReadL<TRect>(rect);
|
sl@0
|
861 |
rect.Intersection(iMasterClippingRect);
|
sl@0
|
862 |
rect.Intersection(iDrawSectionRect);
|
sl@0
|
863 |
aBitmapContext.SetClippingRect(rect);
|
sl@0
|
864 |
}
|
sl@0
|
865 |
|
sl@0
|
866 |
void CCommandBuffer::CancelClippingRect(CBitmapContext& aBitmapContext)
|
sl@0
|
867 |
{
|
sl@0
|
868 |
TRect rect = iMasterClippingRect;
|
sl@0
|
869 |
rect.Intersection(iDrawSectionRect);
|
sl@0
|
870 |
aBitmapContext.SetClippingRect(rect);
|
sl@0
|
871 |
}
|
sl@0
|
872 |
|
sl@0
|
873 |
|
sl@0
|
874 |
void CCommandBuffer::Reset(CBitmapContext& aBitmapContext)
|
sl@0
|
875 |
{
|
sl@0
|
876 |
aBitmapContext.Reset();
|
sl@0
|
877 |
|
sl@0
|
878 |
const TBool isFbsBitGc= aBitmapContext.IsFbsBitGc();
|
sl@0
|
879 |
if (isFbsBitGc)
|
sl@0
|
880 |
{
|
sl@0
|
881 |
TRgb brushColor = KRgbWhite;
|
sl@0
|
882 |
brushColor.SetAlpha(0); //make transparent
|
sl@0
|
883 |
aBitmapContext.SetBrushColor(brushColor);
|
sl@0
|
884 |
}
|
sl@0
|
885 |
|
sl@0
|
886 |
aBitmapContext.SetOrigin(iMasterOrigin);
|
sl@0
|
887 |
if(iActiveMasterClippingRegion)
|
sl@0
|
888 |
aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
|
sl@0
|
889 |
CancelClippingRect(aBitmapContext);
|
sl@0
|
890 |
iOrigin = TPoint(0,0);
|
sl@0
|
891 |
iClippingRegion.Clear();
|
sl@0
|
892 |
iParsedClippingRegionIsSet = EFalse;
|
sl@0
|
893 |
}
|
sl@0
|
894 |
|
sl@0
|
895 |
void CCommandBuffer::UseFontL(CBitmapContext& aBitmapContext)
|
sl@0
|
896 |
{
|
sl@0
|
897 |
TInt fontHandle;
|
sl@0
|
898 |
ReadL<TInt>(fontHandle);
|
sl@0
|
899 |
if(iFontCache->UseL(fontHandle)) return;
|
sl@0
|
900 |
aBitmapContext.UseFont(iFontCache->Resolve(fontHandle));
|
sl@0
|
901 |
}
|
sl@0
|
902 |
|
sl@0
|
903 |
void CCommandBuffer::DiscardFont(CBitmapContext& aBitmapContext) const
|
sl@0
|
904 |
{
|
sl@0
|
905 |
aBitmapContext.DiscardFont();
|
sl@0
|
906 |
}
|
sl@0
|
907 |
|
sl@0
|
908 |
void CCommandBuffer::SetUnderlineStyleL(CBitmapContext& aBitmapContext)
|
sl@0
|
909 |
{
|
sl@0
|
910 |
TFontUnderline underlineStyle;
|
sl@0
|
911 |
ReadL<TFontUnderline>(underlineStyle);
|
sl@0
|
912 |
aBitmapContext.SetUnderlineStyle(underlineStyle);
|
sl@0
|
913 |
}
|
sl@0
|
914 |
|
sl@0
|
915 |
void CCommandBuffer::SetStrikethroughStyleL(CBitmapContext& aBitmapContext)
|
sl@0
|
916 |
{
|
sl@0
|
917 |
TFontStrikethrough strikethroughStyle;
|
sl@0
|
918 |
ReadL<TFontStrikethrough>(strikethroughStyle);
|
sl@0
|
919 |
aBitmapContext.SetStrikethroughStyle(strikethroughStyle);
|
sl@0
|
920 |
}
|
sl@0
|
921 |
|
sl@0
|
922 |
void CCommandBuffer::SetWordJustificationL(CBitmapContext& aBitmapContext)
|
sl@0
|
923 |
{
|
sl@0
|
924 |
TInt excessWidth;
|
sl@0
|
925 |
TInt numGaps;
|
sl@0
|
926 |
|
sl@0
|
927 |
ReadL<TInt>(excessWidth);
|
sl@0
|
928 |
ReadL<TInt>(numGaps);
|
sl@0
|
929 |
aBitmapContext.SetWordJustification(excessWidth, numGaps);
|
sl@0
|
930 |
}
|
sl@0
|
931 |
|
sl@0
|
932 |
void CCommandBuffer::SetCharJustificationL(CBitmapContext& aBitmapContext)
|
sl@0
|
933 |
{
|
sl@0
|
934 |
TInt excessWidth;
|
sl@0
|
935 |
TInt numChars;
|
sl@0
|
936 |
|
sl@0
|
937 |
ReadL<TInt>(excessWidth);
|
sl@0
|
938 |
ReadL<TInt>(numChars);
|
sl@0
|
939 |
aBitmapContext.SetCharJustification(excessWidth, numChars);
|
sl@0
|
940 |
}
|
sl@0
|
941 |
|
sl@0
|
942 |
void CCommandBuffer::SetPenColorL(CBitmapContext& aBitmapContext)
|
sl@0
|
943 |
{
|
sl@0
|
944 |
TRgb color;
|
sl@0
|
945 |
ReadL<TRgb>(color);
|
sl@0
|
946 |
|
sl@0
|
947 |
aBitmapContext.SetPenColor(color);
|
sl@0
|
948 |
}
|
sl@0
|
949 |
|
sl@0
|
950 |
void CCommandBuffer::SetPenStyleL(CBitmapContext& aBitmapContext)
|
sl@0
|
951 |
{
|
sl@0
|
952 |
CGraphicsContext::TPenStyle penStyle;
|
sl@0
|
953 |
ReadL<CGraphicsContext::TPenStyle>(penStyle);
|
sl@0
|
954 |
|
sl@0
|
955 |
aBitmapContext.SetPenStyle(penStyle);
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
void CCommandBuffer::SetPenSizeL(CBitmapContext& aBitmapContext)
|
sl@0
|
959 |
{
|
sl@0
|
960 |
TSize size;
|
sl@0
|
961 |
ReadL<TSize>(size);
|
sl@0
|
962 |
|
sl@0
|
963 |
aBitmapContext.SetPenSize(size);
|
sl@0
|
964 |
}
|
sl@0
|
965 |
|
sl@0
|
966 |
void CCommandBuffer::SetBrushColorL(CBitmapContext& aBitmapContext)
|
sl@0
|
967 |
{
|
sl@0
|
968 |
TRgb color;
|
sl@0
|
969 |
ReadL<TRgb>(color);
|
sl@0
|
970 |
|
sl@0
|
971 |
aBitmapContext.SetBrushColor(color);
|
sl@0
|
972 |
}
|
sl@0
|
973 |
|
sl@0
|
974 |
void CCommandBuffer::SetBrushStyleL(CBitmapContext& aBitmapContext)
|
sl@0
|
975 |
{
|
sl@0
|
976 |
CGraphicsContext::TBrushStyle brushStyle;
|
sl@0
|
977 |
ReadL<CGraphicsContext::TBrushStyle>(brushStyle);
|
sl@0
|
978 |
|
sl@0
|
979 |
aBitmapContext.SetBrushStyle(brushStyle);
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
void CCommandBuffer::SetBrushOriginL(CBitmapContext& aBitmapContext)
|
sl@0
|
983 |
{
|
sl@0
|
984 |
TPoint point;
|
sl@0
|
985 |
ReadL<TPoint>(point);
|
sl@0
|
986 |
|
sl@0
|
987 |
aBitmapContext.SetBrushOrigin(point);
|
sl@0
|
988 |
}
|
sl@0
|
989 |
|
sl@0
|
990 |
void CCommandBuffer::UseBrushPatternL(CBitmapContext& aBitmapContext)
|
sl@0
|
991 |
{
|
sl@0
|
992 |
TInt deviceHandle;
|
sl@0
|
993 |
ReadL<TInt>(deviceHandle);
|
sl@0
|
994 |
|
sl@0
|
995 |
if(iBitmapCache->UseL(deviceHandle)) return;
|
sl@0
|
996 |
aBitmapContext.UseBrushPattern(iBitmapCache->Resolve(deviceHandle));
|
sl@0
|
997 |
}
|
sl@0
|
998 |
|
sl@0
|
999 |
void CCommandBuffer::DiscardBrushPattern(CBitmapContext& aBitmapContext) const
|
sl@0
|
1000 |
{
|
sl@0
|
1001 |
aBitmapContext.DiscardBrushPattern();
|
sl@0
|
1002 |
}
|
sl@0
|
1003 |
|
sl@0
|
1004 |
void CCommandBuffer::MoveToL(CBitmapContext& aBitmapContext)
|
sl@0
|
1005 |
{
|
sl@0
|
1006 |
TPoint point;
|
sl@0
|
1007 |
ReadL<TPoint>(point);
|
sl@0
|
1008 |
|
sl@0
|
1009 |
aBitmapContext.MoveTo(point);
|
sl@0
|
1010 |
}
|
sl@0
|
1011 |
|
sl@0
|
1012 |
void CCommandBuffer::MoveByL(CBitmapContext& aBitmapContext)
|
sl@0
|
1013 |
{
|
sl@0
|
1014 |
TPoint point;
|
sl@0
|
1015 |
ReadL<TPoint>(point);
|
sl@0
|
1016 |
|
sl@0
|
1017 |
aBitmapContext.MoveBy(point);
|
sl@0
|
1018 |
}
|
sl@0
|
1019 |
|
sl@0
|
1020 |
void CCommandBuffer::PlotL(CBitmapContext& aBitmapContext)
|
sl@0
|
1021 |
{
|
sl@0
|
1022 |
TPoint point;
|
sl@0
|
1023 |
ReadL<TPoint>(point);
|
sl@0
|
1024 |
|
sl@0
|
1025 |
aBitmapContext.Plot(point);
|
sl@0
|
1026 |
}
|
sl@0
|
1027 |
|
sl@0
|
1028 |
void CCommandBuffer::DrawArcL(CBitmapContext& aBitmapContext)
|
sl@0
|
1029 |
{
|
sl@0
|
1030 |
TRect rect;
|
sl@0
|
1031 |
TPoint start;
|
sl@0
|
1032 |
TPoint end;
|
sl@0
|
1033 |
ReadL<TRect>(rect);
|
sl@0
|
1034 |
ReadL<TPoint>(start);
|
sl@0
|
1035 |
ReadL<TPoint>(end);
|
sl@0
|
1036 |
|
sl@0
|
1037 |
aBitmapContext.DrawArc(rect, start, end);
|
sl@0
|
1038 |
}
|
sl@0
|
1039 |
|
sl@0
|
1040 |
void CCommandBuffer::DrawLineL(CBitmapContext& aBitmapContext)
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
TPoint point1;
|
sl@0
|
1043 |
TPoint point2;
|
sl@0
|
1044 |
ReadL<TPoint>(point1);
|
sl@0
|
1045 |
ReadL<TPoint>(point2);
|
sl@0
|
1046 |
|
sl@0
|
1047 |
aBitmapContext.DrawLine(point1, point2);
|
sl@0
|
1048 |
}
|
sl@0
|
1049 |
|
sl@0
|
1050 |
void CCommandBuffer::DrawLineToL(CBitmapContext& aBitmapContext)
|
sl@0
|
1051 |
{
|
sl@0
|
1052 |
TPoint point;
|
sl@0
|
1053 |
ReadL<TPoint>(point);
|
sl@0
|
1054 |
|
sl@0
|
1055 |
aBitmapContext.DrawLineTo(point);
|
sl@0
|
1056 |
}
|
sl@0
|
1057 |
|
sl@0
|
1058 |
void CCommandBuffer::DrawLineByL(CBitmapContext& aBitmapContext)
|
sl@0
|
1059 |
{
|
sl@0
|
1060 |
TPoint point;
|
sl@0
|
1061 |
ReadL<TPoint>(point);
|
sl@0
|
1062 |
|
sl@0
|
1063 |
aBitmapContext.DrawLineBy(point);
|
sl@0
|
1064 |
}
|
sl@0
|
1065 |
|
sl@0
|
1066 |
void CCommandBuffer::DrawPolyLineL(CBitmapContext& aBitmapContext)
|
sl@0
|
1067 |
{
|
sl@0
|
1068 |
TInt nrOfPoints;
|
sl@0
|
1069 |
ReadL<TInt>(nrOfPoints);
|
sl@0
|
1070 |
|
sl@0
|
1071 |
CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
|
sl@0
|
1072 |
CleanupStack::PushL(pointList);
|
sl@0
|
1073 |
for(TInt i = 0; i < nrOfPoints; i++)
|
sl@0
|
1074 |
{
|
sl@0
|
1075 |
TPoint point;
|
sl@0
|
1076 |
ReadL<TPoint>(point);
|
sl@0
|
1077 |
pointList->AppendL(point);
|
sl@0
|
1078 |
}
|
sl@0
|
1079 |
|
sl@0
|
1080 |
aBitmapContext.DrawPolyLine(pointList);
|
sl@0
|
1081 |
CleanupStack::PopAndDestroy(pointList);
|
sl@0
|
1082 |
}
|
sl@0
|
1083 |
|
sl@0
|
1084 |
void CCommandBuffer::DrawPieL(CBitmapContext& aBitmapContext)
|
sl@0
|
1085 |
{
|
sl@0
|
1086 |
TRect rect;
|
sl@0
|
1087 |
TPoint start;
|
sl@0
|
1088 |
TPoint end;
|
sl@0
|
1089 |
ReadL<TRect>(rect);
|
sl@0
|
1090 |
ReadL<TPoint>(start);
|
sl@0
|
1091 |
ReadL<TPoint>(end);
|
sl@0
|
1092 |
|
sl@0
|
1093 |
aBitmapContext.DrawPie(rect, start, end);
|
sl@0
|
1094 |
}
|
sl@0
|
1095 |
|
sl@0
|
1096 |
void CCommandBuffer::DrawEllipseL(CBitmapContext& aBitmapContext)
|
sl@0
|
1097 |
{
|
sl@0
|
1098 |
TRect rect;
|
sl@0
|
1099 |
ReadL<TRect>(rect);
|
sl@0
|
1100 |
|
sl@0
|
1101 |
aBitmapContext.DrawEllipse(rect);
|
sl@0
|
1102 |
}
|
sl@0
|
1103 |
|
sl@0
|
1104 |
void CCommandBuffer::DrawRectL(CBitmapContext& aBitmapContext)
|
sl@0
|
1105 |
{
|
sl@0
|
1106 |
TRect rect;
|
sl@0
|
1107 |
ReadL<TRect>(rect);
|
sl@0
|
1108 |
|
sl@0
|
1109 |
aBitmapContext.DrawRect(rect);
|
sl@0
|
1110 |
}
|
sl@0
|
1111 |
|
sl@0
|
1112 |
void CCommandBuffer::DrawRoundRectL(CBitmapContext& aBitmapContext)
|
sl@0
|
1113 |
{
|
sl@0
|
1114 |
TRect rect;
|
sl@0
|
1115 |
TSize ellipse;
|
sl@0
|
1116 |
ReadL<TRect>(rect);
|
sl@0
|
1117 |
ReadL<TSize>(ellipse);
|
sl@0
|
1118 |
|
sl@0
|
1119 |
aBitmapContext.DrawRoundRect(rect, ellipse);
|
sl@0
|
1120 |
}
|
sl@0
|
1121 |
|
sl@0
|
1122 |
void CCommandBuffer::DrawPolygonL(CBitmapContext& aBitmapContext)
|
sl@0
|
1123 |
{
|
sl@0
|
1124 |
TInt nrOfPoints;
|
sl@0
|
1125 |
ReadL<TInt>(nrOfPoints);
|
sl@0
|
1126 |
|
sl@0
|
1127 |
CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
|
sl@0
|
1128 |
CleanupStack::PushL(pointList);
|
sl@0
|
1129 |
for(TInt i = 0; i < nrOfPoints; i++)
|
sl@0
|
1130 |
{
|
sl@0
|
1131 |
TPoint point;
|
sl@0
|
1132 |
ReadL<TPoint>(point);
|
sl@0
|
1133 |
pointList->AppendL(point);
|
sl@0
|
1134 |
}
|
sl@0
|
1135 |
|
sl@0
|
1136 |
CGraphicsContext::TFillRule fillRule;
|
sl@0
|
1137 |
ReadL<CGraphicsContext::TFillRule>(fillRule);
|
sl@0
|
1138 |
aBitmapContext.DrawPolygon(pointList, fillRule);
|
sl@0
|
1139 |
CleanupStack::PopAndDestroy(pointList);
|
sl@0
|
1140 |
}
|
sl@0
|
1141 |
|
sl@0
|
1142 |
void CCommandBuffer::DrawBitmap1L(CBitmapContext& aBitmapContext)
|
sl@0
|
1143 |
{
|
sl@0
|
1144 |
TPoint topLeft;
|
sl@0
|
1145 |
TInt bitmapHandle;
|
sl@0
|
1146 |
|
sl@0
|
1147 |
ReadL<TPoint>(topLeft);
|
sl@0
|
1148 |
ReadL<TInt>(bitmapHandle);
|
sl@0
|
1149 |
|
sl@0
|
1150 |
if(!iBitmapCache->UseL(bitmapHandle))
|
sl@0
|
1151 |
aBitmapContext.DrawBitmap(topLeft, iBitmapCache->Resolve(bitmapHandle));
|
sl@0
|
1152 |
}
|
sl@0
|
1153 |
|
sl@0
|
1154 |
void CCommandBuffer::DrawBitmap2L(CBitmapContext& aBitmapContext)
|
sl@0
|
1155 |
{
|
sl@0
|
1156 |
TRect destRect;
|
sl@0
|
1157 |
TInt bitmapHandle;
|
sl@0
|
1158 |
|
sl@0
|
1159 |
ReadL<TRect>(destRect);
|
sl@0
|
1160 |
ReadL<TInt>(bitmapHandle);
|
sl@0
|
1161 |
|
sl@0
|
1162 |
if(!iBitmapCache->UseL(bitmapHandle))
|
sl@0
|
1163 |
aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle));
|
sl@0
|
1164 |
}
|
sl@0
|
1165 |
|
sl@0
|
1166 |
void CCommandBuffer::DrawBitmap3L(CBitmapContext& aBitmapContext)
|
sl@0
|
1167 |
{
|
sl@0
|
1168 |
TRect destRect;
|
sl@0
|
1169 |
TRect sourceRect;
|
sl@0
|
1170 |
TInt bitmapHandle;
|
sl@0
|
1171 |
|
sl@0
|
1172 |
ReadL<TRect>(destRect);
|
sl@0
|
1173 |
ReadL<TInt>(bitmapHandle);
|
sl@0
|
1174 |
ReadL<TRect>(sourceRect);
|
sl@0
|
1175 |
|
sl@0
|
1176 |
if(!iBitmapCache->UseL(bitmapHandle))
|
sl@0
|
1177 |
aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect);
|
sl@0
|
1178 |
}
|
sl@0
|
1179 |
|
sl@0
|
1180 |
void CCommandBuffer::DrawBitmapMaskedL(CBitmapContext& aBitmapContext)
|
sl@0
|
1181 |
{
|
sl@0
|
1182 |
TRect destRect;
|
sl@0
|
1183 |
TRect sourceRect;
|
sl@0
|
1184 |
TInt bitmapHandle;
|
sl@0
|
1185 |
TInt maskHandle;
|
sl@0
|
1186 |
TBool invertedMask;
|
sl@0
|
1187 |
|
sl@0
|
1188 |
ReadL<TRect>(destRect);
|
sl@0
|
1189 |
ReadL<TInt>(bitmapHandle);
|
sl@0
|
1190 |
ReadL<TRect>(sourceRect);
|
sl@0
|
1191 |
ReadL<TInt>(maskHandle);
|
sl@0
|
1192 |
ReadL<TBool>(invertedMask);
|
sl@0
|
1193 |
|
sl@0
|
1194 |
if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
|
sl@0
|
1195 |
aBitmapContext.DrawBitmapMasked(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
|
sl@0
|
1196 |
}
|
sl@0
|
1197 |
|
sl@0
|
1198 |
void CCommandBuffer::DrawText1L(CBitmapContext& aBitmapContext)
|
sl@0
|
1199 |
{
|
sl@0
|
1200 |
TPoint point;
|
sl@0
|
1201 |
|
sl@0
|
1202 |
TPtrC16 text;
|
sl@0
|
1203 |
ReadTextLC(text);
|
sl@0
|
1204 |
|
sl@0
|
1205 |
ReadL<TPoint>(point);
|
sl@0
|
1206 |
|
sl@0
|
1207 |
aBitmapContext.DrawText(text, point);
|
sl@0
|
1208 |
CleanupStack::PopAndDestroy(); // ReadTextLC
|
sl@0
|
1209 |
}
|
sl@0
|
1210 |
|
sl@0
|
1211 |
void CCommandBuffer::DrawText2L(CBitmapContext& aBitmapContext)
|
sl@0
|
1212 |
{
|
sl@0
|
1213 |
TRect box;
|
sl@0
|
1214 |
TInt baselineOffset;
|
sl@0
|
1215 |
CGraphicsContext::TTextAlign horiz;
|
sl@0
|
1216 |
TInt leftMargin;
|
sl@0
|
1217 |
|
sl@0
|
1218 |
TPtrC16 text;
|
sl@0
|
1219 |
ReadTextLC(text);
|
sl@0
|
1220 |
|
sl@0
|
1221 |
ReadL<TRect>(box);
|
sl@0
|
1222 |
ReadL<TInt>(baselineOffset);
|
sl@0
|
1223 |
ReadL<CGraphicsContext::TTextAlign>(horiz);
|
sl@0
|
1224 |
ReadL<TInt>(leftMargin);
|
sl@0
|
1225 |
|
sl@0
|
1226 |
aBitmapContext.DrawText(text, box, baselineOffset, horiz, leftMargin);
|
sl@0
|
1227 |
CleanupStack::PopAndDestroy(); // ReadTextLC
|
sl@0
|
1228 |
}
|
sl@0
|
1229 |
|
sl@0
|
1230 |
void CCommandBuffer::DrawText3L(CBitmapContext& aBitmapContext)
|
sl@0
|
1231 |
{
|
sl@0
|
1232 |
TPoint point;
|
sl@0
|
1233 |
CGraphicsContext::TDrawTextParam param;
|
sl@0
|
1234 |
|
sl@0
|
1235 |
TPtrC16 text;
|
sl@0
|
1236 |
ReadTextLC(text);
|
sl@0
|
1237 |
|
sl@0
|
1238 |
ReadL<TPoint>(point);
|
sl@0
|
1239 |
ReadL<CGraphicsContext::TDrawTextParam>(param);
|
sl@0
|
1240 |
|
sl@0
|
1241 |
aBitmapContext.DrawText(text, point, param);
|
sl@0
|
1242 |
CleanupStack::PopAndDestroy(); //ReadTextLC
|
sl@0
|
1243 |
}
|
sl@0
|
1244 |
|
sl@0
|
1245 |
void CCommandBuffer::MapColorsL(CBitmapContext& aBitmapContext)
|
sl@0
|
1246 |
{
|
sl@0
|
1247 |
TRect rect;
|
sl@0
|
1248 |
TInt nrOfPairs;
|
sl@0
|
1249 |
ReadL<TRect>(rect);
|
sl@0
|
1250 |
ReadL<TInt>(nrOfPairs);
|
sl@0
|
1251 |
|
sl@0
|
1252 |
TRgb* colorList = new (ELeave) TRgb [nrOfPairs*2]; // Every pair has two colors
|
sl@0
|
1253 |
CleanupArrayDeletePushL(colorList);
|
sl@0
|
1254 |
for(TInt i = 0; i < nrOfPairs; i++)
|
sl@0
|
1255 |
{
|
sl@0
|
1256 |
TRgb color;
|
sl@0
|
1257 |
ReadL<TRgb>(color);
|
sl@0
|
1258 |
colorList[i] = color;
|
sl@0
|
1259 |
|
sl@0
|
1260 |
ReadL<TRgb>(color);
|
sl@0
|
1261 |
colorList[i+1] = color;
|
sl@0
|
1262 |
}
|
sl@0
|
1263 |
|
sl@0
|
1264 |
TBool mapForwards;
|
sl@0
|
1265 |
ReadL<TBool>(mapForwards);
|
sl@0
|
1266 |
|
sl@0
|
1267 |
aBitmapContext.MapColors(rect, colorList, nrOfPairs, mapForwards);
|
sl@0
|
1268 |
CleanupStack::PopAndDestroy(colorList);
|
sl@0
|
1269 |
}
|
sl@0
|
1270 |
|
sl@0
|
1271 |
void CCommandBuffer::SetClippingRegionL(CBitmapContext& aBitmapContext)
|
sl@0
|
1272 |
{
|
sl@0
|
1273 |
TInt nrOfRects;
|
sl@0
|
1274 |
ReadL<TInt>(nrOfRects);
|
sl@0
|
1275 |
|
sl@0
|
1276 |
TRect rect;
|
sl@0
|
1277 |
iClippingRegion.Clear();
|
sl@0
|
1278 |
for(TInt i = 0; i < nrOfRects; i++)
|
sl@0
|
1279 |
{
|
sl@0
|
1280 |
ReadL<TRect>(rect);
|
sl@0
|
1281 |
// rect.Move(iMasterOrigin);
|
sl@0
|
1282 |
iClippingRegion.AddRect(rect);
|
sl@0
|
1283 |
}
|
sl@0
|
1284 |
|
sl@0
|
1285 |
iParsedClippingRegionIsSet = ETrue;
|
sl@0
|
1286 |
if(iActiveMasterClippingRegion)
|
sl@0
|
1287 |
iClippingRegion.Intersect(*iActiveMasterClippingRegion);
|
sl@0
|
1288 |
|
sl@0
|
1289 |
aBitmapContext.SetClippingRegion(iClippingRegion);
|
sl@0
|
1290 |
}
|
sl@0
|
1291 |
|
sl@0
|
1292 |
void CCommandBuffer::CancelClippingRegion(CBitmapContext& aBitmapContext)
|
sl@0
|
1293 |
{
|
sl@0
|
1294 |
iClippingRegion.Clear();
|
sl@0
|
1295 |
iParsedClippingRegionIsSet = EFalse;
|
sl@0
|
1296 |
if(iActiveMasterClippingRegion)
|
sl@0
|
1297 |
aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
|
sl@0
|
1298 |
else
|
sl@0
|
1299 |
aBitmapContext.CancelClippingRegion();
|
sl@0
|
1300 |
}
|
sl@0
|
1301 |
|
sl@0
|
1302 |
void CCommandBuffer::DrawTextVertical1L(CBitmapContext& aBitmapContext)
|
sl@0
|
1303 |
{
|
sl@0
|
1304 |
TPoint point;
|
sl@0
|
1305 |
TBool up;
|
sl@0
|
1306 |
|
sl@0
|
1307 |
TPtrC16 text;
|
sl@0
|
1308 |
ReadTextLC(text);
|
sl@0
|
1309 |
|
sl@0
|
1310 |
ReadL<TPoint>(point);
|
sl@0
|
1311 |
ReadL<TBool>(up);
|
sl@0
|
1312 |
|
sl@0
|
1313 |
aBitmapContext.DrawTextVertical(text, point, up);
|
sl@0
|
1314 |
CleanupStack::PopAndDestroy(); // ReadTextLC
|
sl@0
|
1315 |
}
|
sl@0
|
1316 |
|
sl@0
|
1317 |
void CCommandBuffer::DrawTextVertical2L(CBitmapContext& aBitmapContext)
|
sl@0
|
1318 |
{
|
sl@0
|
1319 |
TRect box;
|
sl@0
|
1320 |
TInt baselineOffset;
|
sl@0
|
1321 |
TBool up;
|
sl@0
|
1322 |
CGraphicsContext::TTextAlign vertical;
|
sl@0
|
1323 |
TInt margin;
|
sl@0
|
1324 |
|
sl@0
|
1325 |
TPtrC16 text;
|
sl@0
|
1326 |
ReadTextLC(text);
|
sl@0
|
1327 |
|
sl@0
|
1328 |
ReadL<TRect>(box);
|
sl@0
|
1329 |
ReadL<TInt>(baselineOffset);
|
sl@0
|
1330 |
ReadL<TBool>(up);
|
sl@0
|
1331 |
ReadL<CGraphicsContext::TTextAlign>(vertical);
|
sl@0
|
1332 |
ReadL<TInt>(margin);
|
sl@0
|
1333 |
|
sl@0
|
1334 |
aBitmapContext.DrawTextVertical(text, box, baselineOffset, up, vertical, margin);
|
sl@0
|
1335 |
CleanupStack::PopAndDestroy(); //ReadTextLC
|
sl@0
|
1336 |
}
|
sl@0
|
1337 |
|
sl@0
|
1338 |
void CCommandBuffer::DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver)
|
sl@0
|
1339 |
{
|
sl@0
|
1340 |
TInt id;
|
sl@0
|
1341 |
TBool isUid;
|
sl@0
|
1342 |
TRect rect;
|
sl@0
|
1343 |
|
sl@0
|
1344 |
ReadL<TInt>(id);
|
sl@0
|
1345 |
ReadL<TBool>(isUid);
|
sl@0
|
1346 |
ReadL<TRect>(rect);
|
sl@0
|
1347 |
|
sl@0
|
1348 |
aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,KNullDesC8());
|
sl@0
|
1349 |
}
|
sl@0
|
1350 |
|
sl@0
|
1351 |
void CCommandBuffer::DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver)
|
sl@0
|
1352 |
{
|
sl@0
|
1353 |
TInt id;
|
sl@0
|
1354 |
TBool isUid;
|
sl@0
|
1355 |
TRect rect;
|
sl@0
|
1356 |
|
sl@0
|
1357 |
ReadL<TInt>(id);
|
sl@0
|
1358 |
ReadL<TBool>(isUid);
|
sl@0
|
1359 |
ReadL<TRect>(rect);
|
sl@0
|
1360 |
TPtrC8 text8;
|
sl@0
|
1361 |
ReadTextLC(text8);
|
sl@0
|
1362 |
|
sl@0
|
1363 |
aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,text8);
|
sl@0
|
1364 |
CleanupStack::PopAndDestroy(); //ReadTextLC
|
sl@0
|
1365 |
}
|
sl@0
|
1366 |
|
sl@0
|
1367 |
void CCommandBuffer::SetShadowColorL(CBitmapContext& aBitmapContext)
|
sl@0
|
1368 |
{
|
sl@0
|
1369 |
TRgb shadowColor;
|
sl@0
|
1370 |
ReadL<TRgb>(shadowColor);
|
sl@0
|
1371 |
|
sl@0
|
1372 |
aBitmapContext.SetShadowColor(shadowColor);
|
sl@0
|
1373 |
}
|