1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/remotegc/CommandBuffer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1373 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "Graphics/WSGRAPHICMSGBUF.H"
1.20 +#include "DrawSection.h"
1.21 +#include "CommandBuffer.h"
1.22 +#include "BitmapCache.h"
1.23 +#include "FontsCache.h"
1.24 +
1.25 +const TInt KBufferSize = 1024;
1.26 +
1.27 +EXPORT_C CCommandBuffer* CCommandBuffer::NewL()
1.28 + {
1.29 + CCommandBuffer* buffer = new (ELeave) CCommandBuffer;
1.30 + CleanupStack::PushL(buffer);
1.31 + buffer->ConstructL();
1.32 + CleanupStack::Pop(buffer);
1.33 + return buffer;
1.34 + }
1.35 +
1.36 +CCommandBuffer::CCommandBuffer()
1.37 + {
1.38 + }
1.39 +
1.40 +EXPORT_C CCommandBuffer::~CCommandBuffer()
1.41 + {
1.42 + iDrawSections.ResetAndDestroy();
1.43 + iDrawSections.Close();
1.44 + iBufReadStream.Close();
1.45 + iClippingRegion.Close();
1.46 +
1.47 + iBufRead = NULL;
1.48 + delete iRecordSegBuf;
1.49 + delete iBitmapCache;
1.50 + delete iFontCache;
1.51 + }
1.52 +
1.53 +void CCommandBuffer::ConstructL()
1.54 + {
1.55 + iBitmapCache = new (ELeave) CBitmapCache;
1.56 + iRecordSegBuf = CBufSeg::NewL(KBufferSize);
1.57 + iFontCache = new (ELeave) CFontsCache;
1.58 + }
1.59 +
1.60 +/**
1.61 +Resets the entire commandbuffer.
1.62 +*/
1.63 +void CCommandBuffer::Reset()
1.64 + {
1.65 + if(iRecordSegBuf)
1.66 + iRecordSegBuf->Reset();
1.67 +
1.68 + iError = KErrNone;
1.69 + iOrigin = TPoint(0,0);
1.70 + iClippingRegion.Clear();
1.71 + iDrawSections.ResetAndDestroy();
1.72 + }
1.73 +
1.74 +/**
1.75 +Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
1.76 +If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
1.77 +otherwise only sections which has not been externalized before will be externalized. Note that if only
1.78 +not externalized sections is asked for, the flag will be reset on that section so next call
1.79 +to ExternalizeLC will not externalize that section.
1.80 +
1.81 +@param aMsgBuf A buffer used to externalize the commandbuffer to.
1.82 +@param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
1.83 +*/
1.84 +void CCommandBuffer::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
1.85 + {
1.86 + // Add drawsections to aMsgBuf
1.87 + const TInt sectionCount = iDrawSections.Count();
1.88 + for(TInt j = 0; j < sectionCount; j++)
1.89 + {
1.90 + CDrawSection* section = iDrawSections[j];
1.91 + if(aEntireBuffer || !section->HasBeenExternalized())
1.92 + {
1.93 + section->ExternalizeL(aMsgBuf);
1.94 + section->SetHasBeenExternalized(ETrue);
1.95 + }
1.96 + }
1.97 + }
1.98 +
1.99 +/**
1.100 +Internalizes the entire commandbuffer from buffer containing information about all drawsections and drawcommands.
1.101 +
1.102 +@param aBuf A buffer containing information about all drawsections and drawcommands.
1.103 +*/
1.104 +EXPORT_C void CCommandBuffer::InternalizeL(const TDesC8& aBuf)
1.105 + {
1.106 + // Reset the commandbuffer
1.107 + iRecordSegBuf->Reset();
1.108 + InternalizeAppendL(aBuf);
1.109 + }
1.110 +
1.111 +/**
1.112 +Internalizes and appends from a buffer containing information about some drawsections and drawcommands.
1.113 +
1.114 +@param aBuf A buffer containing information about some drawsections and drawcommands.
1.115 +*/
1.116 +EXPORT_C void CCommandBuffer::InternalizeAppendL(const TDesC8& aBuf)
1.117 + {
1.118 + // Reset the commandbuffer
1.119 + TWsGraphicMsgBufParser parser(aBuf);
1.120 +
1.121 + // Load drawsections
1.122 + const TInt count = parser.Count();
1.123 + for(TInt i = 0; i < count; i++)
1.124 + {
1.125 + CDrawSection* drawSection = CDrawSection::NewL();;
1.126 + CleanupStack::PushL(drawSection);
1.127 + User::LeaveIfError(drawSection->LoadL(parser, i));
1.128 + iDrawSections.AppendL(drawSection);
1.129 + CleanupStack::Pop(drawSection);
1.130 + }
1.131 +
1.132 + // Tidy the iDrawSection array so completely blocked sections will be removed
1.133 + Tidy();
1.134 + }
1.135 +
1.136 +/**
1.137 +@return the current active clipping region of the commandbuffer.
1.138 +*/
1.139 +EXPORT_C const TRegion& CCommandBuffer::ClippingRegion() const
1.140 + {
1.141 + return *iActiveMasterClippingRegion;
1.142 + }
1.143 +
1.144 +/**
1.145 +Prepares to record new drawcommands for a drawsection.
1.146 +This method is called from CRemoteGc::Activate().
1.147 +*/
1.148 +void CCommandBuffer::Prepare(const TRect& aDrawRect)
1.149 + {
1.150 + iDrawSectionRect = aDrawRect;
1.151 + iError = KErrNone;
1.152 + if(iRecordSegBuf)
1.153 + iRecordSegBuf->Delete(0, iRecordSegBuf->Size()); // Reset record buffer
1.154 + else
1.155 + TRAP(iError, iRecordSegBuf = CBufSeg::NewL(KBufferSize));
1.156 + }
1.157 +
1.158 +/**
1.159 +Finishes the recording of drawcommands for a drawsection.
1.160 +This method is called from CRemoteGc::Deactivate().
1.161 +
1.162 +@param aDrawRect The drawrect of the recorded drawcommands.
1.163 +@param aBoundingRect The boundingrect of the recorded drawcommands.
1.164 +*/
1.165 +TInt CCommandBuffer::Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
1.166 + {
1.167 + // If some error occured during the recording of this section, dont add the section
1.168 + if(!iError)
1.169 + {
1.170 + CDrawSection* drawSection = NULL;
1.171 + TRAP(iError, drawSection = CDrawSection::NewL(aDrawRect, aBoundingRect, aHasBitmapCommand))
1.172 + if(iError)
1.173 + return iError;
1.174 +
1.175 + // If boundingRect is empty clear the drawcommands added
1.176 + if(aBoundingRect.IsEmpty())
1.177 + iRecordSegBuf->Delete(0, iRecordSegBuf->Size());
1.178 +
1.179 + iRecordSegBuf->Compress();
1.180 + drawSection->SetBuffer(iRecordSegBuf); //Takes ownership of the memory allocated by iRecordSegBuf
1.181 + iRecordSegBuf = NULL;
1.182 + if(CheckForDuplicate(*drawSection))
1.183 + {
1.184 + delete drawSection;
1.185 + return KErrAlreadyExists;
1.186 + }
1.187 +
1.188 + iError = iDrawSections.Append(drawSection);
1.189 + if(iError)
1.190 + delete drawSection;
1.191 + else
1.192 + {
1.193 + Tidy();
1.194 + if(iDrawSections.Count() == 0 || AllSectionsExternalized())
1.195 + return KErrGeneral;
1.196 + }
1.197 + }
1.198 +
1.199 + return iError;
1.200 + }
1.201 +
1.202 +/**
1.203 +Remove drawsections that is completely blocked by another drawsection.
1.204 +*/
1.205 +void CCommandBuffer::Tidy()
1.206 + {
1.207 + RRegion region;
1.208 + TInt count = 0;
1.209 + for(TInt i = 0; i < (count = iDrawSections.Count()); i++)
1.210 + {
1.211 + TRect rect1 = iDrawSections[i]->DrawRect();
1.212 + region.Clear();
1.213 + region.AddRect(rect1);
1.214 + for(TInt j = i + 1; j < count; j++)
1.215 + {
1.216 + TRect rect2 = iDrawSections[j]->DrawRect();
1.217 + region.SubRect(rect2);
1.218 + }
1.219 +
1.220 + if(region.IsEmpty())
1.221 + {
1.222 + delete iDrawSections[i];
1.223 + iDrawSections.Remove(i--);
1.224 + }
1.225 + }
1.226 + region.Close();
1.227 + }
1.228 +
1.229 +/**
1.230 +@return ETrue if all sections in the commandbuffer have been externalized, otherwise EFalse.
1.231 +*/
1.232 +TBool CCommandBuffer::AllSectionsExternalized() const
1.233 + {
1.234 + const TInt count = iDrawSections.Count();
1.235 + for(TInt i = 0; i < count; i++)
1.236 + {
1.237 + if(!iDrawSections[i]->HasBeenExternalized())
1.238 + return EFalse;
1.239 + }
1.240 + return ETrue;
1.241 + }
1.242 +
1.243 +/**
1.244 +Checks if there exists any duplicate of aDrawSection already in the iDrawSection array.
1.245 +
1.246 +@param aDrawSection The drawsection to look for a duplicate of.
1.247 +@return ETrue if a duplicate was found, otherwise EFalse.
1.248 +*/
1.249 +TBool CCommandBuffer::CheckForDuplicate(const CDrawSection& aDrawSection) const
1.250 + {
1.251 + const TInt count = iDrawSections.Count();
1.252 + for(TInt i = 0; i < count; i++)
1.253 + {
1.254 + if(!iDrawSections[i]->IsIdentical(aDrawSection))
1.255 + continue;
1.256 +
1.257 + // Check if there is some drawsection that overlaps the section we found identical,
1.258 + // if that is the case it is not a duplicate
1.259 + for(TInt j = i + 1; j < count; j++)
1.260 + {
1.261 + TRect compareRect = iDrawSections[j]->DrawRect();
1.262 + if(aDrawSection.DrawRect().Intersects(compareRect))
1.263 + return EFalse; //Found a drawrect that overlapped, no duplicate exists then
1.264 + }
1.265 +
1.266 + // Found duplicate
1.267 + return ETrue;
1.268 + }
1.269 +
1.270 + return EFalse;
1.271 + }
1.272 +
1.273 +/**
1.274 +Updates the clippingregion for a specific drawsection.
1.275 +
1.276 +@param aDrawSectionIndex The index in iDrawSections of the drawsection to update the clippingregion for.
1.277 +@param aBitmapContext The bitmapcontext to set the new clippingregion on.
1.278 +*/
1.279 +void CCommandBuffer::UpdateClippingRegion(TInt aDrawSectionIndex)
1.280 + {
1.281 + __ASSERT_DEBUG(aDrawSectionIndex < iDrawSections.Count(), User::Invariant());
1.282 +
1.283 + iDrawSectionClippingRegion.Clear();
1.284 + if (iMasterClippingRegion)
1.285 + {
1.286 + iDrawSectionClippingRegion.Copy(*iMasterClippingRegion);
1.287 + }
1.288 + else
1.289 + {
1.290 + TRect rect = iMasterClippingRect;
1.291 + rect.Move(iMasterOrigin);
1.292 + iDrawSectionClippingRegion.AddRect(rect);
1.293 + }
1.294 +
1.295 + const TInt count = iDrawSections.Count();
1.296 + for(TInt i = aDrawSectionIndex + 1; i < count; ++i)
1.297 + {
1.298 + TRect rect = iDrawSections[i]->DrawRect();
1.299 + rect.Move(iMasterOrigin);
1.300 + iDrawSectionClippingRegion.SubRect(rect);
1.301 + }
1.302 +
1.303 + if (iDrawSectionClippingRegion.CheckError())
1.304 + iActiveMasterClippingRegion = iMasterClippingRegion;
1.305 + else
1.306 + iActiveMasterClippingRegion = &iDrawSectionClippingRegion;
1.307 + }
1.308 +
1.309 +/**
1.310 +Writes data of a specific length to the recordbuffer.
1.311 +
1.312 +@param aPtr The data to write.
1.313 +@param aLength The length of the data to write.
1.314 +*/
1.315 +void CCommandBuffer::Write(const TUint8* aPtr, TUint aLength)
1.316 + {
1.317 + if(iError)
1.318 + return;
1.319 +
1.320 + TRAP(iError, iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aPtr, aLength))
1.321 + if(iError)
1.322 + return;
1.323 + }
1.324 +
1.325 +/**
1.326 +Writes text to the recordbuffer.
1.327 +
1.328 +@param aText The text to write to the recordbuffer.
1.329 +*/
1.330 +void CCommandBuffer::WriteText(const TDesC8 &aText)
1.331 + {
1.332 + if(iError)
1.333 + return;
1.334 +
1.335 + // Append the total size of the text
1.336 + Write<TInt>(aText.Size());
1.337 + if(iError)
1.338 + return;
1.339 +
1.340 + TRAP(iError, DoWriteTextL(aText));
1.341 + }
1.342 +
1.343 +/**
1.344 +Writes text to the recordbuffer.
1.345 +
1.346 +@param aText The text to write to the recordbuffer.
1.347 +*/
1.348 +void CCommandBuffer::WriteText(const TDesC16 &aText)
1.349 + {
1.350 + if(iError)
1.351 + return;
1.352 +
1.353 + // Append the total size of the text
1.354 + Write<TInt>(aText.Size());
1.355 + if(iError)
1.356 + return;
1.357 +
1.358 + TPtrC8 textPtr(reinterpret_cast<const TUint8*>(aText.Ptr()),aText.Size());
1.359 + TRAP(iError, DoWriteTextL(textPtr));
1.360 + }
1.361 +
1.362 +/**
1.363 +Writes text to the recordbuffer.
1.364 +
1.365 +@param aText The text to write to the recordbuffer.
1.366 +*/
1.367 +void CCommandBuffer::DoWriteTextL(const TDesC8 &aText)
1.368 + {
1.369 + iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aText, aText.Size());
1.370 + }
1.371 +
1.372 +/**
1.373 +Reads data with a specific length from iBufReadStream.
1.374 +
1.375 +@param aPtr The read data is written to this paramenter.
1.376 +@param aLength The length of the data to be read.
1.377 +*/
1.378 +void CCommandBuffer::ReadL(TUint8* aPtr, TUint aLength)
1.379 + {
1.380 + iBufReadStream.ReadL(aPtr, aLength);
1.381 + }
1.382 +
1.383 +/**
1.384 +Reads text from iBufReadStream.
1.385 +
1.386 +@param aText The read text is put into this 8-bit buffer.
1.387 +*/
1.388 +void CCommandBuffer::ReadTextLC(TPtrC8& aText)
1.389 + {
1.390 + DoReadTextLC(aText,EFalse);
1.391 + }
1.392 +
1.393 +/**
1.394 +Reads text from iBufReadStream.
1.395 +
1.396 +@param aText The read text is put into this 16-bit buffer.
1.397 +*/
1.398 +void CCommandBuffer::ReadTextLC(TPtrC16& aText)
1.399 + {
1.400 + TPtrC8 text8;
1.401 + DoReadTextLC(text8,ETrue);
1.402 + aText.Set(reinterpret_cast<const TUint16*>(text8.Ptr()),text8.Size()/2);
1.403 + }
1.404 +
1.405 +/**
1.406 +Reads text from iBufReadStream; used by ReadTextLC
1.407 +
1.408 +@internalComponent
1.409 +*/
1.410 +void CCommandBuffer::DoReadTextLC(TPtrC8& aText,TBool a16Bit)
1.411 + {
1.412 + ASSERT(iBufRead);
1.413 +
1.414 + TInt textSize;
1.415 + ReadL<TInt>(textSize); // Read the length of the text
1.416 + if(0 > textSize)
1.417 + {
1.418 + User::Leave(KErrArgument);
1.419 + }
1.420 +
1.421 + // attempt to do it inline
1.422 + const TInt pos = iBufReadStream.Source()->TellL(MStreamBuf::ERead).Offset();
1.423 + if(!a16Bit || !(pos & 1)) // check 16bit-aligned
1.424 + {
1.425 + const TPtrC8 remaining = iBufRead->Ptr(pos);
1.426 + if(remaining.Size() >= textSize) // can do inline!
1.427 + {
1.428 + CleanupStack::PushL((TAny*)NULL); // have to push something
1.429 + iBufReadStream.Source()->SeekL(MStreamBuf::ERead,textSize);
1.430 + aText.Set(remaining.Ptr(),textSize);
1.431 + return;
1.432 + }
1.433 + }
1.434 +
1.435 + // have to copy into a continuous segment
1.436 + HBufC8* buf = HBufC8::NewLC(textSize);
1.437 + TPtr8 textPtr8(buf->Des());
1.438 + iBufReadStream.ReadL(textPtr8,textSize);
1.439 + aText.Set(*buf);
1.440 + }
1.441 +
1.442 +/**
1.443 +Compares the commands in one buffer to those in another
1.444 +@param aBuffer The buffer to compare to
1.445 +@return ETrue if they are an exact match, EFalse otherwise
1.446 +*/
1.447 +EXPORT_C TBool CCommandBuffer::IsIdentical(const CCommandBuffer & aBuffer) const
1.448 + {
1.449 + for(TInt i = 0; i < iDrawSections.Count(); ++i)
1.450 + {
1.451 + if (!iDrawSections[i]->IsIdentical(*aBuffer.iDrawSections[i]))
1.452 + return EFalse;
1.453 + }
1.454 + return ETrue;
1.455 + }
1.456 +
1.457 +/**
1.458 +Draws drawcommands that are within a specific rect to a specific position.
1.459 +This function is deprecated use the other overload
1.460 +
1.461 +@param aPosition Draws the drawcommands to this position.
1.462 +@param aDrawRect Draws only drawcommands that are within this rect.
1.463 +@param aBitmapContext The bitmapcontext to draw to.
1.464 +@deprecated
1.465 +@publishedPartner
1.466 +*/
1.467 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& aPosition, const TRect& aDrawRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
1.468 + {
1.469 + iMasterOrigin = aPosition;
1.470 + iOrigin = TPoint(0,0); // Need to save this to be able to make Reset not affect Origin beacuse that is how CWsGc works.
1.471 + aContext.SetOrigin(iMasterOrigin);
1.472 + iMasterClippingRect = aDrawRect;
1.473 + iMasterClippingRegion=0;
1.474 +
1.475 + TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
1.476 + return errMess;
1.477 + }
1.478 +
1.479 +/**
1.480 +Draws drawcommands that are within a specific rect to a specific position.
1.481 +
1.482 +@param aMasterOrigin The origin relative to which all draw commands will be drawn
1.483 +@param aMasterClippingRegion The region to which all draw commands are clipped
1.484 +@param aMasterClippingRect The rectangle to which all draw commands are clipped
1.485 +@param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
1.486 +@param aContext The bitmap context to draw to
1.487 +@publishedPartner
1.488 +*/
1.489 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& aMasterOrigin, const TRegion * aMasterClippingRegion, const TRect& aMasterClippingRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
1.490 + {
1.491 + iMasterOrigin = aMasterOrigin;
1.492 + iMasterClippingRegion = aMasterClippingRegion;
1.493 + iMasterClippingRect = aMasterClippingRect;
1.494 +
1.495 + Reset(aContext);
1.496 +
1.497 + TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
1.498 + return errMess;
1.499 + }
1.500 +
1.501 +/**
1.502 + @internalTechnology
1.503 +*/
1.504 +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
1.505 + {
1.506 + ASSERT(0);
1.507 + return KErrNotSupported;
1.508 + }
1.509 +
1.510 +/**
1.511 + @internalTechnology
1.512 +*/
1.513 +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
1.514 + {
1.515 + ASSERT(0);
1.516 + return KErrNotSupported;
1.517 + }
1.518 +
1.519 +/**
1.520 +Draws drawcommands that are within a specific rect.
1.521 +
1.522 +@param aDrawRect Draws only drawcommands that are within this rect.
1.523 +@param aBitmapContext The bitmapcontext to draw to.
1.524 +*/
1.525 +void CCommandBuffer::DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
1.526 + {
1.527 + const TInt sections = iDrawSections.Count();
1.528 + if(sections == 0)
1.529 + User::Leave(KErrEof);
1.530 +
1.531 + iBitmapCache->BeginUpdate();
1.532 + iFontCache->BeginUpdate();
1.533 + for(TInt i = 0; i < sections; i++)
1.534 + {
1.535 + UpdateClippingRegion(i);
1.536 + DrawSectionL(*iDrawSections[i], aWsGraphicResolver, aBitmapContext);
1.537 + }
1.538 + iFontCache->EndUpdate();
1.539 + iBitmapCache->EndUpdate();
1.540 + }
1.541 +
1.542 +/**
1.543 +Draws a specific drawsection.
1.544 +
1.545 +@param aDrawSection The drawsection to be drawn.
1.546 +@param aBitmapContext The bitmapcontext to draw to.
1.547 +*/
1.548 +void CCommandBuffer::DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
1.549 + {
1.550 + iDrawSectionRect = aDrawSection.DrawRect();
1.551 + Reset(aBitmapContext);
1.552 +
1.553 + iBufRead = aDrawSection.Buffer();
1.554 + iBufReadStream.Open(*iBufRead, 0);
1.555 +
1.556 + TDrawCode drawCode;
1.557 + while(ETrue)
1.558 + {
1.559 + TRAPD(err, ReadL<TDrawCode>(drawCode));
1.560 + if(err == KErrEof)
1.561 + return;
1.562 + else if(err)
1.563 + User::Leave(err);
1.564 +
1.565 + switch(drawCode)
1.566 + {
1.567 + case ECommandClear:
1.568 + Clear(aBitmapContext);
1.569 + break;
1.570 + case ECommandClearRect:
1.571 + ClearRectL(aBitmapContext);
1.572 + break;
1.573 + case ECommandCopyRect:
1.574 + CopyRectL(aBitmapContext);
1.575 + break;
1.576 + case ECommandBitBlt1:
1.577 + BitBlt1L(aBitmapContext);
1.578 + break;
1.579 + case ECommandBitBlt2:
1.580 + BitBlt2L(aBitmapContext);
1.581 + break;
1.582 + case ECommandBitBltMasked:
1.583 + BitBltMaskedL(aBitmapContext);
1.584 + break;
1.585 + case ECommandSetFaded:
1.586 + SetFadedL(aBitmapContext);
1.587 + break;
1.588 + case ECommandSetFadingParameters:
1.589 + SetFadingParametersL(aBitmapContext);
1.590 + break;
1.591 + case ECommandAlphaBlendBitmaps:
1.592 + AlphaBlendBitmapsL(aBitmapContext);
1.593 + break;
1.594 + case ECommandSetOrigin:
1.595 + SetOriginL(aBitmapContext);
1.596 + break;
1.597 + case ECommandSetDrawMode:
1.598 + SetDrawModeL(aBitmapContext);
1.599 + break;
1.600 + case ECommandSetClippingRect:
1.601 + SetClippingRectL(aBitmapContext);
1.602 + break;
1.603 + case ECommandCancelClippingRect:
1.604 + CancelClippingRect(aBitmapContext);
1.605 + break;
1.606 + case ECommandReset:
1.607 + Reset(aBitmapContext);
1.608 + break;
1.609 + case ECommandUseFont:
1.610 + UseFontL(aBitmapContext);
1.611 + break;
1.612 + case ECommandDiscardFont:
1.613 + DiscardFont(aBitmapContext);
1.614 + break;
1.615 + case ECommandSetUnderlineStyle:
1.616 + SetUnderlineStyleL(aBitmapContext);
1.617 + break;
1.618 + case ECommandSetStrikethroughStyle:
1.619 + SetStrikethroughStyleL(aBitmapContext);
1.620 + break;
1.621 + case ECommandSetWordJustification:
1.622 + SetWordJustificationL(aBitmapContext);
1.623 + break;
1.624 + case ECommandSetCharJustification:
1.625 + SetCharJustificationL(aBitmapContext);
1.626 + break;
1.627 + case ECommandSetPenColor:
1.628 + SetPenColorL(aBitmapContext);
1.629 + break;
1.630 + case ECommandSetPenStyle:
1.631 + SetPenStyleL(aBitmapContext);
1.632 + break;
1.633 + case ECommandSetPenSize:
1.634 + SetPenSizeL(aBitmapContext);
1.635 + break;
1.636 + case ECommandSetBrushColor:
1.637 + SetBrushColorL(aBitmapContext);
1.638 + break;
1.639 + case ECommandSetBrushStyle:
1.640 + SetBrushStyleL(aBitmapContext);
1.641 + break;
1.642 + case ECommandSetBrushOrigin:
1.643 + SetBrushOriginL(aBitmapContext);
1.644 + break;
1.645 + case ECommandUseBrushPattern:
1.646 + UseBrushPatternL(aBitmapContext);
1.647 + break;
1.648 + case ECommandDiscardBrushPattern:
1.649 + DiscardBrushPattern(aBitmapContext);
1.650 + break;
1.651 + case ECommandMoveTo:
1.652 + MoveToL(aBitmapContext);
1.653 + break;
1.654 + case ECommandMoveBy:
1.655 + MoveByL(aBitmapContext);
1.656 + break;
1.657 + case ECommandPlot:
1.658 + PlotL(aBitmapContext);
1.659 + break;
1.660 + case ECommandDrawArc:
1.661 + DrawArcL(aBitmapContext);
1.662 + break;
1.663 + case ECommandDrawLine:
1.664 + DrawLineL(aBitmapContext);
1.665 + break;
1.666 + case ECommandDrawLineTo:
1.667 + DrawLineToL(aBitmapContext);
1.668 + break;
1.669 + case ECommandDrawLineBy:
1.670 + DrawLineByL(aBitmapContext);
1.671 + break;
1.672 + case ECommandDrawPolyLine:
1.673 + DrawPolyLineL(aBitmapContext);
1.674 + break;
1.675 + case ECommandDrawPie:
1.676 + DrawPieL(aBitmapContext);
1.677 + break;
1.678 + case ECommandDrawEllipse:
1.679 + DrawEllipseL(aBitmapContext);
1.680 + break;
1.681 + case ECommandDrawRect:
1.682 + DrawRectL(aBitmapContext);
1.683 + break;
1.684 + case ECommandDrawPolygon:
1.685 + DrawPolygonL(aBitmapContext);
1.686 + break;
1.687 + case ECommandDrawRoundRect:
1.688 + DrawRoundRectL(aBitmapContext);
1.689 + break;
1.690 + case ECommandDrawBitmap1:
1.691 + DrawBitmap1L(aBitmapContext);
1.692 + break;
1.693 + case ECommandDrawBitmap2:
1.694 + DrawBitmap2L(aBitmapContext);
1.695 + break;
1.696 + case ECommandDrawBitmap3:
1.697 + DrawBitmap3L(aBitmapContext);
1.698 + break;
1.699 + case ECommandDrawBitmapMasked:
1.700 + DrawBitmapMaskedL(aBitmapContext);
1.701 + break;
1.702 + case ECommandDrawText1:
1.703 + DrawText1L(aBitmapContext);
1.704 + break;
1.705 + case ECommandDrawText2:
1.706 + DrawText2L(aBitmapContext);
1.707 + break;
1.708 + case ECommandDrawText3:
1.709 + DrawText3L(aBitmapContext);
1.710 + break;
1.711 + case ECommandMapColors:
1.712 + MapColorsL(aBitmapContext);
1.713 + break;
1.714 + case ECommandSetClippingRegion:
1.715 + SetClippingRegionL(aBitmapContext);
1.716 + break;
1.717 + case ECommandCancelClippingRegion:
1.718 + CancelClippingRegion(aBitmapContext);
1.719 + break;
1.720 + case ECommandDrawTextVertical1:
1.721 + DrawTextVertical1L(aBitmapContext);
1.722 + break;
1.723 + case ECommandDrawTextVertical2:
1.724 + DrawTextVertical2L(aBitmapContext);
1.725 + break;
1.726 + case ECommandDrawWsGraphic1:
1.727 + DrawWsGraphic1L(aWsGraphicResolver);
1.728 + break;
1.729 + case ECommandDrawWsGraphic2:
1.730 + DrawWsGraphic2L(aWsGraphicResolver);
1.731 + break;
1.732 + case ECommandSetShadowColor:
1.733 + SetShadowColorL(aBitmapContext);
1.734 + break;
1.735 + default:
1.736 + User::LeaveIfError(KErrNotFound);
1.737 + break;
1.738 + }
1.739 + }
1.740 + }
1.741 +
1.742 +void CCommandBuffer::Clear(CBitmapContext& aBitmapContext) const
1.743 + {
1.744 + aBitmapContext.Clear();
1.745 + }
1.746 +
1.747 +void CCommandBuffer::ClearRectL(CBitmapContext& aBitmapContext)
1.748 + {
1.749 + TRect rect;
1.750 + ReadL<TRect>(rect);
1.751 +
1.752 + aBitmapContext.Clear(rect);
1.753 + }
1.754 +
1.755 +void CCommandBuffer::CopyRectL(CBitmapContext& aBitmapContext)
1.756 + {
1.757 + TPoint point;
1.758 + TRect rect;
1.759 +
1.760 + ReadL<TPoint>(point);
1.761 + ReadL<TRect>(rect);
1.762 +
1.763 + aBitmapContext.CopyRect(point, rect);
1.764 + }
1.765 +
1.766 +void CCommandBuffer::BitBlt1L(CBitmapContext& aBitmapContext)
1.767 + {
1.768 + TPoint point;
1.769 + TInt handle;
1.770 +
1.771 + ReadL<TPoint>(point);
1.772 + ReadL<TInt>(handle);
1.773 +
1.774 + if(!iBitmapCache->UseL(handle))
1.775 + aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle));
1.776 + }
1.777 +
1.778 +void CCommandBuffer::BitBlt2L(CBitmapContext& aBitmapContext)
1.779 + {
1.780 + TPoint point;
1.781 + TRect sourceRect;
1.782 + TInt handle;
1.783 +
1.784 + ReadL<TPoint>(point);
1.785 + ReadL<TInt>(handle);
1.786 + ReadL<TRect>(sourceRect);
1.787 +
1.788 + if(!iBitmapCache->UseL(handle))
1.789 + aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle), sourceRect);
1.790 + }
1.791 +
1.792 +void CCommandBuffer::BitBltMaskedL(CBitmapContext& aBitmapContext)
1.793 + {
1.794 + TPoint point;
1.795 + TInt bitmapHandle;
1.796 + TRect sourceRect;
1.797 + TInt maskHandle;
1.798 + TBool invertedMask;
1.799 +
1.800 + ReadL<TPoint>(point);
1.801 + ReadL<TInt>(bitmapHandle);
1.802 + ReadL<TRect>(sourceRect);
1.803 + ReadL<TInt>(maskHandle);
1.804 + ReadL<TBool>(invertedMask);
1.805 +
1.806 + if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1.807 + aBitmapContext.BitBltMasked(point, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
1.808 + }
1.809 +
1.810 +void CCommandBuffer::SetFadedL(CBitmapContext& aBitmapContext)
1.811 + {
1.812 + TBool faded;
1.813 + ReadL<TBool>(faded);
1.814 +
1.815 + aBitmapContext.SetFaded(faded);
1.816 + }
1.817 +
1.818 +void CCommandBuffer::SetFadingParametersL(CBitmapContext& aBitmapContext)
1.819 + {
1.820 + TUint8 blackMap;
1.821 + TUint8 whiteMap;
1.822 +
1.823 + ReadL<TUint8>(blackMap);
1.824 + ReadL<TUint8>(whiteMap);
1.825 + aBitmapContext.SetFadingParameters(blackMap, whiteMap);
1.826 + }
1.827 +
1.828 +void CCommandBuffer::AlphaBlendBitmapsL(CBitmapContext& aBitmapContext)
1.829 + {
1.830 + TPoint destPoint;
1.831 + TInt srcHandle;
1.832 + TRect sourceRect;
1.833 + TInt alphaHandle;
1.834 + TPoint alphaPoint;
1.835 +
1.836 + ReadL<TPoint>(destPoint);
1.837 + ReadL<TInt>(srcHandle);
1.838 + ReadL<TRect>(sourceRect);
1.839 + ReadL<TInt>(alphaHandle);
1.840 + ReadL<TPoint>(alphaPoint);
1.841 +
1.842 + if(!iBitmapCache->UseL(srcHandle) && !iBitmapCache->UseL(alphaHandle))
1.843 + aBitmapContext.AlphaBlendBitmaps(destPoint, iBitmapCache->Resolve(srcHandle), sourceRect, iBitmapCache->Resolve(alphaHandle), alphaPoint);
1.844 + }
1.845 +
1.846 +void CCommandBuffer::SetOriginL(CBitmapContext& aBitmapContext)
1.847 + {
1.848 + ReadL<TPoint>(iOrigin);
1.849 + aBitmapContext.SetOrigin(iMasterOrigin + iOrigin);
1.850 +
1.851 + }
1.852 +
1.853 +void CCommandBuffer::SetDrawModeL(CBitmapContext& aBitmapContext)
1.854 + {
1.855 + CGraphicsContext::TDrawMode drawMode;
1.856 + ReadL<CGraphicsContext::TDrawMode>(drawMode);
1.857 + aBitmapContext.SetDrawMode(drawMode);
1.858 + }
1.859 +
1.860 +void CCommandBuffer::SetClippingRectL(CBitmapContext& aBitmapContext)
1.861 + {
1.862 + TRect rect;
1.863 + ReadL<TRect>(rect);
1.864 + rect.Intersection(iMasterClippingRect);
1.865 + rect.Intersection(iDrawSectionRect);
1.866 + aBitmapContext.SetClippingRect(rect);
1.867 + }
1.868 +
1.869 +void CCommandBuffer::CancelClippingRect(CBitmapContext& aBitmapContext)
1.870 + {
1.871 + TRect rect = iMasterClippingRect;
1.872 + rect.Intersection(iDrawSectionRect);
1.873 + aBitmapContext.SetClippingRect(rect);
1.874 + }
1.875 +
1.876 +
1.877 +void CCommandBuffer::Reset(CBitmapContext& aBitmapContext)
1.878 + {
1.879 + aBitmapContext.Reset();
1.880 +
1.881 + const TBool isFbsBitGc= aBitmapContext.IsFbsBitGc();
1.882 + if (isFbsBitGc)
1.883 + {
1.884 + TRgb brushColor = KRgbWhite;
1.885 + brushColor.SetAlpha(0); //make transparent
1.886 + aBitmapContext.SetBrushColor(brushColor);
1.887 + }
1.888 +
1.889 + aBitmapContext.SetOrigin(iMasterOrigin);
1.890 + if(iActiveMasterClippingRegion)
1.891 + aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
1.892 + CancelClippingRect(aBitmapContext);
1.893 + iOrigin = TPoint(0,0);
1.894 + iClippingRegion.Clear();
1.895 + iParsedClippingRegionIsSet = EFalse;
1.896 + }
1.897 +
1.898 +void CCommandBuffer::UseFontL(CBitmapContext& aBitmapContext)
1.899 + {
1.900 + TInt fontHandle;
1.901 + ReadL<TInt>(fontHandle);
1.902 + if(iFontCache->UseL(fontHandle)) return;
1.903 + aBitmapContext.UseFont(iFontCache->Resolve(fontHandle));
1.904 + }
1.905 +
1.906 +void CCommandBuffer::DiscardFont(CBitmapContext& aBitmapContext) const
1.907 + {
1.908 + aBitmapContext.DiscardFont();
1.909 + }
1.910 +
1.911 +void CCommandBuffer::SetUnderlineStyleL(CBitmapContext& aBitmapContext)
1.912 + {
1.913 + TFontUnderline underlineStyle;
1.914 + ReadL<TFontUnderline>(underlineStyle);
1.915 + aBitmapContext.SetUnderlineStyle(underlineStyle);
1.916 + }
1.917 +
1.918 +void CCommandBuffer::SetStrikethroughStyleL(CBitmapContext& aBitmapContext)
1.919 + {
1.920 + TFontStrikethrough strikethroughStyle;
1.921 + ReadL<TFontStrikethrough>(strikethroughStyle);
1.922 + aBitmapContext.SetStrikethroughStyle(strikethroughStyle);
1.923 + }
1.924 +
1.925 +void CCommandBuffer::SetWordJustificationL(CBitmapContext& aBitmapContext)
1.926 + {
1.927 + TInt excessWidth;
1.928 + TInt numGaps;
1.929 +
1.930 + ReadL<TInt>(excessWidth);
1.931 + ReadL<TInt>(numGaps);
1.932 + aBitmapContext.SetWordJustification(excessWidth, numGaps);
1.933 + }
1.934 +
1.935 +void CCommandBuffer::SetCharJustificationL(CBitmapContext& aBitmapContext)
1.936 + {
1.937 + TInt excessWidth;
1.938 + TInt numChars;
1.939 +
1.940 + ReadL<TInt>(excessWidth);
1.941 + ReadL<TInt>(numChars);
1.942 + aBitmapContext.SetCharJustification(excessWidth, numChars);
1.943 + }
1.944 +
1.945 +void CCommandBuffer::SetPenColorL(CBitmapContext& aBitmapContext)
1.946 + {
1.947 + TRgb color;
1.948 + ReadL<TRgb>(color);
1.949 +
1.950 + aBitmapContext.SetPenColor(color);
1.951 + }
1.952 +
1.953 +void CCommandBuffer::SetPenStyleL(CBitmapContext& aBitmapContext)
1.954 + {
1.955 + CGraphicsContext::TPenStyle penStyle;
1.956 + ReadL<CGraphicsContext::TPenStyle>(penStyle);
1.957 +
1.958 + aBitmapContext.SetPenStyle(penStyle);
1.959 + }
1.960 +
1.961 +void CCommandBuffer::SetPenSizeL(CBitmapContext& aBitmapContext)
1.962 + {
1.963 + TSize size;
1.964 + ReadL<TSize>(size);
1.965 +
1.966 + aBitmapContext.SetPenSize(size);
1.967 + }
1.968 +
1.969 +void CCommandBuffer::SetBrushColorL(CBitmapContext& aBitmapContext)
1.970 + {
1.971 + TRgb color;
1.972 + ReadL<TRgb>(color);
1.973 +
1.974 + aBitmapContext.SetBrushColor(color);
1.975 + }
1.976 +
1.977 +void CCommandBuffer::SetBrushStyleL(CBitmapContext& aBitmapContext)
1.978 + {
1.979 + CGraphicsContext::TBrushStyle brushStyle;
1.980 + ReadL<CGraphicsContext::TBrushStyle>(brushStyle);
1.981 +
1.982 + aBitmapContext.SetBrushStyle(brushStyle);
1.983 + }
1.984 +
1.985 +void CCommandBuffer::SetBrushOriginL(CBitmapContext& aBitmapContext)
1.986 + {
1.987 + TPoint point;
1.988 + ReadL<TPoint>(point);
1.989 +
1.990 + aBitmapContext.SetBrushOrigin(point);
1.991 + }
1.992 +
1.993 +void CCommandBuffer::UseBrushPatternL(CBitmapContext& aBitmapContext)
1.994 + {
1.995 + TInt deviceHandle;
1.996 + ReadL<TInt>(deviceHandle);
1.997 +
1.998 + if(iBitmapCache->UseL(deviceHandle)) return;
1.999 + aBitmapContext.UseBrushPattern(iBitmapCache->Resolve(deviceHandle));
1.1000 + }
1.1001 +
1.1002 +void CCommandBuffer::DiscardBrushPattern(CBitmapContext& aBitmapContext) const
1.1003 + {
1.1004 + aBitmapContext.DiscardBrushPattern();
1.1005 + }
1.1006 +
1.1007 +void CCommandBuffer::MoveToL(CBitmapContext& aBitmapContext)
1.1008 + {
1.1009 + TPoint point;
1.1010 + ReadL<TPoint>(point);
1.1011 +
1.1012 + aBitmapContext.MoveTo(point);
1.1013 + }
1.1014 +
1.1015 +void CCommandBuffer::MoveByL(CBitmapContext& aBitmapContext)
1.1016 + {
1.1017 + TPoint point;
1.1018 + ReadL<TPoint>(point);
1.1019 +
1.1020 + aBitmapContext.MoveBy(point);
1.1021 + }
1.1022 +
1.1023 +void CCommandBuffer::PlotL(CBitmapContext& aBitmapContext)
1.1024 + {
1.1025 + TPoint point;
1.1026 + ReadL<TPoint>(point);
1.1027 +
1.1028 + aBitmapContext.Plot(point);
1.1029 + }
1.1030 +
1.1031 +void CCommandBuffer::DrawArcL(CBitmapContext& aBitmapContext)
1.1032 + {
1.1033 + TRect rect;
1.1034 + TPoint start;
1.1035 + TPoint end;
1.1036 + ReadL<TRect>(rect);
1.1037 + ReadL<TPoint>(start);
1.1038 + ReadL<TPoint>(end);
1.1039 +
1.1040 + aBitmapContext.DrawArc(rect, start, end);
1.1041 + }
1.1042 +
1.1043 +void CCommandBuffer::DrawLineL(CBitmapContext& aBitmapContext)
1.1044 + {
1.1045 + TPoint point1;
1.1046 + TPoint point2;
1.1047 + ReadL<TPoint>(point1);
1.1048 + ReadL<TPoint>(point2);
1.1049 +
1.1050 + aBitmapContext.DrawLine(point1, point2);
1.1051 + }
1.1052 +
1.1053 +void CCommandBuffer::DrawLineToL(CBitmapContext& aBitmapContext)
1.1054 + {
1.1055 + TPoint point;
1.1056 + ReadL<TPoint>(point);
1.1057 +
1.1058 + aBitmapContext.DrawLineTo(point);
1.1059 + }
1.1060 +
1.1061 +void CCommandBuffer::DrawLineByL(CBitmapContext& aBitmapContext)
1.1062 + {
1.1063 + TPoint point;
1.1064 + ReadL<TPoint>(point);
1.1065 +
1.1066 + aBitmapContext.DrawLineBy(point);
1.1067 + }
1.1068 +
1.1069 +void CCommandBuffer::DrawPolyLineL(CBitmapContext& aBitmapContext)
1.1070 + {
1.1071 + TInt nrOfPoints;
1.1072 + ReadL<TInt>(nrOfPoints);
1.1073 +
1.1074 + CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1.1075 + CleanupStack::PushL(pointList);
1.1076 + for(TInt i = 0; i < nrOfPoints; i++)
1.1077 + {
1.1078 + TPoint point;
1.1079 + ReadL<TPoint>(point);
1.1080 + pointList->AppendL(point);
1.1081 + }
1.1082 +
1.1083 + aBitmapContext.DrawPolyLine(pointList);
1.1084 + CleanupStack::PopAndDestroy(pointList);
1.1085 + }
1.1086 +
1.1087 +void CCommandBuffer::DrawPieL(CBitmapContext& aBitmapContext)
1.1088 + {
1.1089 + TRect rect;
1.1090 + TPoint start;
1.1091 + TPoint end;
1.1092 + ReadL<TRect>(rect);
1.1093 + ReadL<TPoint>(start);
1.1094 + ReadL<TPoint>(end);
1.1095 +
1.1096 + aBitmapContext.DrawPie(rect, start, end);
1.1097 + }
1.1098 +
1.1099 +void CCommandBuffer::DrawEllipseL(CBitmapContext& aBitmapContext)
1.1100 + {
1.1101 + TRect rect;
1.1102 + ReadL<TRect>(rect);
1.1103 +
1.1104 + aBitmapContext.DrawEllipse(rect);
1.1105 + }
1.1106 +
1.1107 +void CCommandBuffer::DrawRectL(CBitmapContext& aBitmapContext)
1.1108 + {
1.1109 + TRect rect;
1.1110 + ReadL<TRect>(rect);
1.1111 +
1.1112 + aBitmapContext.DrawRect(rect);
1.1113 + }
1.1114 +
1.1115 +void CCommandBuffer::DrawRoundRectL(CBitmapContext& aBitmapContext)
1.1116 + {
1.1117 + TRect rect;
1.1118 + TSize ellipse;
1.1119 + ReadL<TRect>(rect);
1.1120 + ReadL<TSize>(ellipse);
1.1121 +
1.1122 + aBitmapContext.DrawRoundRect(rect, ellipse);
1.1123 + }
1.1124 +
1.1125 +void CCommandBuffer::DrawPolygonL(CBitmapContext& aBitmapContext)
1.1126 + {
1.1127 + TInt nrOfPoints;
1.1128 + ReadL<TInt>(nrOfPoints);
1.1129 +
1.1130 + CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1.1131 + CleanupStack::PushL(pointList);
1.1132 + for(TInt i = 0; i < nrOfPoints; i++)
1.1133 + {
1.1134 + TPoint point;
1.1135 + ReadL<TPoint>(point);
1.1136 + pointList->AppendL(point);
1.1137 + }
1.1138 +
1.1139 + CGraphicsContext::TFillRule fillRule;
1.1140 + ReadL<CGraphicsContext::TFillRule>(fillRule);
1.1141 + aBitmapContext.DrawPolygon(pointList, fillRule);
1.1142 + CleanupStack::PopAndDestroy(pointList);
1.1143 + }
1.1144 +
1.1145 +void CCommandBuffer::DrawBitmap1L(CBitmapContext& aBitmapContext)
1.1146 + {
1.1147 + TPoint topLeft;
1.1148 + TInt bitmapHandle;
1.1149 +
1.1150 + ReadL<TPoint>(topLeft);
1.1151 + ReadL<TInt>(bitmapHandle);
1.1152 +
1.1153 + if(!iBitmapCache->UseL(bitmapHandle))
1.1154 + aBitmapContext.DrawBitmap(topLeft, iBitmapCache->Resolve(bitmapHandle));
1.1155 + }
1.1156 +
1.1157 +void CCommandBuffer::DrawBitmap2L(CBitmapContext& aBitmapContext)
1.1158 + {
1.1159 + TRect destRect;
1.1160 + TInt bitmapHandle;
1.1161 +
1.1162 + ReadL<TRect>(destRect);
1.1163 + ReadL<TInt>(bitmapHandle);
1.1164 +
1.1165 + if(!iBitmapCache->UseL(bitmapHandle))
1.1166 + aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle));
1.1167 + }
1.1168 +
1.1169 +void CCommandBuffer::DrawBitmap3L(CBitmapContext& aBitmapContext)
1.1170 + {
1.1171 + TRect destRect;
1.1172 + TRect sourceRect;
1.1173 + TInt bitmapHandle;
1.1174 +
1.1175 + ReadL<TRect>(destRect);
1.1176 + ReadL<TInt>(bitmapHandle);
1.1177 + ReadL<TRect>(sourceRect);
1.1178 +
1.1179 + if(!iBitmapCache->UseL(bitmapHandle))
1.1180 + aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect);
1.1181 + }
1.1182 +
1.1183 +void CCommandBuffer::DrawBitmapMaskedL(CBitmapContext& aBitmapContext)
1.1184 + {
1.1185 + TRect destRect;
1.1186 + TRect sourceRect;
1.1187 + TInt bitmapHandle;
1.1188 + TInt maskHandle;
1.1189 + TBool invertedMask;
1.1190 +
1.1191 + ReadL<TRect>(destRect);
1.1192 + ReadL<TInt>(bitmapHandle);
1.1193 + ReadL<TRect>(sourceRect);
1.1194 + ReadL<TInt>(maskHandle);
1.1195 + ReadL<TBool>(invertedMask);
1.1196 +
1.1197 + if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1.1198 + aBitmapContext.DrawBitmapMasked(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
1.1199 + }
1.1200 +
1.1201 +void CCommandBuffer::DrawText1L(CBitmapContext& aBitmapContext)
1.1202 + {
1.1203 + TPoint point;
1.1204 +
1.1205 + TPtrC16 text;
1.1206 + ReadTextLC(text);
1.1207 +
1.1208 + ReadL<TPoint>(point);
1.1209 +
1.1210 + aBitmapContext.DrawText(text, point);
1.1211 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1212 + }
1.1213 +
1.1214 +void CCommandBuffer::DrawText2L(CBitmapContext& aBitmapContext)
1.1215 + {
1.1216 + TRect box;
1.1217 + TInt baselineOffset;
1.1218 + CGraphicsContext::TTextAlign horiz;
1.1219 + TInt leftMargin;
1.1220 +
1.1221 + TPtrC16 text;
1.1222 + ReadTextLC(text);
1.1223 +
1.1224 + ReadL<TRect>(box);
1.1225 + ReadL<TInt>(baselineOffset);
1.1226 + ReadL<CGraphicsContext::TTextAlign>(horiz);
1.1227 + ReadL<TInt>(leftMargin);
1.1228 +
1.1229 + aBitmapContext.DrawText(text, box, baselineOffset, horiz, leftMargin);
1.1230 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1231 + }
1.1232 +
1.1233 +void CCommandBuffer::DrawText3L(CBitmapContext& aBitmapContext)
1.1234 + {
1.1235 + TPoint point;
1.1236 + CGraphicsContext::TDrawTextParam param;
1.1237 +
1.1238 + TPtrC16 text;
1.1239 + ReadTextLC(text);
1.1240 +
1.1241 + ReadL<TPoint>(point);
1.1242 + ReadL<CGraphicsContext::TDrawTextParam>(param);
1.1243 +
1.1244 + aBitmapContext.DrawText(text, point, param);
1.1245 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1246 + }
1.1247 +
1.1248 +void CCommandBuffer::MapColorsL(CBitmapContext& aBitmapContext)
1.1249 + {
1.1250 + TRect rect;
1.1251 + TInt nrOfPairs;
1.1252 + ReadL<TRect>(rect);
1.1253 + ReadL<TInt>(nrOfPairs);
1.1254 +
1.1255 + TRgb* colorList = new (ELeave) TRgb [nrOfPairs*2]; // Every pair has two colors
1.1256 + CleanupArrayDeletePushL(colorList);
1.1257 + for(TInt i = 0; i < nrOfPairs; i++)
1.1258 + {
1.1259 + TRgb color;
1.1260 + ReadL<TRgb>(color);
1.1261 + colorList[i] = color;
1.1262 +
1.1263 + ReadL<TRgb>(color);
1.1264 + colorList[i+1] = color;
1.1265 + }
1.1266 +
1.1267 + TBool mapForwards;
1.1268 + ReadL<TBool>(mapForwards);
1.1269 +
1.1270 + aBitmapContext.MapColors(rect, colorList, nrOfPairs, mapForwards);
1.1271 + CleanupStack::PopAndDestroy(colorList);
1.1272 + }
1.1273 +
1.1274 +void CCommandBuffer::SetClippingRegionL(CBitmapContext& aBitmapContext)
1.1275 + {
1.1276 + TInt nrOfRects;
1.1277 + ReadL<TInt>(nrOfRects);
1.1278 +
1.1279 + TRect rect;
1.1280 + iClippingRegion.Clear();
1.1281 + for(TInt i = 0; i < nrOfRects; i++)
1.1282 + {
1.1283 + ReadL<TRect>(rect);
1.1284 +// rect.Move(iMasterOrigin);
1.1285 + iClippingRegion.AddRect(rect);
1.1286 + }
1.1287 +
1.1288 + iParsedClippingRegionIsSet = ETrue;
1.1289 + if(iActiveMasterClippingRegion)
1.1290 + iClippingRegion.Intersect(*iActiveMasterClippingRegion);
1.1291 +
1.1292 + aBitmapContext.SetClippingRegion(iClippingRegion);
1.1293 + }
1.1294 +
1.1295 +void CCommandBuffer::CancelClippingRegion(CBitmapContext& aBitmapContext)
1.1296 + {
1.1297 + iClippingRegion.Clear();
1.1298 + iParsedClippingRegionIsSet = EFalse;
1.1299 + if(iActiveMasterClippingRegion)
1.1300 + aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
1.1301 + else
1.1302 + aBitmapContext.CancelClippingRegion();
1.1303 + }
1.1304 +
1.1305 +void CCommandBuffer::DrawTextVertical1L(CBitmapContext& aBitmapContext)
1.1306 + {
1.1307 + TPoint point;
1.1308 + TBool up;
1.1309 +
1.1310 + TPtrC16 text;
1.1311 + ReadTextLC(text);
1.1312 +
1.1313 + ReadL<TPoint>(point);
1.1314 + ReadL<TBool>(up);
1.1315 +
1.1316 + aBitmapContext.DrawTextVertical(text, point, up);
1.1317 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1318 + }
1.1319 +
1.1320 +void CCommandBuffer::DrawTextVertical2L(CBitmapContext& aBitmapContext)
1.1321 + {
1.1322 + TRect box;
1.1323 + TInt baselineOffset;
1.1324 + TBool up;
1.1325 + CGraphicsContext::TTextAlign vertical;
1.1326 + TInt margin;
1.1327 +
1.1328 + TPtrC16 text;
1.1329 + ReadTextLC(text);
1.1330 +
1.1331 + ReadL<TRect>(box);
1.1332 + ReadL<TInt>(baselineOffset);
1.1333 + ReadL<TBool>(up);
1.1334 + ReadL<CGraphicsContext::TTextAlign>(vertical);
1.1335 + ReadL<TInt>(margin);
1.1336 +
1.1337 + aBitmapContext.DrawTextVertical(text, box, baselineOffset, up, vertical, margin);
1.1338 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1339 + }
1.1340 +
1.1341 +void CCommandBuffer::DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver)
1.1342 + {
1.1343 + TInt id;
1.1344 + TBool isUid;
1.1345 + TRect rect;
1.1346 +
1.1347 + ReadL<TInt>(id);
1.1348 + ReadL<TBool>(isUid);
1.1349 + ReadL<TRect>(rect);
1.1350 +
1.1351 + aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,KNullDesC8());
1.1352 + }
1.1353 +
1.1354 +void CCommandBuffer::DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver)
1.1355 + {
1.1356 + TInt id;
1.1357 + TBool isUid;
1.1358 + TRect rect;
1.1359 +
1.1360 + ReadL<TInt>(id);
1.1361 + ReadL<TBool>(isUid);
1.1362 + ReadL<TRect>(rect);
1.1363 + TPtrC8 text8;
1.1364 + ReadTextLC(text8);
1.1365 +
1.1366 + aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,text8);
1.1367 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1368 + }
1.1369 +
1.1370 +void CCommandBuffer::SetShadowColorL(CBitmapContext& aBitmapContext)
1.1371 + {
1.1372 + TRgb shadowColor;
1.1373 + ReadL<TRgb>(shadowColor);
1.1374 +
1.1375 + aBitmapContext.SetShadowColor(shadowColor);
1.1376 + }