1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/remotegc/CommandBuffer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1920 @@
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 +#include "DrawableCache.h"
1.25 +#include <graphics/wsgraphicscontext.h>
1.26 +#include <graphics/wsdrawablesourceprovider.h>
1.27 +#include <graphics/wsdrawresource.h>
1.28 +#include "../SERVER/bitgditomwsgraphicscontextmappings.h"
1.29 +
1.30 +const TInt KBufferSize = 1024;
1.31 +
1.32 +EXPORT_C CCommandBuffer* CCommandBuffer::NewL()
1.33 + {
1.34 + CCommandBuffer* buffer = new (ELeave) CCommandBuffer;
1.35 + CleanupStack::PushL(buffer);
1.36 + buffer->ConstructL();
1.37 + CleanupStack::Pop(buffer);
1.38 + return buffer;
1.39 + }
1.40 +
1.41 +CCommandBuffer::CCommandBuffer()
1.42 + {
1.43 + }
1.44 +
1.45 +EXPORT_C CCommandBuffer::~CCommandBuffer()
1.46 + {
1.47 + iDrawSections.ResetAndDestroy();
1.48 + iDrawSections.Close();
1.49 + iBufReadStream.Close();
1.50 + iClippingRegion.Close();
1.51 + iIntersectedRegion.Close();
1.52 + delete iRecordSegBuf;
1.53 + delete iBitmapCache;
1.54 + delete iFontCache;
1.55 + }
1.56 +
1.57 +void CCommandBuffer::ConstructL()
1.58 + {
1.59 + iBitmapCache = new (ELeave) CBitmapCache;
1.60 + iRecordSegBuf = CBufSeg::NewL(KBufferSize);
1.61 + iFontCache = new (ELeave) CFontsCache;
1.62 + }
1.63 +
1.64 +/**
1.65 +Resets the entire commandbuffer.
1.66 +*/
1.67 +void CCommandBuffer::Reset()
1.68 + {
1.69 + if(iRecordSegBuf)
1.70 + iRecordSegBuf->Reset();
1.71 +
1.72 + iError = KErrNone;
1.73 + iOrigin = TPoint(0,0);
1.74 + iClippingRegion.Clear();
1.75 + iDrawSections.ResetAndDestroy();
1.76 + }
1.77 +
1.78 +/**
1.79 +Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
1.80 +If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
1.81 +otherwise only sections which has not been externalized before will be externalized. Note that if only
1.82 +not externalized sections is asked for, the flag will be reset on that section so next call
1.83 +to ExternalizeLC will not externalize that section.
1.84 +
1.85 +@param aMsgBuf A buffer used to externalize the commandbuffer to.
1.86 +@param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
1.87 +*/
1.88 +void CCommandBuffer::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
1.89 + {
1.90 + // Add drawsections to aMsgBuf
1.91 + const TInt sectionCount = iDrawSections.Count();
1.92 + for(TInt j = 0; j < sectionCount; j++)
1.93 + {
1.94 + CDrawSection* section = iDrawSections[j];
1.95 + if(aEntireBuffer || !section->HasBeenExternalized())
1.96 + {
1.97 + section->ExternalizeL(aMsgBuf);
1.98 + section->SetHasBeenExternalized(ETrue);
1.99 + }
1.100 + }
1.101 + }
1.102 +
1.103 +/**
1.104 +Internalizes the entire commandbuffer from buffer containing information about all drawsections and drawcommands.
1.105 +
1.106 +@param aBuf A buffer containing information about all drawsections and drawcommands.
1.107 +*/
1.108 +EXPORT_C void CCommandBuffer::InternalizeL(const TDesC8& aBuf)
1.109 + {
1.110 + // Reset the commandbuffer
1.111 + iRecordSegBuf->Reset();
1.112 + InternalizeAppendL(aBuf);
1.113 + }
1.114 +
1.115 +/**
1.116 +Internalizes and appends from a buffer containing information about some drawsections and drawcommands.
1.117 +
1.118 +@param aBuf A buffer containing information about some drawsections and drawcommands.
1.119 +*/
1.120 +EXPORT_C void CCommandBuffer::InternalizeAppendL(const TDesC8& aBuf)
1.121 + {
1.122 + // Reset the commandbuffer
1.123 + TWsGraphicMsgBufParser parser(aBuf);
1.124 +
1.125 + // Load drawsections
1.126 + const TInt count = parser.Count();
1.127 + for(TInt i = 0; i < count; i++)
1.128 + {
1.129 + CDrawSection* drawSection = CDrawSection::NewL();;
1.130 + CleanupStack::PushL(drawSection);
1.131 + User::LeaveIfError(drawSection->LoadL(parser, i));
1.132 + iDrawSections.AppendL(drawSection);
1.133 + CleanupStack::Pop(drawSection);
1.134 + }
1.135 +
1.136 + // Tidy the iDrawSection array so completely blocked sections will be removed
1.137 + Tidy();
1.138 + }
1.139 +
1.140 +/**
1.141 +@return the current active clipping region of the commandbuffer.
1.142 +*/
1.143 +EXPORT_C const TRegion& CCommandBuffer::ClippingRegion() const
1.144 + {
1.145 + return *iActiveMasterClippingRegion;
1.146 + }
1.147 +
1.148 +/**
1.149 +Prepares to record new drawcommands for a drawsection.
1.150 +This method is called from CRemoteGc::Activate().
1.151 +*/
1.152 +void CCommandBuffer::Prepare(const TRect& aDrawRect)
1.153 + {
1.154 + iDrawSectionRect = aDrawRect;
1.155 + iError = KErrNone;
1.156 + if(iRecordSegBuf)
1.157 + iRecordSegBuf->Delete(0, iRecordSegBuf->Size()); // Reset record buffer
1.158 + else
1.159 + TRAP(iError, iRecordSegBuf = CBufSeg::NewL(KBufferSize));
1.160 + }
1.161 +
1.162 +/**
1.163 +Finishes the recording of drawcommands for a drawsection.
1.164 +This method is called from CRemoteGc::Deactivate().
1.165 +
1.166 +@param aDrawRect The drawrect of the recorded drawcommands.
1.167 +@param aBoundingRect The boundingrect of the recorded drawcommands.
1.168 +*/
1.169 +TInt CCommandBuffer::Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
1.170 + {
1.171 + // If some error occured during the recording of this section, dont add the section
1.172 + if(!iError)
1.173 + {
1.174 + CDrawSection* drawSection = NULL;
1.175 + TRAP(iError, drawSection = CDrawSection::NewL(aDrawRect, aBoundingRect, aHasBitmapCommand))
1.176 + if(iError)
1.177 + return iError;
1.178 +
1.179 + // If boundingRect is empty clear the drawcommands added
1.180 + if(aBoundingRect.IsEmpty())
1.181 + iRecordSegBuf->Delete(0, iRecordSegBuf->Size());
1.182 +
1.183 + iRecordSegBuf->Compress();
1.184 + drawSection->SetBuffer(iRecordSegBuf); //Takes ownership of the memory allocated by iRecordSegBuf
1.185 + iRecordSegBuf = NULL;
1.186 + if(CheckForDuplicate(*drawSection))
1.187 + {
1.188 + delete drawSection;
1.189 + return KErrAlreadyExists;
1.190 + }
1.191 +
1.192 + iError = iDrawSections.Append(drawSection);
1.193 + if(iError)
1.194 + delete drawSection;
1.195 + else
1.196 + {
1.197 + Tidy();
1.198 + if(iDrawSections.Count() == 0 || AllSectionsExternalized())
1.199 + return KErrGeneral;
1.200 + }
1.201 + }
1.202 +
1.203 + return iError;
1.204 + }
1.205 +
1.206 +/**
1.207 +Remove drawsections that is completely blocked by another drawsection.
1.208 +*/
1.209 +void CCommandBuffer::Tidy()
1.210 + {
1.211 + RRegion region;
1.212 + TInt count = 0;
1.213 + for(TInt i = 0; i < (count = iDrawSections.Count()); i++)
1.214 + {
1.215 + TRect rect1 = iDrawSections[i]->DrawRect();
1.216 + region.Clear();
1.217 + region.AddRect(rect1);
1.218 + for(TInt j = i + 1; j < count; j++)
1.219 + {
1.220 + TRect rect2 = iDrawSections[j]->DrawRect();
1.221 + region.SubRect(rect2);
1.222 + }
1.223 +
1.224 + if(region.IsEmpty())
1.225 + {
1.226 + delete iDrawSections[i];
1.227 + iDrawSections.Remove(i--);
1.228 + }
1.229 + }
1.230 + region.Close();
1.231 + // coverity[extend_simple_error]
1.232 + }
1.233 +
1.234 +/**
1.235 +@return ETrue if all sections in the commandbuffer have been externalized, otherwise EFalse.
1.236 +*/
1.237 +TBool CCommandBuffer::AllSectionsExternalized() const
1.238 + {
1.239 + const TInt count = iDrawSections.Count();
1.240 + for(TInt i = 0; i < count; i++)
1.241 + {
1.242 + if(!iDrawSections[i]->HasBeenExternalized())
1.243 + return EFalse;
1.244 + }
1.245 + return ETrue;
1.246 + }
1.247 +
1.248 +/**
1.249 +Checks if there exists any duplicate of aDrawSection already in the iDrawSection array.
1.250 +
1.251 +@param aDrawSection The drawsection to look for a duplicate of.
1.252 +@return ETrue if a duplicate was found, otherwise EFalse.
1.253 +*/
1.254 +TBool CCommandBuffer::CheckForDuplicate(const CDrawSection& aDrawSection) const
1.255 + {
1.256 + const TInt count = iDrawSections.Count();
1.257 + for(TInt i = 0; i < count; i++)
1.258 + {
1.259 + if(!iDrawSections[i]->IsIdentical(aDrawSection))
1.260 + continue;
1.261 +
1.262 + // Check if there is some drawsection that overlaps the section we found identical,
1.263 + // if that is the case it is not a duplicate
1.264 + for(TInt j = i + 1; j < count; j++)
1.265 + {
1.266 + TRect compareRect = iDrawSections[j]->DrawRect();
1.267 + if(aDrawSection.DrawRect().Intersects(compareRect))
1.268 + return EFalse; //Found a drawrect that overlapped, no duplicate exists then
1.269 + }
1.270 +
1.271 + // Found duplicate
1.272 + return ETrue;
1.273 + }
1.274 +
1.275 + return EFalse;
1.276 + }
1.277 +
1.278 +/**
1.279 +Updates the clippingregion for a specific drawsection.
1.280 +
1.281 +@param aDrawSectionIndex The index in iDrawSections of the drawsection to update the clippingregion for.
1.282 +*/
1.283 +void CCommandBuffer::UpdateClippingRegion(TInt aDrawSectionIndex)
1.284 + {
1.285 + __ASSERT_DEBUG(aDrawSectionIndex < iDrawSections.Count(), User::Invariant());
1.286 +
1.287 + iDrawSectionClippingRegion.Clear();
1.288 + if (iMasterClippingRegion)
1.289 + {
1.290 + iDrawSectionClippingRegion.Copy(*iMasterClippingRegion);
1.291 + }
1.292 + else
1.293 + {
1.294 + TRect rect = iMasterClippingRect;
1.295 + rect.Move(iMasterOrigin);
1.296 + iDrawSectionClippingRegion.AddRect(rect);
1.297 + }
1.298 +
1.299 + const TInt count = iDrawSections.Count();
1.300 + for(TInt i = aDrawSectionIndex + 1; i < count; ++i)
1.301 + {
1.302 + TRect rect = iDrawSections[i]->DrawRect();
1.303 + rect.Move(iMasterOrigin);
1.304 + iDrawSectionClippingRegion.SubRect(rect);
1.305 + }
1.306 +
1.307 + if (iDrawSectionClippingRegion.CheckError())
1.308 + iActiveMasterClippingRegion = iMasterClippingRegion;
1.309 + else
1.310 + iActiveMasterClippingRegion = &iDrawSectionClippingRegion;
1.311 + }
1.312 +
1.313 +/**
1.314 +Writes data of a specific length to the recordbuffer.
1.315 +
1.316 +@param aPtr The data to write.
1.317 +@param aLength The length of the data to write.
1.318 +*/
1.319 +void CCommandBuffer::Write(const TUint8* aPtr, TUint aLength)
1.320 + {
1.321 + if(iError)
1.322 + return;
1.323 +
1.324 + TRAP(iError, iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aPtr, aLength))
1.325 + if(iError)
1.326 + return;
1.327 + }
1.328 +
1.329 +/**
1.330 +Writes text to the recordbuffer.
1.331 +
1.332 +@param aText The text to write to the recordbuffer.
1.333 +*/
1.334 +void CCommandBuffer::WriteText(const TDesC8 &aText)
1.335 + {
1.336 + if(iError)
1.337 + return;
1.338 +
1.339 + // Append the total size of the text
1.340 + Write<TInt>(aText.Size());
1.341 + if(iError)
1.342 + return;
1.343 +
1.344 + TRAP(iError, DoWriteTextL(aText));
1.345 + }
1.346 +
1.347 +/**
1.348 +Writes text to the recordbuffer.
1.349 +
1.350 +@param aText The text to write to the recordbuffer.
1.351 +*/
1.352 +void CCommandBuffer::WriteText(const TDesC16 &aText)
1.353 + {
1.354 + if(iError)
1.355 + return;
1.356 +
1.357 + // Append the total size of the text
1.358 + Write<TInt>(aText.Size());
1.359 + if(iError)
1.360 + return;
1.361 +
1.362 + TPtrC8 textPtr(reinterpret_cast<const TUint8*>(aText.Ptr()),aText.Size());
1.363 + TRAP(iError, DoWriteTextL(textPtr));
1.364 + }
1.365 +
1.366 +/**
1.367 +Writes text to the recordbuffer.
1.368 +
1.369 +@param aText The text to write to the recordbuffer.
1.370 +*/
1.371 +void CCommandBuffer::DoWriteTextL(const TDesC8 &aText)
1.372 + {
1.373 + iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aText, aText.Size());
1.374 + }
1.375 +
1.376 +/**
1.377 +Reads data with a specific length from iBufReadStream.
1.378 +
1.379 +@param aPtr The read data is written to this paramenter.
1.380 +@param aLength The length of the data to be read.
1.381 +*/
1.382 +void CCommandBuffer::ReadL(TUint8* aPtr, TUint aLength)
1.383 + {
1.384 + iBufReadStream.ReadL(aPtr, aLength);
1.385 + }
1.386 +
1.387 +/**
1.388 +Reads text from iBufReadStream.
1.389 +
1.390 +@param aText The read text is put into this 8-bit buffer.
1.391 +*/
1.392 +void CCommandBuffer::ReadTextLC(TPtrC8& aText)
1.393 + {
1.394 + DoReadTextLC(aText,EFalse);
1.395 + }
1.396 +
1.397 +/**
1.398 +Reads text from iBufReadStream.
1.399 +
1.400 +@param aText The read text is put into this 16-bit buffer.
1.401 +*/
1.402 +void CCommandBuffer::ReadTextLC(TPtrC16& aText)
1.403 + {
1.404 + TPtrC8 text8;
1.405 + DoReadTextLC(text8,ETrue);
1.406 + aText.Set(reinterpret_cast<const TUint16*>(text8.Ptr()),text8.Size()/2);
1.407 + }
1.408 +
1.409 +/**
1.410 +Reads text from iBufReadStream; used by ReadTextLC
1.411 +
1.412 +@internalComponent
1.413 +*/
1.414 +void CCommandBuffer::DoReadTextLC(TPtrC8& aText,TBool a16Bit)
1.415 + {
1.416 + ASSERT(iBufRead);
1.417 +
1.418 + TInt textSize;
1.419 + ReadL<TInt>(textSize); // Read the length of the text
1.420 + if(0 > textSize)
1.421 + {
1.422 + User::Leave(KErrArgument);
1.423 + }
1.424 +
1.425 + // attempt to do it inline
1.426 + const TInt pos = iBufReadStream.Source()->TellL(MStreamBuf::ERead).Offset();
1.427 + if(!a16Bit || !(pos & 1)) // check 16bit-aligned
1.428 + {
1.429 + const TPtrC8 remaining = iBufRead->Ptr(pos);
1.430 + if(remaining.Size() >= textSize) // can do inline!
1.431 + {
1.432 + CleanupStack::PushL((TAny*)NULL); // have to push something
1.433 + iBufReadStream.Source()->SeekL(MStreamBuf::ERead,textSize);
1.434 + aText.Set(remaining.Ptr(),textSize);
1.435 + return;
1.436 + }
1.437 + }
1.438 +
1.439 + // have to copy into a continuous segment
1.440 + HBufC8* buf = HBufC8::NewLC(textSize);
1.441 + TPtr8 textPtr8(buf->Des());
1.442 + iBufReadStream.ReadL(textPtr8,textSize);
1.443 + aText.Set(*buf);
1.444 + }
1.445 +
1.446 +/**
1.447 +Compares the commands in one buffer to those in another
1.448 +@param aBuffer The buffer to compare to
1.449 +@return ETrue if they are an exact match, EFalse otherwise
1.450 +*/
1.451 +EXPORT_C TBool CCommandBuffer::IsIdentical(const CCommandBuffer & aBuffer) const
1.452 + {
1.453 + for(TInt i = 0; i < iDrawSections.Count(); ++i)
1.454 + {
1.455 + if (!iDrawSections[i]->IsIdentical(*aBuffer.iDrawSections[i]))
1.456 + return EFalse;
1.457 + }
1.458 + return ETrue;
1.459 + }
1.460 +
1.461 +/**
1.462 + @internalTechnology
1.463 +*/
1.464 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aPosition*/, const TRect& /*aDrawRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, CBitmapContext& /*aContext*/) //Stub implementation to maintain compatibility with classic wserv
1.465 + {
1.466 + ASSERT(0);
1.467 + return KErrNotSupported;
1.468 + }
1.469 +
1.470 +/**
1.471 + @internalTechnology
1.472 +*/
1.473 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aMasterOrigin*/, const TRegion* /*aMasterClippingRegion*/, const TRect& /*aMasterClippingRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, CBitmapContext& /*aBitmapContext*/) //Stub implementation to maintain compatibility with WSERV2
1.474 + {
1.475 + ASSERT(0);
1.476 + return KErrNotSupported;
1.477 + }
1.478 +
1.479 +/**
1.480 +Draws draw commands that are within a specific rect to a graphics context with a specific offset.
1.481 +
1.482 +@post The draw commands have been executed on the provided graphics context
1.483 +
1.484 +@param aOffset The offset applied on all drawing operations.
1.485 +@param aClippingRegion The region to which all draw commands are clipped
1.486 +@param aSourceRect Draws only draw commands that are within this rect relative to the original coordinate system, i.e. before Position is applied
1.487 +@param aWsGraphicResolver The resolver to be used for DrawGraphic() calls.
1.488 +@param aGraphicsContext The graphics context to draw to.
1.489 +@publishedPartner
1.490 +*/
1.491 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, const MWsGraphicResolver& aWsGraphicResolver, MWsGraphicsContext& aGraphicsContext)
1.492 + {
1.493 + iMasterOrigin = aOffset;
1.494 + iMasterClippingRegion = aClippingRegion;
1.495 + iMasterClippingRect = aSourceRect;
1.496 +
1.497 + Reset(aGraphicsContext);
1.498 + TRAPD(err, {
1.499 + iDrawableCache = new(ELeave) CRenderStageDrawableCache(aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>());
1.500 + DoPlayL(aWsGraphicResolver, aGraphicsContext);
1.501 + });
1.502 + delete iDrawableCache;
1.503 + iDrawableCache = NULL;
1.504 + return err;
1.505 + }
1.506 +
1.507 +/**
1.508 +Draws draw commands that are within a specific rect to a graphics context with a specific offset.
1.509 +
1.510 +@post The draw commands have been executed on the provided graphics context
1.511 +
1.512 +@param aOffset The offset applied on all drawing operations.
1.513 +@param aClippingRegion The region to which all draw commands are clipped
1.514 +@param aSourceRect Draws only draw commands that are within this rect relative to the original coordinate system, i.e. before Position is applied
1.515 +@param aWsSession The session used to create the graphics context (WindowsGc)
1.516 +@param aWindowGc The graphics context to draw to.
1.517 +@publishedPartner
1.518 +*/
1.519 +EXPORT_C TInt CCommandBuffer::Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, RWsSession& aWsSession, CWindowGc& aWindowGc)
1.520 + {
1.521 + iMasterOrigin = aOffset;
1.522 + iMasterClippingRegion = aClippingRegion;
1.523 + iMasterClippingRect = aSourceRect;
1.524 +
1.525 + Reset(aWindowGc);
1.526 +
1.527 + //Create a null version of MWsGraphicResolver which will never be used in this instance of the call to Play
1.528 + MWsGraphicResolver* graphicResolver = NULL;
1.529 +
1.530 + TRAPD(err, {
1.531 + iDrawableCache = new(ELeave) CWindowDrawableCache(aWsSession);
1.532 + DoPlayL(*graphicResolver, aWindowGc);
1.533 + });
1.534 + delete iDrawableCache;
1.535 + iDrawableCache = NULL;
1.536 + return err;
1.537 + }
1.538 +
1.539 +/**
1.540 +Draws drawcommands that are within a specific rect.
1.541 +
1.542 +@param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
1.543 +@param aGraphicsContext The graphics context to draw to.
1.544 +*/
1.545 +template<typename ContextType> void CCommandBuffer::DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext)
1.546 + {
1.547 + const TInt sections = iDrawSections.Count();
1.548 + if(sections == 0)
1.549 + User::Leave(KErrEof);
1.550 +
1.551 + iBitmapCache->BeginUpdate();
1.552 + iFontCache->BeginUpdate();
1.553 + for(TInt i = 0; i < sections; i++)
1.554 + {
1.555 + UpdateClippingRegion(i);
1.556 + DrawSectionL(*iDrawSections[i], aWsGraphicResolver, aGraphicsContext);
1.557 + }
1.558 + iFontCache->EndUpdate();
1.559 + iBitmapCache->EndUpdate();
1.560 + }
1.561 +
1.562 +/**
1.563 +Draws a specific drawsection.
1.564 +
1.565 +@param aDrawSection The drawsection to be drawn.
1.566 +@param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
1.567 +@param aGraphicsContext The graphics context to draw to.
1.568 +*/
1.569 +template<typename ContextType> void CCommandBuffer::DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext)
1.570 + {
1.571 + iDrawSectionRect = aDrawSection.DrawRect();
1.572 + Reset(aGraphicsContext);
1.573 +
1.574 + iBufRead = aDrawSection.Buffer();
1.575 + iBufReadStream.Open(*iBufRead, 0);
1.576 +
1.577 + TDrawCode drawCode;
1.578 + while(ETrue)
1.579 + {
1.580 + TRAPD(err, ReadL<TDrawCode>(drawCode));
1.581 + if(err == KErrEof)
1.582 + return;
1.583 + else if(err)
1.584 + User::Leave(err);
1.585 +
1.586 + switch(drawCode)
1.587 + {
1.588 + case ECommandClear:
1.589 + Clear(aGraphicsContext);
1.590 + break;
1.591 + case ECommandClearRect:
1.592 + ClearRectL(aGraphicsContext);
1.593 + break;
1.594 + case ECommandCopyRect:
1.595 + CopyRectL(aGraphicsContext);
1.596 + break;
1.597 + case ECommandBitBlt1:
1.598 + BitBlt1L(aGraphicsContext);
1.599 + break;
1.600 + case ECommandBitBlt2:
1.601 + BitBlt2L(aGraphicsContext);
1.602 + break;
1.603 + case ECommandBitBltMasked:
1.604 + BitBltMaskedL(aGraphicsContext);
1.605 + break;
1.606 + case ECommandSetFaded:
1.607 + User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
1.608 + break;
1.609 + case ECommandSetFadingParameters:
1.610 + User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
1.611 + break;
1.612 + case ECommandAlphaBlendBitmaps:
1.613 + AlphaBlendBitmapsL(aGraphicsContext);
1.614 + break;
1.615 + case ECommandSetOrigin:
1.616 + SetOriginL(aGraphicsContext);
1.617 + break;
1.618 + case ECommandSetDrawMode:
1.619 + SetDrawModeL(aGraphicsContext);
1.620 + break;
1.621 + case ECommandSetClippingRect:
1.622 + SetClippingRectL(aGraphicsContext);
1.623 + break;
1.624 + case ECommandCancelClippingRect:
1.625 + CancelClippingRect(aGraphicsContext);
1.626 + break;
1.627 + case ECommandReset:
1.628 + Reset(aGraphicsContext);
1.629 + break;
1.630 + case ECommandUseFont:
1.631 + UseFontL(aGraphicsContext);
1.632 + break;
1.633 + case ECommandDiscardFont:
1.634 + DiscardFont(aGraphicsContext);
1.635 + break;
1.636 + case ECommandSetUnderlineStyle:
1.637 + SetUnderlineStyleL(aGraphicsContext);
1.638 + break;
1.639 + case ECommandSetStrikethroughStyle:
1.640 + SetStrikethroughStyleL(aGraphicsContext);
1.641 + break;
1.642 + case ECommandSetWordJustification:
1.643 + SetWordJustificationL(aGraphicsContext);
1.644 + break;
1.645 + case ECommandSetCharJustification:
1.646 + SetCharJustificationL(aGraphicsContext);
1.647 + break;
1.648 + case ECommandSetPenColor:
1.649 + SetPenColorL(aGraphicsContext);
1.650 + break;
1.651 + case ECommandSetPenStyle:
1.652 + SetPenStyleL(aGraphicsContext);
1.653 + break;
1.654 + case ECommandSetPenSize:
1.655 + SetPenSizeL(aGraphicsContext);
1.656 + break;
1.657 + case ECommandSetBrushColor:
1.658 + SetBrushColorL(aGraphicsContext);
1.659 + break;
1.660 + case ECommandSetBrushStyle:
1.661 + SetBrushStyleL(aGraphicsContext);
1.662 + break;
1.663 + case ECommandSetBrushOrigin:
1.664 + SetBrushOriginL(aGraphicsContext);
1.665 + break;
1.666 + case ECommandUseBrushPattern:
1.667 + UseBrushPatternL(aGraphicsContext);
1.668 + break;
1.669 + case ECommandDiscardBrushPattern:
1.670 + DiscardBrushPattern(aGraphicsContext);
1.671 + break;
1.672 + case ECommandMoveTo:
1.673 + MoveToL(aGraphicsContext);
1.674 + break;
1.675 + case ECommandMoveBy:
1.676 + MoveByL(aGraphicsContext);
1.677 + break;
1.678 + case ECommandPlot:
1.679 + PlotL(aGraphicsContext);
1.680 + break;
1.681 + case ECommandDrawArc:
1.682 + DrawArcL(aGraphicsContext);
1.683 + break;
1.684 + case ECommandDrawLine:
1.685 + DrawLineL(aGraphicsContext);
1.686 + break;
1.687 + case ECommandDrawLineTo:
1.688 + DrawLineToL(aGraphicsContext);
1.689 + break;
1.690 + case ECommandDrawLineBy:
1.691 + DrawLineByL(aGraphicsContext);
1.692 + break;
1.693 + case ECommandDrawPolyLine:
1.694 + DrawPolyLineL(aGraphicsContext);
1.695 + break;
1.696 + case ECommandDrawPie:
1.697 + DrawPieL(aGraphicsContext);
1.698 + break;
1.699 + case ECommandDrawEllipse:
1.700 + DrawEllipseL(aGraphicsContext);
1.701 + break;
1.702 + case ECommandDrawRect:
1.703 + DrawRectL(aGraphicsContext);
1.704 + break;
1.705 + case ECommandDrawPolygon:
1.706 + DrawPolygonL(aGraphicsContext);
1.707 + break;
1.708 + case ECommandDrawRoundRect:
1.709 + DrawRoundRectL(aGraphicsContext);
1.710 + break;
1.711 + case ECommandDrawBitmap1:
1.712 + DrawBitmap1L(aGraphicsContext);
1.713 + break;
1.714 + case ECommandDrawBitmap2:
1.715 + DrawBitmap2L(aGraphicsContext);
1.716 + break;
1.717 + case ECommandDrawBitmap3:
1.718 + DrawBitmap3L(aGraphicsContext);
1.719 + break;
1.720 + case ECommandDrawBitmapMasked:
1.721 + DrawBitmapMaskedL(aGraphicsContext);
1.722 + break;
1.723 + case ECommandDrawText1:
1.724 + DrawText1L(aGraphicsContext);
1.725 + break;
1.726 + case ECommandDrawText2:
1.727 + DrawText2L(aGraphicsContext);
1.728 + break;
1.729 + case ECommandDrawText3:
1.730 + DrawText3L(aGraphicsContext);
1.731 + break;
1.732 + case ECommandDrawText4:
1.733 + DrawText4L(aGraphicsContext);
1.734 + break;
1.735 + case ECommandDrawText5:
1.736 + DrawText5L(aGraphicsContext);
1.737 + break;
1.738 + case ECommandMapColors:
1.739 + User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
1.740 + break;
1.741 + case ECommandSetClippingRegion:
1.742 + SetClippingRegionL(aGraphicsContext);
1.743 + break;
1.744 + case ECommandCancelClippingRegion:
1.745 + CancelClippingRegion(aGraphicsContext);
1.746 + break;
1.747 + case ECommandDrawTextVertical1:
1.748 + DrawTextVertical1L(aGraphicsContext);
1.749 + break;
1.750 + case ECommandDrawTextVertical2:
1.751 + DrawTextVertical2L(aGraphicsContext);
1.752 + break;
1.753 + case ECommandDrawTextVertical3:
1.754 + DrawTextVertical3L(aGraphicsContext);
1.755 + break;
1.756 + case ECommandDrawTextVertical4:
1.757 + DrawTextVertical4L(aGraphicsContext);
1.758 + break;
1.759 + case ECommandDrawWsGraphic1:
1.760 + DrawWsGraphic1L(aWsGraphicResolver);
1.761 + break;
1.762 + case ECommandDrawWsGraphic2:
1.763 + DrawWsGraphic2L(aWsGraphicResolver);
1.764 + break;
1.765 + case ECommandSetShadowColor:
1.766 + SetShadowColorL(aGraphicsContext);
1.767 + break;
1.768 + case ECommandDrawResourceToPos:
1.769 + DrawResourceToPosL(aGraphicsContext);
1.770 + break;
1.771 + case ECommandDrawResourceToRect:
1.772 + DrawResourceToRectL(aGraphicsContext);
1.773 + break;
1.774 + case ECommandDrawResourceFromRectToRect:
1.775 + DrawResourceFromRectToRectL(aGraphicsContext);
1.776 + break;
1.777 + case ECommandDrawResourceWithData:
1.778 + DrawResourceWithDataL(aGraphicsContext);
1.779 + break;
1.780 + default:
1.781 + User::LeaveIfError(KErrNotFound);
1.782 + break;
1.783 + }
1.784 + }
1.785 + }
1.786 +
1.787 +template<typename ContextType> void CCommandBuffer::Clear(ContextType& aGraphicsContext) const
1.788 + {
1.789 + aGraphicsContext.Clear();
1.790 + }
1.791 +
1.792 +template<typename ContextType> void CCommandBuffer::ClearRectL(ContextType& aGraphicsContext)
1.793 + {
1.794 + TRect rect;
1.795 + ReadL<TRect>(rect);
1.796 +
1.797 + aGraphicsContext.Clear(rect);
1.798 + }
1.799 +
1.800 +template<typename ContextType> void CCommandBuffer::CopyRectL(ContextType& aGraphicsContext)
1.801 + {
1.802 + TPoint point;
1.803 + TRect rect;
1.804 +
1.805 + ReadL<TPoint>(point);
1.806 + ReadL<TRect>(rect);
1.807 +
1.808 + aGraphicsContext.CopyRect(point, rect);
1.809 + }
1.810 +
1.811 +template<typename ContextType> void CCommandBuffer::BitBlt1L(ContextType& aGraphicsContext)
1.812 + {
1.813 + TPoint point;
1.814 + TInt handle;
1.815 +
1.816 + ReadL<TPoint>(point);
1.817 + ReadL<TInt>(handle);
1.818 +
1.819 + if(!iBitmapCache->UseL(handle))
1.820 + DoBitBlt1L(aGraphicsContext, point, handle);
1.821 + }
1.822 +
1.823 +void CCommandBuffer::DoBitBlt1L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle)
1.824 + {
1.825 + aWindowGc.BitBlt(aPoint, iBitmapCache->Resolve(aHandle));
1.826 + }
1.827 +
1.828 +void CCommandBuffer::DoBitBlt1L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle)
1.829 + {
1.830 + aGraphicsContext.BitBlt(aPoint, *iBitmapCache->Resolve(aHandle));
1.831 + }
1.832 +
1.833 +template<typename ContextType> void CCommandBuffer::BitBlt2L(ContextType& aGraphicsContext)
1.834 + {
1.835 + TPoint point;
1.836 + TRect sourceRect;
1.837 + TInt handle;
1.838 +
1.839 + ReadL<TPoint>(point);
1.840 + ReadL<TInt>(handle);
1.841 + ReadL<TRect>(sourceRect);
1.842 +
1.843 + if(!iBitmapCache->UseL(handle))
1.844 + DoBitBlt2L(aGraphicsContext, point, handle, sourceRect);
1.845 + }
1.846 +
1.847 +void CCommandBuffer::DoBitBlt2L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle, TRect aSourceRect)
1.848 + {
1.849 + aWindowGc.BitBlt(aPoint, iBitmapCache->Resolve(aHandle), aSourceRect);
1.850 + }
1.851 +
1.852 +void CCommandBuffer::DoBitBlt2L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle, TRect aSourceRect)
1.853 + {
1.854 + aGraphicsContext.BitBlt(aPoint, *iBitmapCache->Resolve(aHandle), aSourceRect);
1.855 + }
1.856 +
1.857 +template<typename ContextType> void CCommandBuffer::BitBltMaskedL(ContextType& aGraphicsContext)
1.858 + {
1.859 + TPoint point;
1.860 + TInt bitmapHandle;
1.861 + TRect sourceRect;
1.862 + TInt maskHandle;
1.863 + TBool invertedMask;
1.864 +
1.865 + ReadL<TPoint>(point);
1.866 + ReadL<TInt>(bitmapHandle);
1.867 + ReadL<TRect>(sourceRect);
1.868 + ReadL<TInt>(maskHandle);
1.869 + ReadL<TBool>(invertedMask);
1.870 +
1.871 + if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1.872 + DoBitBltMaskedL(aGraphicsContext, point, bitmapHandle, sourceRect, maskHandle, invertedMask);
1.873 + }
1.874 +
1.875 +void CCommandBuffer::DoBitBltMaskedL(CWindowGc& aWindowGc, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask)
1.876 + {
1.877 + aWindowGc.BitBltMasked(aPoint, iBitmapCache->Resolve(aBitmapHandle), aSourceRect, iBitmapCache->Resolve(aMaskHandle), aInvertMask);
1.878 + }
1.879 +
1.880 +void CCommandBuffer::DoBitBltMaskedL(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask)
1.881 + {
1.882 + aGraphicsContext.BitBltMasked(aPoint, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect, *iBitmapCache->Resolve(aMaskHandle), aInvertMask);
1.883 + }
1.884 +
1.885 +template<typename ContextType> void CCommandBuffer::AlphaBlendBitmapsL(ContextType& aGraphicsContext)
1.886 + {
1.887 + TPoint destPoint;
1.888 + TInt srcHandle;
1.889 + TRect sourceRect;
1.890 + TInt alphaHandle;
1.891 + TPoint alphaPoint;
1.892 +
1.893 + ReadL<TPoint>(destPoint);
1.894 + ReadL<TInt>(srcHandle);
1.895 + ReadL<TRect>(sourceRect);
1.896 + ReadL<TInt>(alphaHandle);
1.897 + ReadL<TPoint>(alphaPoint);
1.898 +
1.899 + if(!iBitmapCache->UseL(srcHandle) && !iBitmapCache->UseL(alphaHandle))
1.900 + DoAlphaBlendBitmapsL(aGraphicsContext, destPoint, srcHandle, sourceRect, alphaHandle, alphaPoint);
1.901 + }
1.902 +
1.903 +void CCommandBuffer::DoAlphaBlendBitmapsL(CWindowGc& aWindowGc, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint)
1.904 + {
1.905 + aWindowGc.AlphaBlendBitmaps(aDestPoint, iBitmapCache->Resolve(aSrcHandle), aSourceRect, iBitmapCache->Resolve(aAlphaHandle), aAlphaPoint);
1.906 + }
1.907 +
1.908 +void CCommandBuffer::DoAlphaBlendBitmapsL(MWsGraphicsContext& aGraphicsContext, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint)
1.909 + {
1.910 + aGraphicsContext.BitBltMasked(aDestPoint, *iBitmapCache->Resolve(aSrcHandle), aSourceRect, *iBitmapCache->Resolve(aAlphaHandle), aAlphaPoint);
1.911 + }
1.912 +
1.913 +template<typename ContextType> void CCommandBuffer::SetOriginL(ContextType& aGraphicsContext)
1.914 + {
1.915 + ReadL<TPoint>(iOrigin);
1.916 + aGraphicsContext.SetOrigin(iMasterOrigin + iOrigin);
1.917 + }
1.918 +
1.919 +template<typename ContextType> void CCommandBuffer::SetDrawModeL(ContextType& aGraphicsContext)
1.920 + {
1.921 + CGraphicsContext::TDrawMode drawMode;
1.922 + ReadL<CGraphicsContext::TDrawMode>(drawMode);
1.923 +
1.924 + DoSetDrawModeL(aGraphicsContext, drawMode);
1.925 + }
1.926 +
1.927 +void CCommandBuffer::DoSetDrawModeL(CWindowGc& aWindowGc, CGraphicsContext::TDrawMode aDrawMode)
1.928 + {
1.929 + aWindowGc.SetDrawMode(aDrawMode);
1.930 + }
1.931 +
1.932 +void CCommandBuffer::DoSetDrawModeL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TDrawMode aDrawMode)
1.933 + {
1.934 + aGraphicsContext.SetDrawMode(BitGdiToMWsGraphicsContextMappings::LossyConvert(aDrawMode));
1.935 + }
1.936 +
1.937 +template<typename ContextType> void CCommandBuffer::SetClippingRectL(ContextType& aGraphicsContext)
1.938 + {
1.939 + ReadL<TRect>(iClippingRect);
1.940 + iClippingRect.Intersection(iMasterClippingRect);
1.941 + iClippingRect.Intersection(iDrawSectionRect);
1.942 +
1.943 + //Replacement for SetClippingRect functionality which MWsGraphicsContext does not support
1.944 + iIntersectedRegion.Clear();
1.945 + if(iActiveMasterClippingRegion->Count() > 0)
1.946 + iIntersectedRegion.Copy(*iActiveMasterClippingRegion);
1.947 + iIntersectedRegion.ClipRect(iClippingRect);
1.948 + aGraphicsContext.SetClippingRegion(iIntersectedRegion);
1.949 + }
1.950 +
1.951 +template<typename ContextType> void CCommandBuffer::CancelClippingRect(ContextType& aGraphicsContext)
1.952 + {
1.953 + iClippingRect = iMasterClippingRect;
1.954 + iClippingRect.Intersection(iDrawSectionRect);
1.955 +
1.956 + //Replacement for SetClippingRect functionality which MWsGraphicsContext does not support
1.957 + iIntersectedRegion.Clear();
1.958 + if(iActiveMasterClippingRegion && iActiveMasterClippingRegion->Count() > 0)
1.959 + iIntersectedRegion.Copy(*iActiveMasterClippingRegion);
1.960 + iIntersectedRegion.ClipRect(iClippingRect);
1.961 + aGraphicsContext.SetClippingRegion(iIntersectedRegion);
1.962 + }
1.963 +
1.964 +void CCommandBuffer::Reset(CWindowGc& aWindowGc)
1.965 + {
1.966 + aWindowGc.Reset();
1.967 +
1.968 + aWindowGc.SetOrigin(iMasterOrigin);
1.969 + if(iActiveMasterClippingRegion)
1.970 + aWindowGc.SetClippingRegion(*iActiveMasterClippingRegion);
1.971 + CancelClippingRect(aWindowGc);
1.972 + iOrigin = TPoint(0,0);
1.973 + iClippingRegion.Clear();
1.974 + iParsedClippingRegionIsSet = EFalse;
1.975 + }
1.976 +
1.977 +void CCommandBuffer::Reset(MWsGraphicsContext& aGraphicsContext)
1.978 + {
1.979 + aGraphicsContext.Reset();
1.980 +
1.981 + TRgb brushColor = KRgbWhite;
1.982 + brushColor.SetAlpha(0); //make transparent
1.983 + aGraphicsContext.SetBrushColor(brushColor);
1.984 +
1.985 + aGraphicsContext.SetOrigin(iMasterOrigin);
1.986 + if(iActiveMasterClippingRegion)
1.987 + aGraphicsContext.SetClippingRegion(*iActiveMasterClippingRegion);
1.988 + CancelClippingRect(aGraphicsContext);
1.989 + iOrigin = TPoint(0,0);
1.990 + iClippingRegion.Clear();
1.991 + iParsedClippingRegionIsSet = EFalse;
1.992 + }
1.993 +
1.994 +template<typename ContextType> void CCommandBuffer::UseFontL(ContextType& aGraphicsContext)
1.995 + {
1.996 + TInt fontHandle;
1.997 + ReadL<TInt>(fontHandle);
1.998 + if(iFontCache->UseL(fontHandle)) return;
1.999 +
1.1000 + DoUseFontL(aGraphicsContext, fontHandle);
1.1001 + }
1.1002 +
1.1003 +void CCommandBuffer::DoUseFontL(CWindowGc& aWindowGc, TInt aFontHandle)
1.1004 + {
1.1005 + aWindowGc.UseFont(iFontCache->Resolve(aFontHandle));
1.1006 + }
1.1007 +
1.1008 +void CCommandBuffer::DoUseFontL(MWsGraphicsContext& aGraphicsContext, TInt aFontHandle)
1.1009 + {
1.1010 + aGraphicsContext.SetFont(iFontCache->Resolve(aFontHandle));
1.1011 + }
1.1012 +
1.1013 +void CCommandBuffer::DiscardFont(CWindowGc& aWindowGc) const
1.1014 + {
1.1015 + aWindowGc.DiscardFont();
1.1016 + }
1.1017 +
1.1018 +void CCommandBuffer::DiscardFont(MWsGraphicsContext& aGraphicsContext) const
1.1019 + {
1.1020 + aGraphicsContext.ResetFont();
1.1021 + }
1.1022 +
1.1023 +template<typename ContextType> void CCommandBuffer::SetUnderlineStyleL(ContextType& aGraphicsContext)
1.1024 + {
1.1025 + TFontUnderline underlineStyle;
1.1026 + ReadL<TFontUnderline>(underlineStyle);
1.1027 +
1.1028 + DoSetUnderlineStyleL(aGraphicsContext, underlineStyle);
1.1029 + }
1.1030 +
1.1031 +void CCommandBuffer::DoSetUnderlineStyleL(CWindowGc& aWindowGc, TFontUnderline aUnderlineStyle)
1.1032 + {
1.1033 + aWindowGc.SetUnderlineStyle(aUnderlineStyle);
1.1034 + }
1.1035 +
1.1036 +void CCommandBuffer::DoSetUnderlineStyleL(MWsGraphicsContext& aGraphicsContext, TFontUnderline aUnderlineStyle)
1.1037 + {
1.1038 + aGraphicsContext.SetUnderlineStyle(BitGdiToMWsGraphicsContextMappings::Convert(aUnderlineStyle));
1.1039 + }
1.1040 +
1.1041 +template<typename ContextType> void CCommandBuffer::SetStrikethroughStyleL(ContextType& aGraphicsContext)
1.1042 + {
1.1043 + TFontStrikethrough strikethroughStyle;
1.1044 + ReadL<TFontStrikethrough>(strikethroughStyle);
1.1045 +
1.1046 + DoSetStrikethroughStyleL(aGraphicsContext, strikethroughStyle);
1.1047 + }
1.1048 +
1.1049 +void CCommandBuffer::DoSetStrikethroughStyleL(CWindowGc& aWindowGc, TFontStrikethrough aStrikethroughStyle)
1.1050 + {
1.1051 + aWindowGc.SetStrikethroughStyle(aStrikethroughStyle);
1.1052 + }
1.1053 +
1.1054 +void CCommandBuffer::DoSetStrikethroughStyleL(MWsGraphicsContext& aGraphicsContext, TFontStrikethrough aStrikethroughStyle)
1.1055 + {
1.1056 + aGraphicsContext.SetStrikethroughStyle(BitGdiToMWsGraphicsContextMappings::Convert(aStrikethroughStyle));
1.1057 + }
1.1058 +
1.1059 +template<typename ContextType> void CCommandBuffer::SetWordJustificationL(ContextType& aGraphicsContext)
1.1060 + {
1.1061 + TInt excessWidth;
1.1062 + TInt numGaps;
1.1063 +
1.1064 + ReadL<TInt>(excessWidth);
1.1065 + ReadL<TInt>(numGaps);
1.1066 + aGraphicsContext.SetWordJustification(excessWidth, numGaps);
1.1067 + }
1.1068 +
1.1069 +template<typename ContextType> void CCommandBuffer::SetCharJustificationL(ContextType& aGraphicsContext)
1.1070 + {
1.1071 + TInt excessWidth;
1.1072 + TInt numChars;
1.1073 +
1.1074 + ReadL<TInt>(excessWidth);
1.1075 + ReadL<TInt>(numChars);
1.1076 + aGraphicsContext.SetCharJustification(excessWidth, numChars);
1.1077 + }
1.1078 +
1.1079 +template<typename ContextType> void CCommandBuffer::SetPenColorL(ContextType& aGraphicsContext)
1.1080 + {
1.1081 + TRgb color;
1.1082 + ReadL<TRgb>(color);
1.1083 +
1.1084 + aGraphicsContext.SetPenColor(color);
1.1085 + }
1.1086 +
1.1087 +template<typename ContextType> void CCommandBuffer::SetPenStyleL(ContextType& aGraphicsContext)
1.1088 + {
1.1089 + CGraphicsContext::TPenStyle penStyle;
1.1090 + ReadL<CGraphicsContext::TPenStyle>(penStyle);
1.1091 +
1.1092 + DoSetPenStyleL(aGraphicsContext, penStyle);
1.1093 + }
1.1094 +
1.1095 +void CCommandBuffer::DoSetPenStyleL(CWindowGc& aWindowGc, CGraphicsContext::TPenStyle aPenStyle)
1.1096 + {
1.1097 + aWindowGc.SetPenStyle(aPenStyle);
1.1098 + }
1.1099 +
1.1100 +void CCommandBuffer::DoSetPenStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TPenStyle aPenStyle)
1.1101 + {
1.1102 + aGraphicsContext.SetPenStyle(BitGdiToMWsGraphicsContextMappings::Convert(aPenStyle));
1.1103 + }
1.1104 +
1.1105 +template<typename ContextType> void CCommandBuffer::SetPenSizeL(ContextType& aGraphicsContext)
1.1106 + {
1.1107 + TSize size;
1.1108 + ReadL<TSize>(size);
1.1109 +
1.1110 + DoSetPenSizeL(aGraphicsContext, size);
1.1111 + }
1.1112 +
1.1113 +void CCommandBuffer::DoSetPenSizeL(CWindowGc& aWindowGc, TSize aSize)
1.1114 + {
1.1115 + aWindowGc.SetPenSize(aSize);
1.1116 + }
1.1117 +
1.1118 +void CCommandBuffer::DoSetPenSizeL(MWsGraphicsContext& aGraphicsContext, TSize aSize)
1.1119 + {
1.1120 + aGraphicsContext.SetPenSize(aSize);
1.1121 + }
1.1122 +
1.1123 +template<typename ContextType> void CCommandBuffer::SetBrushColorL(ContextType& aGraphicsContext)
1.1124 + {
1.1125 + TRgb color;
1.1126 + ReadL<TRgb>(color);
1.1127 +
1.1128 + aGraphicsContext.SetBrushColor(color);
1.1129 + }
1.1130 +
1.1131 +template<typename ContextType> void CCommandBuffer::SetBrushStyleL(ContextType& aGraphicsContext)
1.1132 + {
1.1133 + CGraphicsContext::TBrushStyle brushStyle;
1.1134 + ReadL<CGraphicsContext::TBrushStyle>(brushStyle);
1.1135 +
1.1136 + DoSetBrushStyleL(aGraphicsContext, brushStyle);
1.1137 + }
1.1138 +
1.1139 +void CCommandBuffer::DoSetBrushStyleL(CWindowGc& aWindowGc, CGraphicsContext::TBrushStyle aBrushStyle)
1.1140 + {
1.1141 + aWindowGc.SetBrushStyle(aBrushStyle);
1.1142 + }
1.1143 +
1.1144 +void CCommandBuffer::DoSetBrushStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TBrushStyle aBrushStyle)
1.1145 + {
1.1146 + aGraphicsContext.SetBrushStyle(BitGdiToMWsGraphicsContextMappings::Convert(aBrushStyle));
1.1147 + }
1.1148 +
1.1149 +template<typename ContextType> void CCommandBuffer::SetBrushOriginL(ContextType& aGraphicsContext)
1.1150 + {
1.1151 + TPoint point;
1.1152 + ReadL<TPoint>(point);
1.1153 +
1.1154 + aGraphicsContext.SetBrushOrigin(point);
1.1155 + }
1.1156 +
1.1157 +template<typename ContextType> void CCommandBuffer::UseBrushPatternL(ContextType& aGraphicsContext)
1.1158 + {
1.1159 + TInt deviceHandle;
1.1160 + ReadL<TInt>(deviceHandle);
1.1161 +
1.1162 + if(iBitmapCache->UseL(deviceHandle)) return;
1.1163 + DoUseBrushPatternL(aGraphicsContext, deviceHandle);
1.1164 + }
1.1165 +
1.1166 +void CCommandBuffer::DoUseBrushPatternL(CWindowGc& aWindowGc, TInt aDeviceHandle)
1.1167 + {
1.1168 + aWindowGc.UseBrushPattern(iBitmapCache->Resolve(aDeviceHandle));
1.1169 + }
1.1170 +
1.1171 +void CCommandBuffer::DoUseBrushPatternL(MWsGraphicsContext& aGraphicsContext, TInt aDeviceHandle)
1.1172 + {
1.1173 + aGraphicsContext.SetBrushPattern(*iBitmapCache->Resolve(aDeviceHandle));
1.1174 + }
1.1175 +
1.1176 +void CCommandBuffer::DiscardBrushPattern(CWindowGc& aWindowGc) const
1.1177 + {
1.1178 + aWindowGc.DiscardBrushPattern();
1.1179 + }
1.1180 +
1.1181 +void CCommandBuffer::DiscardBrushPattern(MWsGraphicsContext& aGraphicsContext) const
1.1182 + {
1.1183 + aGraphicsContext.ResetBrushPattern();
1.1184 + }
1.1185 +
1.1186 +template<typename ContextType> void CCommandBuffer::MoveToL(ContextType& aGraphicsContext)
1.1187 + {
1.1188 + TPoint point;
1.1189 + ReadL<TPoint>(point);
1.1190 +
1.1191 + aGraphicsContext.MoveTo(point);
1.1192 + }
1.1193 +
1.1194 +template<typename ContextType> void CCommandBuffer::MoveByL(ContextType& aGraphicsContext)
1.1195 + {
1.1196 + TPoint point;
1.1197 + ReadL<TPoint>(point);
1.1198 +
1.1199 + aGraphicsContext.MoveBy(point);
1.1200 + }
1.1201 +
1.1202 +template<typename ContextType> void CCommandBuffer::PlotL(ContextType& aGraphicsContext)
1.1203 + {
1.1204 + TPoint point;
1.1205 + ReadL<TPoint>(point);
1.1206 +
1.1207 + aGraphicsContext.Plot(point);
1.1208 + }
1.1209 +
1.1210 +template<typename ContextType> void CCommandBuffer::DrawArcL(ContextType& aGraphicsContext)
1.1211 + {
1.1212 + TRect rect;
1.1213 + TPoint start;
1.1214 + TPoint end;
1.1215 + ReadL<TRect>(rect);
1.1216 + ReadL<TPoint>(start);
1.1217 + ReadL<TPoint>(end);
1.1218 +
1.1219 + aGraphicsContext.DrawArc(rect, start, end);
1.1220 + }
1.1221 +
1.1222 +template<typename ContextType> void CCommandBuffer::DrawLineL(ContextType& aGraphicsContext)
1.1223 + {
1.1224 + TPoint point1;
1.1225 + TPoint point2;
1.1226 + ReadL<TPoint>(point1);
1.1227 + ReadL<TPoint>(point2);
1.1228 +
1.1229 + aGraphicsContext.DrawLine(point1, point2);
1.1230 + }
1.1231 +
1.1232 +template<typename ContextType> void CCommandBuffer::DrawLineToL(ContextType& aGraphicsContext)
1.1233 + {
1.1234 + TPoint point;
1.1235 + ReadL<TPoint>(point);
1.1236 +
1.1237 + aGraphicsContext.DrawLineTo(point);
1.1238 + }
1.1239 +
1.1240 +template<typename ContextType> void CCommandBuffer::DrawLineByL(ContextType& aGraphicsContext)
1.1241 + {
1.1242 + TPoint point;
1.1243 + ReadL<TPoint>(point);
1.1244 +
1.1245 + aGraphicsContext.DrawLineBy(point);
1.1246 + }
1.1247 +
1.1248 +void CCommandBuffer::DrawPolyLineL(CWindowGc& aWindowGc)
1.1249 + {
1.1250 + TInt nrOfPoints;
1.1251 + ReadL<TInt>(nrOfPoints);
1.1252 +
1.1253 + CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1.1254 + CleanupStack::PushL(pointList);
1.1255 + for(TInt i = 0; i < nrOfPoints; i++)
1.1256 + {
1.1257 + TPoint point;
1.1258 + ReadL<TPoint>(point);
1.1259 + pointList->AppendL(point);
1.1260 + }
1.1261 +
1.1262 + aWindowGc.DrawPolyLine(pointList);
1.1263 + CleanupStack::PopAndDestroy(pointList);
1.1264 + }
1.1265 +
1.1266 +void CCommandBuffer::DrawPolyLineL(MWsGraphicsContext& aGraphicsContext)
1.1267 + {
1.1268 + TInt nrOfPoints;
1.1269 + ReadL<TInt>(nrOfPoints);
1.1270 +
1.1271 + TPoint *points=(TPoint *)(nrOfPoints+1);
1.1272 + TArrayWrapper<TPoint> pointList(points, nrOfPoints);
1.1273 +
1.1274 + aGraphicsContext.DrawPolyLine(pointList);
1.1275 + }
1.1276 +
1.1277 +template<typename ContextType> void CCommandBuffer::DrawPieL(ContextType& aGraphicsContext)
1.1278 + {
1.1279 + TRect rect;
1.1280 + TPoint start;
1.1281 + TPoint end;
1.1282 + ReadL<TRect>(rect);
1.1283 + ReadL<TPoint>(start);
1.1284 + ReadL<TPoint>(end);
1.1285 +
1.1286 + aGraphicsContext.DrawPie(rect, start, end);
1.1287 + }
1.1288 +
1.1289 +template<typename ContextType> void CCommandBuffer::DrawEllipseL(ContextType& aGraphicsContext)
1.1290 + {
1.1291 + TRect rect;
1.1292 + ReadL<TRect>(rect);
1.1293 +
1.1294 + aGraphicsContext.DrawEllipse(rect);
1.1295 + }
1.1296 +
1.1297 +template<typename ContextType> void CCommandBuffer::DrawRectL(ContextType& aGraphicsContext)
1.1298 + {
1.1299 + TRect rect;
1.1300 + ReadL<TRect>(rect);
1.1301 +
1.1302 + aGraphicsContext.DrawRect(rect);
1.1303 + }
1.1304 +
1.1305 +template<typename ContextType> void CCommandBuffer::DrawRoundRectL(ContextType& aGraphicsContext)
1.1306 + {
1.1307 + TRect rect;
1.1308 + TSize ellipse;
1.1309 + ReadL<TRect>(rect);
1.1310 + ReadL<TSize>(ellipse);
1.1311 +
1.1312 + aGraphicsContext.DrawRoundRect(rect, ellipse);
1.1313 + }
1.1314 +
1.1315 +void CCommandBuffer::DrawPolygonL(CWindowGc& aWindowGc)
1.1316 + {
1.1317 + TInt nrOfPoints;
1.1318 + ReadL<TInt>(nrOfPoints);
1.1319 +
1.1320 + CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1.1321 + CleanupStack::PushL(pointList);
1.1322 + for(TInt i = 0; i < nrOfPoints; i++)
1.1323 + {
1.1324 + TPoint point;
1.1325 + ReadL<TPoint>(point);
1.1326 + pointList->AppendL(point);
1.1327 + }
1.1328 +
1.1329 + CGraphicsContext::TFillRule fillRule;
1.1330 + ReadL<CGraphicsContext::TFillRule>(fillRule);
1.1331 + aWindowGc.DrawPolygon(pointList, fillRule);
1.1332 + CleanupStack::PopAndDestroy(pointList);
1.1333 + }
1.1334 +
1.1335 +void CCommandBuffer::DrawPolygonL(MWsGraphicsContext& aGraphicsContext)
1.1336 + {
1.1337 + TInt nrOfPoints;
1.1338 + ReadL<TInt>(nrOfPoints);
1.1339 +
1.1340 + TPoint *points=(TPoint *)(nrOfPoints+1);
1.1341 + TArrayWrapper<TPoint> pointList(points, nrOfPoints);
1.1342 +
1.1343 + CGraphicsContext::TFillRule fillRule;
1.1344 + ReadL<CGraphicsContext::TFillRule>(fillRule);
1.1345 + aGraphicsContext.DrawPolygon(pointList, BitGdiToMWsGraphicsContextMappings::Convert(fillRule));
1.1346 + }
1.1347 +
1.1348 +void CCommandBuffer::DrawBitmap1L(CWindowGc& aWindowGc)
1.1349 + {
1.1350 + TPoint topLeft;
1.1351 + TInt bitmapHandle;
1.1352 +
1.1353 + ReadL<TPoint>(topLeft);
1.1354 + ReadL<TInt>(bitmapHandle);
1.1355 +
1.1356 + if(!iBitmapCache->UseL(bitmapHandle))
1.1357 + aWindowGc.DrawBitmap(topLeft, iBitmapCache->Resolve(bitmapHandle));
1.1358 + }
1.1359 +
1.1360 +void CCommandBuffer::DrawBitmap1L(MWsGraphicsContext& /*aGraphicsContext*/)
1.1361 + {
1.1362 + User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
1.1363 + }
1.1364 +
1.1365 +template<typename ContextType> void CCommandBuffer::DrawBitmap2L(ContextType& aGraphicsContext)
1.1366 + {
1.1367 + TRect destRect;
1.1368 + TInt bitmapHandle;
1.1369 +
1.1370 + ReadL<TRect>(destRect);
1.1371 + ReadL<TInt>(bitmapHandle);
1.1372 +
1.1373 + if(!iBitmapCache->UseL(bitmapHandle))
1.1374 + DoDrawBitmap2L(aGraphicsContext, destRect, bitmapHandle);
1.1375 + }
1.1376 +
1.1377 +void CCommandBuffer::DoDrawBitmap2L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle)
1.1378 + {
1.1379 + aWindowGc.DrawBitmap(aDestRect, iBitmapCache->Resolve(aBitmapHandle));
1.1380 + }
1.1381 +
1.1382 +void CCommandBuffer::DoDrawBitmap2L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle)
1.1383 + {
1.1384 + aGraphicsContext.DrawBitmap(aDestRect, *iBitmapCache->Resolve(aBitmapHandle));
1.1385 + }
1.1386 +
1.1387 +template<typename ContextType> void CCommandBuffer::DrawBitmap3L(ContextType& aGraphicsContext)
1.1388 + {
1.1389 + TRect destRect;
1.1390 + TInt bitmapHandle;
1.1391 + TRect sourceRect;
1.1392 +
1.1393 + ReadL<TRect>(destRect);
1.1394 + ReadL<TInt>(bitmapHandle);
1.1395 + ReadL<TRect>(sourceRect);
1.1396 +
1.1397 + if(!iBitmapCache->UseL(bitmapHandle))
1.1398 + DoDrawBitmap3L(aGraphicsContext, destRect, bitmapHandle, sourceRect);
1.1399 + }
1.1400 +
1.1401 +void CCommandBuffer::DoDrawBitmap3L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect)
1.1402 + {
1.1403 + aWindowGc.DrawBitmap(aDestRect, iBitmapCache->Resolve(aBitmapHandle), aSourceRect);
1.1404 + }
1.1405 +
1.1406 +void CCommandBuffer::DoDrawBitmap3L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect)
1.1407 + {
1.1408 + aGraphicsContext.DrawBitmap(aDestRect, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect);
1.1409 + }
1.1410 +
1.1411 +template<typename ContextType> void CCommandBuffer::DrawBitmapMaskedL(ContextType& aGraphicsContext)
1.1412 + {
1.1413 + TRect destRect;
1.1414 + TInt bitmapHandle;
1.1415 + TRect sourceRect;
1.1416 + TInt maskHandle;
1.1417 + TBool invertedMask;
1.1418 +
1.1419 + ReadL<TRect>(destRect);
1.1420 + ReadL<TInt>(bitmapHandle);
1.1421 + ReadL<TRect>(sourceRect);
1.1422 + ReadL<TInt>(maskHandle);
1.1423 + ReadL<TBool>(invertedMask);
1.1424 +
1.1425 + if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1.1426 + DoDrawBitmapMaskedL(aGraphicsContext, destRect, bitmapHandle, sourceRect, maskHandle, invertedMask);
1.1427 + }
1.1428 +
1.1429 +void CCommandBuffer::DoDrawBitmapMaskedL(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask)
1.1430 + {
1.1431 + aWindowGc.DrawBitmapMasked(aDestRect, iBitmapCache->Resolve(aBitmapHandle), aSourceRect, iBitmapCache->Resolve(aMaskHandle), aInvertedMask);
1.1432 + }
1.1433 +
1.1434 +void CCommandBuffer::DoDrawBitmapMaskedL(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask)
1.1435 + {
1.1436 + aGraphicsContext.DrawBitmapMasked(aDestRect, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect, *iBitmapCache->Resolve(aMaskHandle), aInvertedMask);
1.1437 + }
1.1438 +
1.1439 +template<typename ContextType> void CCommandBuffer::DrawText1L(ContextType& aGraphicsContext)
1.1440 + {
1.1441 + TPtrC16 text;
1.1442 + TPoint point;
1.1443 +
1.1444 + ReadTextLC(text);
1.1445 + ReadL<TPoint>(point);
1.1446 +
1.1447 + DoDrawText1L(aGraphicsContext, text, point);
1.1448 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1449 + }
1.1450 +
1.1451 +void CCommandBuffer::DoDrawText1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint)
1.1452 + {
1.1453 + aWindowGc.DrawText(aText, aPoint);
1.1454 + }
1.1455 +
1.1456 +void CCommandBuffer::DoDrawText1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint)
1.1457 + {
1.1458 + aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aPoint);
1.1459 + }
1.1460 +
1.1461 +template<typename ContextType> void CCommandBuffer::DrawText2L(ContextType& aGraphicsContext)
1.1462 + {
1.1463 + TPtrC16 text;
1.1464 + TRect box;
1.1465 + TInt baselineOffset;
1.1466 + CGraphicsContext::TTextAlign horiz;
1.1467 + TInt leftMargin;
1.1468 +
1.1469 + ReadTextLC(text);
1.1470 + ReadL<TRect>(box);
1.1471 + ReadL<TInt>(baselineOffset);
1.1472 + ReadL<CGraphicsContext::TTextAlign>(horiz);
1.1473 + ReadL<TInt>(leftMargin);
1.1474 +
1.1475 + DoDrawText2L(aGraphicsContext, text, box, baselineOffset, horiz, leftMargin);
1.1476 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1477 + }
1.1478 +
1.1479 +void CCommandBuffer::DoDrawText2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1.1480 + {
1.1481 + aWindowGc.DrawText(aText, aBox, aBaselineOffset, aHoriz, aLeftMargin);
1.1482 + }
1.1483 +
1.1484 +void CCommandBuffer::DoDrawText2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1.1485 + {
1.1486 + aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aBox, aBaselineOffset, BitGdiToMWsGraphicsContextMappings::Convert(aHoriz), aLeftMargin);
1.1487 + }
1.1488 +
1.1489 +template<typename ContextType> void CCommandBuffer::DrawText3L(ContextType& aGraphicsContext)
1.1490 + {
1.1491 + TPtrC16 text;
1.1492 + TPoint point;
1.1493 + CGraphicsContext::TDrawTextParam param;
1.1494 +
1.1495 + ReadTextLC(text);
1.1496 + ReadL<TPoint>(point);
1.1497 + //This is now ignored in the implmentation in CGraphicsContext and hence will ignore it here.
1.1498 + ReadL<CGraphicsContext::TDrawTextParam>(param);
1.1499 +
1.1500 + DoDrawText3L(aGraphicsContext, text, point);
1.1501 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1502 + }
1.1503 +
1.1504 +void CCommandBuffer::DoDrawText3L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint)
1.1505 + {
1.1506 + aWindowGc.DrawText(aText, aPoint);
1.1507 + }
1.1508 +
1.1509 +void CCommandBuffer::DoDrawText3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint)
1.1510 + {
1.1511 + aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aPoint);
1.1512 + }
1.1513 +
1.1514 +template<typename ContextType> void CCommandBuffer::DrawText4L(ContextType& aGraphicsContext)
1.1515 + {
1.1516 + TPtrC16 text;
1.1517 + CGraphicsContext::TTextParameters param;
1.1518 + TPoint point;
1.1519 +
1.1520 + ReadTextLC(text);
1.1521 + ReadL<CGraphicsContext::TTextParameters>(param);
1.1522 + ReadL<TPoint>(point);
1.1523 +
1.1524 + DoDrawText4L(aGraphicsContext, text, param, point);
1.1525 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1526 + }
1.1527 +
1.1528 +void CCommandBuffer::DoDrawText4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint)
1.1529 + {
1.1530 + aWindowGc.DrawText(aText, &aParam, aPoint);
1.1531 + }
1.1532 +
1.1533 +void CCommandBuffer::DoDrawText4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint)
1.1534 + {
1.1535 + aGraphicsContext.DrawText(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aPoint);
1.1536 + }
1.1537 +
1.1538 +template<typename ContextType> void CCommandBuffer::DrawText5L(ContextType& aGraphicsContext)
1.1539 + {
1.1540 + TPtrC16 text;
1.1541 + CGraphicsContext::TTextParameters param;
1.1542 + TRect box;
1.1543 + TInt baselineOffset;
1.1544 + CGraphicsContext::TTextAlign horiz;
1.1545 + TInt leftMargin;
1.1546 +
1.1547 + ReadTextLC(text);
1.1548 + ReadL<CGraphicsContext::TTextParameters>(param);
1.1549 + ReadL<TRect>(box);
1.1550 + ReadL<TInt>(baselineOffset);
1.1551 + ReadL<CGraphicsContext::TTextAlign>(horiz);
1.1552 + ReadL<TInt>(leftMargin);
1.1553 +
1.1554 + DoDrawText5L(aGraphicsContext, text, param, box, baselineOffset, horiz, leftMargin);
1.1555 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1556 + }
1.1557 +
1.1558 +void CCommandBuffer::DoDrawText5L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1.1559 + {
1.1560 + aWindowGc.DrawText(aText, &aParam, aBox, aBaselineOffset, aHoriz, aLeftMargin);
1.1561 + }
1.1562 +
1.1563 +void CCommandBuffer::DoDrawText5L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1.1564 + {
1.1565 + aGraphicsContext.DrawText(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aBox, aBaselineOffset, BitGdiToMWsGraphicsContextMappings::Convert(aHoriz), aLeftMargin);
1.1566 + }
1.1567 +
1.1568 +template<typename ContextType> void CCommandBuffer::SetClippingRegionL(ContextType& aGraphicsContext)
1.1569 + {
1.1570 + TInt nrOfRects;
1.1571 + ReadL<TInt>(nrOfRects);
1.1572 +
1.1573 + TRect rect;
1.1574 + iClippingRegion.Clear();
1.1575 + for(TInt i = 0; i < nrOfRects; i++)
1.1576 + {
1.1577 + ReadL<TRect>(rect);
1.1578 +// rect.Move(iMasterOrigin);
1.1579 + iClippingRegion.AddRect(rect);
1.1580 + }
1.1581 +
1.1582 + iParsedClippingRegionIsSet = ETrue;
1.1583 + if(iActiveMasterClippingRegion)
1.1584 + iClippingRegion.Intersect(*iActiveMasterClippingRegion);
1.1585 +
1.1586 + if(!iClippingRect.IsEmpty())
1.1587 + {
1.1588 + iClippingRegion.ClipRect(iClippingRect);
1.1589 + }
1.1590 +
1.1591 + aGraphicsContext.SetClippingRegion(iClippingRegion);
1.1592 + }
1.1593 +
1.1594 +template<typename ContextType> void CCommandBuffer::CancelClippingRegion(ContextType& aGraphicsContext)
1.1595 + {
1.1596 + iClippingRegion.Clear();
1.1597 + iParsedClippingRegionIsSet = EFalse;
1.1598 + if(iActiveMasterClippingRegion)
1.1599 + aGraphicsContext.SetClippingRegion(*iActiveMasterClippingRegion);
1.1600 + else
1.1601 + DoCancelClippingRegion(aGraphicsContext);
1.1602 + }
1.1603 +
1.1604 +void CCommandBuffer::DoCancelClippingRegion(CWindowGc& aWindowGc)
1.1605 + {
1.1606 + aWindowGc.CancelClippingRegion();
1.1607 + }
1.1608 +
1.1609 +void CCommandBuffer::DoCancelClippingRegion(MWsGraphicsContext& aGraphicsContext)
1.1610 + {
1.1611 + aGraphicsContext.ResetClippingRegion();
1.1612 + }
1.1613 +
1.1614 +template<typename ContextType> void CCommandBuffer::DrawTextVertical1L(ContextType& aGraphicsContext)
1.1615 + {
1.1616 + TPtrC16 text;
1.1617 + TPoint point;
1.1618 + TBool up;
1.1619 +
1.1620 + ReadTextLC(text);
1.1621 + ReadL<TPoint>(point);
1.1622 + ReadL<TBool>(up);
1.1623 +
1.1624 + DoDrawTextVertical1L(aGraphicsContext, text, point, up);
1.1625 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1626 + }
1.1627 +
1.1628 +void CCommandBuffer::DoDrawTextVertical1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint, TBool aUp)
1.1629 + {
1.1630 + aWindowGc.DrawTextVertical(aText, aPoint, aUp);
1.1631 + }
1.1632 +
1.1633 +void CCommandBuffer::DoDrawTextVertical1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint, TBool aUp)
1.1634 + {
1.1635 + aGraphicsContext.DrawTextVertical(aText, /*TTextParameters*/ NULL, aPoint, aUp);
1.1636 + }
1.1637 +
1.1638 +template<typename ContextType> void CCommandBuffer::DrawTextVertical2L(ContextType& aGraphicsContext)
1.1639 + {
1.1640 + TPtrC16 text;
1.1641 + TRect box;
1.1642 + TInt baselineOffset;
1.1643 + TBool up;
1.1644 + CGraphicsContext::TTextAlign vertical;
1.1645 + TInt margin;
1.1646 +
1.1647 + ReadTextLC(text);
1.1648 + ReadL<TRect>(box);
1.1649 + ReadL<TInt>(baselineOffset);
1.1650 + ReadL<TBool>(up);
1.1651 + ReadL<CGraphicsContext::TTextAlign>(vertical);
1.1652 + ReadL<TInt>(margin);
1.1653 +
1.1654 + DoDrawTextVertical2L(aGraphicsContext, text, box, baselineOffset, up, vertical, margin);
1.1655 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1656 + }
1.1657 +
1.1658 +void CCommandBuffer::DoDrawTextVertical2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1.1659 + {
1.1660 + aWindowGc.DrawTextVertical(aText, aBox, aBaselineOffset, aUp, aVertical, aMargin);
1.1661 + }
1.1662 +
1.1663 +void CCommandBuffer::DoDrawTextVertical2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1.1664 + {
1.1665 + aGraphicsContext.DrawTextVertical(aText, /*TTextParameters*/ NULL, aBox, aBaselineOffset, aUp, BitGdiToMWsGraphicsContextMappings::Convert(aVertical), aMargin);
1.1666 + }
1.1667 +
1.1668 +template<typename ContextType> void CCommandBuffer::DrawTextVertical3L(ContextType& aGraphicsContext)
1.1669 + {
1.1670 + TPtrC16 text;
1.1671 + CGraphicsContext::TTextParameters param;
1.1672 + TPoint point;
1.1673 + TBool up;
1.1674 +
1.1675 + ReadTextLC(text);
1.1676 + ReadL<CGraphicsContext::TTextParameters>(param);
1.1677 + ReadL<TPoint>(point);
1.1678 + ReadL<TBool>(up);
1.1679 +
1.1680 + DoDrawTextVertical3L(aGraphicsContext, text, param, point, up);
1.1681 + CleanupStack::PopAndDestroy(); // ReadTextLC
1.1682 + }
1.1683 +
1.1684 +void CCommandBuffer::DoDrawTextVertical3L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp)
1.1685 + {
1.1686 + aWindowGc.DrawTextVertical(aText, &aParam, aPoint, aUp);
1.1687 + }
1.1688 +
1.1689 +void CCommandBuffer::DoDrawTextVertical3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp)
1.1690 + {
1.1691 + aGraphicsContext.DrawTextVertical(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aPoint, aUp);
1.1692 + }
1.1693 +
1.1694 +template<typename ContextType> void CCommandBuffer::DrawTextVertical4L(ContextType& aGraphicsContext)
1.1695 + {
1.1696 + TPtrC16 text;
1.1697 + CGraphicsContext::TTextParameters param;
1.1698 + TRect box;
1.1699 + TInt baselineOffset;
1.1700 + TBool up;
1.1701 + CGraphicsContext::TTextAlign vertical;
1.1702 + TInt margin;
1.1703 +
1.1704 + ReadTextLC(text);
1.1705 + ReadL<CGraphicsContext::TTextParameters>(param);
1.1706 + ReadL<TRect>(box);
1.1707 + ReadL<TInt>(baselineOffset);
1.1708 + ReadL<TBool>(up);
1.1709 + ReadL<CGraphicsContext::TTextAlign>(vertical);
1.1710 + ReadL<TInt>(margin);
1.1711 +
1.1712 + DoDrawTextVertical4L(aGraphicsContext, text, param, box, baselineOffset, up, vertical, margin);
1.1713 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1714 + }
1.1715 +
1.1716 +void CCommandBuffer::DoDrawTextVertical4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1.1717 + {
1.1718 + aWindowGc.DrawTextVertical(aText, &aParam, aBox, aBaselineOffset, aUp, aVertical, aMargin);
1.1719 + }
1.1720 +
1.1721 +void CCommandBuffer::DoDrawTextVertical4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1.1722 + {
1.1723 + aGraphicsContext.DrawTextVertical(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aBox, aBaselineOffset, aUp, BitGdiToMWsGraphicsContextMappings::Convert(aVertical), aMargin);
1.1724 + }
1.1725 +
1.1726 +void CCommandBuffer::DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver)
1.1727 + {
1.1728 + TInt id;
1.1729 + TBool isUid;
1.1730 + TRect rect;
1.1731 +
1.1732 + ReadL<TInt>(id);
1.1733 + ReadL<TBool>(isUid);
1.1734 + ReadL<TRect>(rect);
1.1735 +
1.1736 + aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,KNullDesC8());
1.1737 + }
1.1738 +
1.1739 +void CCommandBuffer::DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver)
1.1740 + {
1.1741 + TInt id;
1.1742 + TBool isUid;
1.1743 + TRect rect;
1.1744 +
1.1745 + ReadL<TInt>(id);
1.1746 + ReadL<TBool>(isUid);
1.1747 + ReadL<TRect>(rect);
1.1748 + TPtrC8 text8;
1.1749 + ReadTextLC(text8);
1.1750 +
1.1751 + aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,text8);
1.1752 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1753 + }
1.1754 +
1.1755 +template<typename ContextType> void CCommandBuffer::SetShadowColorL(ContextType& aGraphicsContext)
1.1756 + {
1.1757 + TRgb shadowColor;
1.1758 + ReadL<TRgb>(shadowColor);
1.1759 +
1.1760 + DoSetShadowColorL(aGraphicsContext, shadowColor);
1.1761 + }
1.1762 +
1.1763 +void CCommandBuffer::DoSetShadowColorL(CWindowGc& aWindowGc, TRgb aShadowColor)
1.1764 + {
1.1765 + aWindowGc.SetShadowColor(aShadowColor);
1.1766 + }
1.1767 +
1.1768 +void CCommandBuffer::DoSetShadowColorL(MWsGraphicsContext& aGraphicsContext, TRgb aShadowColor)
1.1769 + {
1.1770 + aGraphicsContext.SetTextShadowColor(aShadowColor);
1.1771 + }
1.1772 +
1.1773 +/**
1.1774 + Helper function to draw resource at specified position. The function extracts all required parameter from the stream.
1.1775 + */
1.1776 +template<typename ContextType> void CCommandBuffer::DrawResourceToPosL(ContextType& aGraphicsContext)
1.1777 + {
1.1778 + TSgDrawableId drawableId;
1.1779 + TInt screenNumber;
1.1780 + TPoint pos;
1.1781 + CWindowGc::TGraphicsRotation rotation;
1.1782 + ReadL<TSgDrawableId>(drawableId);
1.1783 + ReadL<TInt>(screenNumber);
1.1784 + ReadL<TPoint>(pos);
1.1785 + ReadL<CWindowGc::TGraphicsRotation>(rotation);
1.1786 + if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1.1787 + {
1.1788 + DoDrawResourceToPos(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), pos, rotation);
1.1789 + }
1.1790 + }
1.1791 +
1.1792 +void CCommandBuffer::DoDrawResourceToPos(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation)
1.1793 + {
1.1794 + MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1.1795 + if(drawResource)
1.1796 + {
1.1797 + drawResource->DrawResource(aPos, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRotation);
1.1798 + }
1.1799 + }
1.1800 +
1.1801 +void CCommandBuffer::DoDrawResourceToPos(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation)
1.1802 + {
1.1803 + MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1.1804 + if (drawResource)
1.1805 + {
1.1806 + drawResource->DrawResource(aDrawableSource, aPos, aRotation);
1.1807 + }
1.1808 + }
1.1809 +
1.1810 +/**
1.1811 + Helper function to draw resource into specified rectangle. The function extracts all required parameter from the stream.
1.1812 + */
1.1813 +template<typename ContextType> void CCommandBuffer::DrawResourceToRectL(ContextType& aGraphicsContext)
1.1814 + {
1.1815 + TSgDrawableId drawableId;
1.1816 + TInt screenNumber;
1.1817 + TRect rect;
1.1818 + CWindowGc::TGraphicsRotation rotation;
1.1819 + ReadL<TSgDrawableId>(drawableId);
1.1820 + ReadL<TInt>(screenNumber);
1.1821 + ReadL<TRect>(rect);
1.1822 + ReadL<CWindowGc::TGraphicsRotation>(rotation);
1.1823 +
1.1824 + if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1.1825 + {
1.1826 + DoDrawResourceToRect(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rect, rotation);
1.1827 + }
1.1828 + }
1.1829 +
1.1830 +void CCommandBuffer::DoDrawResourceToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation)
1.1831 + {
1.1832 + MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1.1833 + if(drawResource)
1.1834 + {
1.1835 + drawResource->DrawResource(aRect, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRotation);
1.1836 + }
1.1837 + }
1.1838 +
1.1839 +void CCommandBuffer::DoDrawResourceToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation)
1.1840 + {
1.1841 + MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1.1842 + if (drawResource)
1.1843 + {
1.1844 + drawResource->DrawResource(aDrawableSource, aRect, aRotation);
1.1845 + }
1.1846 + }
1.1847 +
1.1848 +/**
1.1849 + Helper function to draw resource into specified rectangle from specified rectangle of the drawable. The function extracts all required parameter from the stream.
1.1850 + */
1.1851 +template<typename ContextType> void CCommandBuffer::DrawResourceFromRectToRectL(ContextType& aGraphicsContext)
1.1852 + {
1.1853 + TSgDrawableId drawableId;
1.1854 + TInt screenNumber;
1.1855 + TRect rectDest;
1.1856 + TRect rectSrc;
1.1857 + CWindowGc::TGraphicsRotation rotation;
1.1858 + ReadL<TSgDrawableId>(drawableId);
1.1859 + ReadL<TInt>(screenNumber);
1.1860 + ReadL<TRect>(rectDest);
1.1861 + ReadL<TRect>(rectSrc);
1.1862 + ReadL<CWindowGc::TGraphicsRotation>(rotation);
1.1863 +
1.1864 + if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1.1865 + {
1.1866 + DoDrawResourceFromRectToRect(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rectDest, rectSrc, rotation);
1.1867 + }
1.1868 + }
1.1869 +
1.1870 +void CCommandBuffer::DoDrawResourceFromRectToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation)
1.1871 + {
1.1872 + MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1.1873 + if(drawResource)
1.1874 + {
1.1875 + drawResource->DrawResource(aRectDest, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRectSrc, aRotation);
1.1876 + }
1.1877 + }
1.1878 +
1.1879 +void CCommandBuffer::DoDrawResourceFromRectToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation)
1.1880 + {
1.1881 + MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1.1882 + if (drawResource)
1.1883 + {
1.1884 + drawResource->DrawResource(aDrawableSource, aRectDest, aRectSrc, aRotation);
1.1885 + }
1.1886 + }
1.1887 +
1.1888 +template<typename ContextType> void CCommandBuffer::DrawResourceWithDataL(ContextType& aGraphicsContext)
1.1889 + {
1.1890 + TSgDrawableId drawableId;
1.1891 + TInt screenNumber;
1.1892 + TRect rect;
1.1893 + TPtrC8 data;
1.1894 + ReadL<TSgDrawableId>(drawableId);
1.1895 + ReadL<TInt>(screenNumber);
1.1896 + ReadL<TRect>(rect);
1.1897 + ReadTextLC(data);
1.1898 +
1.1899 + if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1.1900 + {
1.1901 + DoDrawResourceWithData(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rect, data);
1.1902 + }
1.1903 +
1.1904 + CleanupStack::PopAndDestroy(); //ReadTextLC
1.1905 + }
1.1906 +
1.1907 +void CCommandBuffer::DoDrawResourceWithData(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam)
1.1908 + {
1.1909 + MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1.1910 + if(drawResource)
1.1911 + {
1.1912 + drawResource->DrawResource(aRect, *static_cast<const RWsDrawableSource*>(aDrawableSource), aParam);
1.1913 + }
1.1914 + }
1.1915 +
1.1916 +void CCommandBuffer::DoDrawResourceWithData(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam)
1.1917 + {
1.1918 + MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1.1919 + if (drawResource)
1.1920 + {
1.1921 + drawResource->DrawResource(aDrawableSource, aRect, aParam);
1.1922 + }
1.1923 + }