sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __COMMANDBUFFER_H__ sl@0: #define __COMMANDBUFFER_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CBitmapCache; sl@0: class CFontsCache; sl@0: class CDrawableCacheBase; sl@0: class CDrawSection; sl@0: class MWsGraphicsContext; sl@0: sl@0: /** sl@0: MWsGraphicResolver should be implemented by CWsGraphicDrawers that want to be able to play DrawWsGraphic drawcommands. sl@0: @publishedPartner sl@0: @released*/ sl@0: class MWsGraphicResolver sl@0: { sl@0: public: sl@0: /** sl@0: This method is called when a DrawWsGraphics drawcommand is played by the commandbuffer. The CWsGraphicDrawer that sl@0: implements this method needs to resolve the WsGraphics from the MWsGraphicDrawerEnvironment and then draw it. sl@0: sl@0: @param aId The id of the WsGraphic. sl@0: @param aIsUid If ETrue the WsGraphic has a uid. sl@0: @param aRect The rect to draw the WsGraphic in. sl@0: @param aData Data passed along with the DrawWsGraphic command. sl@0: */ sl@0: virtual void DrawWsGraphic(TInt aId, TBool aIsUid, const TRect& aRect, const TDesC8& aData) const = 0; sl@0: }; sl@0: sl@0: /** sl@0: The commandbuffer can record and play drawcommands. sl@0: It has an array of CDrawSections which contains information about every redraw that has been recorded. sl@0: @publishedPartner sl@0: @released*/ sl@0: NONSHARABLE_CLASS(CCommandBuffer): public CBase sl@0: { sl@0: public: sl@0: IMPORT_C static CCommandBuffer* NewL(); sl@0: IMPORT_C ~CCommandBuffer(); sl@0: IMPORT_C void InternalizeL(const TDesC8& aBuf); sl@0: IMPORT_C void InternalizeAppendL(const TDesC8& aBuf); sl@0: IMPORT_C const TRegion& ClippingRegion() const; sl@0: IMPORT_C TInt Play(const TPoint& aPosition, const TRect& aSourceRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext); sl@0: IMPORT_C TInt Play(const TPoint& aMasterOrigin, const TRegion * aMasterClippingRegion, const TRect& aMasterClippingRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext); sl@0: IMPORT_C TInt Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, const MWsGraphicResolver& aWsGraphicResolver, MWsGraphicsContext& aGraphicsContext); sl@0: IMPORT_C TInt Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, RWsSession& aWsSession, CWindowGc& aWindowGc); sl@0: sl@0: IMPORT_C TBool IsIdentical(const CCommandBuffer& aBuffer) const; sl@0: void ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer); sl@0: void Reset(); sl@0: void Prepare(const TRect& aDrawRect); sl@0: TInt Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand); sl@0: sl@0: template void Write(const TClass& aValue); sl@0: void WriteText(const TDesC16 &aText); sl@0: void WriteText(const TDesC8 &aText); sl@0: sl@0: private: sl@0: void ConstructL(); sl@0: CCommandBuffer(); sl@0: sl@0: // Help methods sl@0: void Tidy(); sl@0: TBool AllSectionsExternalized() const; sl@0: TBool CheckForDuplicate(const CDrawSection& aDrawSection) const; sl@0: void UpdateClippingRegion(TInt aDrawSectionIndex); sl@0: // Reading writing sl@0: void Write(const TUint8* aSrc, TUint aLength); sl@0: void DoWriteTextL(const TDesC8 &aText); sl@0: void ReadL(TUint8* aDest, TUint aLength); sl@0: template void ReadL(TClass& aValue); sl@0: void ReadTextLC(TPtrC8& aText); sl@0: void ReadTextLC(TPtrC16& aText); sl@0: void DoReadTextLC(TPtrC8& aText,TBool a16Bit); sl@0: sl@0: // Drawing the commands sl@0: #ifdef SYMBIAN_GRAPHICS_GCE sl@0: template void DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext); sl@0: template void DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext); sl@0: #else sl@0: void DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext); sl@0: void DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext); sl@0: #endif sl@0: #if defined(SYMBIAN_GRAPHICS_GCE) sl@0: template void Clear(ContextType& aGraphicsContext) const; sl@0: template void ClearRectL(ContextType& aGraphicsContext); sl@0: template void CopyRectL(ContextType& aGraphicsContext); sl@0: template void BitBlt1L(ContextType& aGraphicsContext); sl@0: void DoBitBlt1L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle); sl@0: void DoBitBlt1L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle); sl@0: template void BitBlt2L(ContextType& aGraphicsContext); sl@0: void DoBitBlt2L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle, TRect aSourceRect); sl@0: void DoBitBlt2L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle, TRect aSourceRect); sl@0: template void BitBltMaskedL(ContextType& aGraphicsContext); sl@0: void DoBitBltMaskedL(CWindowGc& aWindowGc, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask); sl@0: void DoBitBltMaskedL(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask); sl@0: void SetFadedL(CWindowGc& aWindowGc); sl@0: void SetFadingParametersL(CWindowGc& aWindowGc); sl@0: template void AlphaBlendBitmapsL(ContextType& aGraphicsContext); sl@0: void DoAlphaBlendBitmapsL(CWindowGc& aWindowGc, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint); sl@0: void DoAlphaBlendBitmapsL(MWsGraphicsContext& aGraphicsContext, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint); sl@0: template void SetOriginL(ContextType& aGraphicsContext); sl@0: template void SetDrawModeL(ContextType& aGraphicsContext); sl@0: void DoSetDrawModeL(CWindowGc& aWindowGc, CGraphicsContext::TDrawMode aDrawMode); sl@0: void DoSetDrawModeL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TDrawMode aDrawMode); sl@0: template void SetClippingRectL(ContextType& aGraphicsContext); sl@0: template void CancelClippingRect(ContextType& aGraphicsContext); sl@0: void Reset(CWindowGc& aWindowGc); sl@0: void Reset(MWsGraphicsContext& aGraphicsContext); sl@0: template void UseFontL(ContextType& aGraphicsContext); sl@0: void DoUseFontL(CWindowGc& aWindowGc, TInt aFontHandle); sl@0: void DoUseFontL(MWsGraphicsContext& aGraphicsContext, TInt aFontHandle); sl@0: void DiscardFont(CWindowGc& aWindowGc) const; sl@0: void DiscardFont(MWsGraphicsContext& aGraphicsContext) const; sl@0: template void SetUnderlineStyleL(ContextType& aGraphicsContext); sl@0: void DoSetUnderlineStyleL(CWindowGc& aWindowGc, TFontUnderline aUnderlineStyle); sl@0: void DoSetUnderlineStyleL(MWsGraphicsContext& aGraphicsContext, TFontUnderline aUnderlineStyle); sl@0: template void SetStrikethroughStyleL(ContextType& aGraphicsContext); sl@0: void DoSetStrikethroughStyleL(CWindowGc& aWindowGc, TFontStrikethrough aStrikethroughStyle); sl@0: void DoSetStrikethroughStyleL(MWsGraphicsContext& aGraphicsContext, TFontStrikethrough aStrikethroughStyle); sl@0: template void SetWordJustificationL(ContextType& aGraphicsContext); sl@0: template void SetCharJustificationL(ContextType& aGraphicsContext); sl@0: template void SetPenColorL(ContextType& aGraphicsContext); sl@0: template void SetPenStyleL(ContextType& aGraphicsContext); sl@0: void DoSetPenStyleL(CWindowGc& aWindowGc, CGraphicsContext::TPenStyle aPenStyle); sl@0: void DoSetPenStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TPenStyle aPenStyle); sl@0: template void SetPenSizeL(ContextType& aGraphicsContext); sl@0: void DoSetPenSizeL(CWindowGc& aWindowGc, TSize aSize); sl@0: void DoSetPenSizeL(MWsGraphicsContext& aGraphicsContext, TSize aSize); sl@0: template void SetBrushColorL(ContextType& aGraphicsContext); sl@0: template void SetBrushStyleL(ContextType& aGraphicsContext); sl@0: void DoSetBrushStyleL(CWindowGc& aWindowGc, CGraphicsContext::TBrushStyle aBrushStyle); sl@0: void DoSetBrushStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TBrushStyle aBrushStyle); sl@0: template void SetBrushOriginL(ContextType& aGraphicsContext); sl@0: template void UseBrushPatternL(ContextType& aGraphicsContext); sl@0: void DoUseBrushPatternL(CWindowGc& aWindowGc, TInt aDeviceHandle); sl@0: void DoUseBrushPatternL(MWsGraphicsContext& aGraphicsContext, TInt aDeviceHandle); sl@0: void DiscardBrushPattern(CWindowGc& aWindowGc) const; sl@0: void DiscardBrushPattern(MWsGraphicsContext& aGraphicsContext) const; sl@0: template void MoveToL(ContextType& aGraphicsContext); sl@0: template void MoveByL(ContextType& aGraphicsContext); sl@0: template void PlotL(ContextType& aGraphicsContext); sl@0: template void DrawArcL(ContextType& aGraphicsContext); sl@0: template void DrawLineL(ContextType& aGraphicsContext); sl@0: template void DrawLineToL(ContextType& aGraphicsContext); sl@0: template void DrawLineByL(ContextType& aGraphicsContext); sl@0: void DrawPolyLineL(CWindowGc& aWindowGc); sl@0: void DrawPolyLineL(MWsGraphicsContext& aGraphicsContext); sl@0: template void DrawPieL(ContextType& aGraphicsContext); sl@0: template void DrawEllipseL(ContextType& aGraphicsContext); sl@0: template void DrawRectL(ContextType& aGraphicsContext); sl@0: template void DrawRoundRectL(ContextType& aGraphicsContext); sl@0: void DrawPolygonL(CWindowGc& aWindowGc); sl@0: void DrawPolygonL(MWsGraphicsContext& aGraphicsContext); sl@0: void DrawBitmap1L(CWindowGc& aWindowGc); sl@0: void DrawBitmap1L(MWsGraphicsContext& aGraphicsContext); sl@0: template void DrawBitmap2L(ContextType& aGraphicsContext); sl@0: void DoDrawBitmap2L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle); sl@0: void DoDrawBitmap2L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle); sl@0: template void DrawBitmap3L(ContextType& aGraphicsContext); sl@0: void DoDrawBitmap3L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect); sl@0: void DoDrawBitmap3L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect); sl@0: template void DrawBitmapMaskedL(ContextType& aGraphicsContext); sl@0: void DoDrawBitmapMaskedL(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask); sl@0: void DoDrawBitmapMaskedL(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask); sl@0: template void DrawText1L(ContextType& aGraphicsContext); sl@0: void DoDrawText1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint); sl@0: void DoDrawText1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint); sl@0: template void DrawText2L(ContextType& aGraphicsContext); sl@0: void DoDrawText2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin); sl@0: void DoDrawText2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin); sl@0: template void DrawText3L(ContextType& aGraphicsContext); sl@0: void DoDrawText3L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint); sl@0: void DoDrawText3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint); sl@0: template void DrawText4L(ContextType& aGraphicsContext); sl@0: void DoDrawText4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint); sl@0: void DoDrawText4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint); sl@0: template void DrawText5L(ContextType& aGraphicsContext); sl@0: void DoDrawText5L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin); sl@0: void DoDrawText5L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin); sl@0: template void MapColorsL(ContextType& aGraphicsContext); sl@0: template void SetClippingRegionL(ContextType& aGraphicsContext); sl@0: template void CancelClippingRegion(ContextType& aGraphicsContext); sl@0: void DoCancelClippingRegion(CWindowGc& aWindowGc); sl@0: void DoCancelClippingRegion(MWsGraphicsContext& aGraphicsContext); sl@0: template void DrawTextVertical1L(ContextType& aGraphicsContext); sl@0: void DoDrawTextVertical1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint, TBool aUp); sl@0: void DoDrawTextVertical1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint, TBool aUp); sl@0: template void DrawTextVertical2L(ContextType& aGraphicsContext); sl@0: void DoDrawTextVertical2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin); sl@0: void DoDrawTextVertical2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin); sl@0: template void DrawTextVertical3L(ContextType& aGraphicsContext); sl@0: void DoDrawTextVertical3L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp); sl@0: void DoDrawTextVertical3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp); sl@0: template void DrawTextVertical4L(ContextType& aGraphicsContext); sl@0: void DoDrawTextVertical4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin); sl@0: void DoDrawTextVertical4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin); sl@0: void DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver); sl@0: void DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver); sl@0: template void SetShadowColorL(ContextType& aGraphicsContext); sl@0: void DoSetShadowColorL(CWindowGc& aWindowGc, TRgb aShadowColor); sl@0: void DoSetShadowColorL(MWsGraphicsContext& aGraphicsContext, TRgb aShadowColor); sl@0: template void DrawResourceToPosL(ContextType& aGraphicsContext); sl@0: template void DrawResourceToRectL(ContextType& aGraphicsContext); sl@0: template void DrawResourceFromRectToRectL(ContextType& aGraphicsContext); sl@0: template void DrawResourceWithDataL(ContextType& aGraphicsContext); sl@0: void DoDrawResourceToPos(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceFromRectToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceWithData(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam); sl@0: void DoDrawResourceToPos(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceFromRectToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation); sl@0: void DoDrawResourceWithData(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam); sl@0: #else //SYMBIAN_GRAPHICS_GCE sl@0: void Clear(CBitmapContext& aBitmapContext) const; sl@0: void ClearRectL(CBitmapContext& aBitmapContext); sl@0: void CopyRectL(CBitmapContext& aBitmapContext); sl@0: void BitBlt1L(CBitmapContext& aBitmapContext); sl@0: void BitBlt2L(CBitmapContext& aBitmapContext); sl@0: void BitBltMaskedL(CBitmapContext& aBitmapContext); sl@0: void SetFadedL(CBitmapContext& aBitmapContext); sl@0: void SetFadingParametersL(CBitmapContext& aBitmapContext); sl@0: void AlphaBlendBitmapsL(CBitmapContext& aBitmapContext); sl@0: void SetOriginL(CBitmapContext& aBitmapContext); sl@0: void SetDrawModeL(CBitmapContext& aBitmapContext); sl@0: void SetClippingRectL(CBitmapContext& aBitmapContext); sl@0: void CancelClippingRect(CBitmapContext& aBitmapContext); sl@0: void Reset(CBitmapContext& aBitmapContext); sl@0: void UseFontL(CBitmapContext& aBitmapContext); sl@0: void DiscardFont(CBitmapContext& aBitmapContext) const; sl@0: void SetUnderlineStyleL(CBitmapContext& aBitmapContext); sl@0: void SetStrikethroughStyleL(CBitmapContext& aBitmapContext); sl@0: void SetWordJustificationL(CBitmapContext& aBitmapContext); sl@0: void SetCharJustificationL(CBitmapContext& aBitmapContext); sl@0: void SetPenColorL(CBitmapContext& aBitmapContext); sl@0: void SetPenStyleL(CBitmapContext& aBitmapContext); sl@0: void SetPenSizeL(CBitmapContext& aBitmapContext); sl@0: void SetBrushColorL(CBitmapContext& aBitmapContext); sl@0: void SetBrushStyleL(CBitmapContext& aBitmapContext); sl@0: void SetBrushOriginL(CBitmapContext& aBitmapContext); sl@0: void UseBrushPatternL(CBitmapContext& aBitmapContext); sl@0: void DiscardBrushPattern(CBitmapContext& aBitmapContext) const; sl@0: void MoveToL(CBitmapContext& aBitmapContext); sl@0: void MoveByL(CBitmapContext& aBitmapContext); sl@0: void PlotL(CBitmapContext& aBitmapContext); sl@0: void DrawArcL(CBitmapContext& aBitmapContext); sl@0: void DrawLineL(CBitmapContext& aBitmapContext); sl@0: void DrawLineToL(CBitmapContext& aBitmapContext); sl@0: void DrawLineByL(CBitmapContext& aBitmapContext); sl@0: void DrawPolyLineL(CBitmapContext& aBitmapContext); sl@0: void DrawPieL(CBitmapContext& aBitmapContext); sl@0: void DrawEllipseL(CBitmapContext& aBitmapContext); sl@0: void DrawRectL(CBitmapContext& aBitmapContext); sl@0: void DrawRoundRectL(CBitmapContext& aBitmapContext); sl@0: void DrawPolygonL(CBitmapContext& aBitmapContext); sl@0: void DrawBitmap1L(CBitmapContext& aBitmapContext); sl@0: void DrawBitmap2L(CBitmapContext& aBitmapContext); sl@0: void DrawBitmap3L(CBitmapContext& aBitmapContext); sl@0: void DrawBitmapMaskedL(CBitmapContext& aBitmapContext); sl@0: void DrawText1L(CBitmapContext& aBitmapContext); sl@0: void DrawText2L(CBitmapContext& aBitmapContext); sl@0: void DrawText3L(CBitmapContext& aBitmapContext); sl@0: void MapColorsL(CBitmapContext& aBitmapContext); sl@0: void SetClippingRegionL(CBitmapContext& aBitmapContext); sl@0: void CancelClippingRegion(CBitmapContext& aBitmapContext); sl@0: void DrawTextVertical1L(CBitmapContext& aBitmapContext); sl@0: void DrawTextVertical2L(CBitmapContext& aBitmapContext); sl@0: void DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver); sl@0: void DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver); sl@0: void SetShadowColorL(CBitmapContext& aBitmapContext); sl@0: #endif //SYMBIAN_GRAPHICS_GCE sl@0: private: sl@0: // Values set by the system calling play sl@0: TPoint iMasterOrigin; sl@0: const TRegion * iMasterClippingRegion; sl@0: const TRegion * iActiveMasterClippingRegion; sl@0: sl@0: RRegionBuf<10> iDrawSectionClippingRegion; sl@0: TRect iMasterClippingRect; sl@0: TRect iDrawSectionRect; sl@0: sl@0: // Values set by the draw commands executed during play sl@0: TPoint iOrigin; sl@0: RRegionBuf<10> iClippingRegion; sl@0: TRect iClippingRect; sl@0: TBool iParsedClippingRegionIsSet; sl@0: sl@0: #ifndef SYMBIAN_GRAPHICS_GCE sl@0: TPoint iOffSet; //only used by nonnga in order to preserve compatibility with nga sl@0: RRegionBuf<10> iCurrentSectionClippingRegion; //only used by nonnga in order to preserve compatibility with nga sl@0: #else sl@0: RRegion iIntersectedRegion; sl@0: CDrawableCacheBase* iDrawableCache; sl@0: #endif sl@0: sl@0: TInt iError; sl@0: CBufBase* iRecordSegBuf; sl@0: CBitmapCache* iBitmapCache; sl@0: CFontsCache* iFontCache; sl@0: CBufBase* iBufRead; sl@0: RBufReadStream iBufReadStream; sl@0: RPointerArray iDrawSections; sl@0: }; sl@0: sl@0: template void CCommandBuffer::Write(const TClass& aValue) sl@0: { sl@0: __ASSERT_COMPILE(sizeof(TClass) <= KMaxTUint8); sl@0: sl@0: #ifdef _DEBUG sl@0: const TUint8 size = sizeof(TClass); sl@0: Write(reinterpret_cast(&size), 1); sl@0: #endif sl@0: sl@0: Write(reinterpret_cast(&aValue), sizeof(TClass)); sl@0: } sl@0: sl@0: template void CCommandBuffer::ReadL(TClass& aValue) sl@0: { sl@0: __ASSERT_COMPILE(sizeof(TClass) <= KMaxTUint8); sl@0: sl@0: #ifdef _DEBUG sl@0: TUint8 size = 0; sl@0: ReadL(reinterpret_cast(&size), 1); sl@0: ASSERT(sizeof(TClass) == size); sl@0: #endif sl@0: sl@0: ReadL(reinterpret_cast(&aValue), sizeof(TClass)); sl@0: } sl@0: sl@0: #endif // __COMMANDBUFFER_H__