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: // CPlaybackGc and associated classes definitions sl@0: // sl@0: // sl@0: sl@0: #ifndef __PLAYBACKGC_H__ sl@0: #define __PLAYBACKGC_H__ sl@0: sl@0: #include "wnredraw.h" sl@0: #include "cliwin.h" sl@0: sl@0: class CWsFbsFont; sl@0: sl@0: class CPlaybackGc : public CBase, public MWsGc sl@0: { sl@0: public: sl@0: static void InitStaticsL(); sl@0: static void DeleteStatics(); sl@0: static CPlaybackGc * Instance() { return iSelf; } sl@0: public: sl@0: void ConstructL(); sl@0: void Activate(CWsClientWindow * aWin, CFbsBitGc * aGc, const TRegion * aRegion); sl@0: void CommandL(TWsGcOpcodes aOpcode, const TDesC8& aCmdData); sl@0: void Deactivate(); sl@0: inline CFbsBitGc *Gdi() const; sl@0: void SetOrigin(const TPoint &aOrigin); sl@0: void InternalizeL(const CBufBase& aBuffer,TInt& aStartPos); sl@0: void InternalizeClippingRegionL(RReadStream& aReadStream); sl@0: TInt FbsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle); sl@0: TInt WsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle); sl@0: // implementing MWsGc sl@0: MWsClient& Client(); sl@0: MWsScreen& Screen(); sl@0: TPoint GcOrigin() const; sl@0: const TRegion& ClippingRegion(); sl@0: CFbsBitGc& BitGc(); sl@0: TInt PushBitGcSettings(); sl@0: void PopBitGcSettings(); sl@0: const TTime& Now() const; sl@0: void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow); sl@0: void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop); sl@0: void SetGcOrigin(const TPoint& aOrigin); sl@0: void SetTargetRegion(const TRegion* aRegion); sl@0: void Reset(); sl@0: public: // from MWsObjectProvider sl@0: TAny * ResolveObjectInterface(TUint aId); sl@0: private: sl@0: CPlaybackGc(); sl@0: ~CPlaybackGc(); sl@0: void DoDrawing(TWsGcOpcodes aOpcode, const TDesC8& aCmdData); sl@0: void CancelUserClippingRegion(); sl@0: void RemoteReadDataAndDrawL(const CWsGraphicDrawer* aGraphic, CWsClient* aOwner, const TWsGcCmdUnion &aData); sl@0: void DoDrawCommand(TWsGcOpcodes aOpcode, const TDesC8& aCmdData, const TRegion *aRegion); sl@0: void SetClippingRect(const TRect &aRect); sl@0: const RWsRegion& Region(); sl@0: void DoDrawPolygon(const TWsGcCmdDrawPolygon *aDrawPolygon); sl@0: void DoDrawPolyLine(const TWsGcCmdDrawPolyLine *aDrawPolyLine, TBool aContinued); sl@0: void GcOwnerPanic(TClientPanic aPanic); sl@0: void ResetClippingRect(); sl@0: void EndSegmentedPolygon(); sl@0: void StartSegmentedDrawPolygonL(const TWsGcCmdStartSegmentedDrawPolygon *aDrawPolygon); sl@0: void SegmentedDrawPolygonData(const TWsGcCmdSegmentedDrawPolygonData *aDrawPolygon); sl@0: void UpdateJustification(TText* aText,TInt aLen, const TDesC8& aCmdData); sl@0: void InternalizeAlphaValueL(RReadStream& aReadStream); sl@0: sl@0: void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints); sl@0: TPtrC BufferTPtr(TText* aStart, TInt aLen, const TDesC8& aCmdData); sl@0: // Data sl@0: private: sl@0: static CPlaybackGc * iSelf; sl@0: CWsClientWindow *iWin; sl@0: TPoint iMasterOrigin; // Origin available to wserv. Usually the window origin. sl@0: CFbsBitGc * iGc; sl@0: CWsFbsFont * iFont; sl@0: const TRegion *iTargetRegion; //Clipping region set by wserv window management. sl@0: RWsRegion* iUserDefinedClippingRegion; //Clipping region that is set explicitly by the user. sl@0: const TRegion *iDrawRegion; //Pointer to one of the above regions sl@0: TRect iClippingRect; // All drawing clipped to this rectangle in addition to other clipping sl@0: TBool iClippingRectSet; // ETrue if the iClippingRect is in use sl@0: TPoint iOrigin; // User defined origin, relative to the top left of the window sl@0: TPoint iLinePos; // Current line position for LineBy, LineTo etc sl@0: TPoint *iPolyPoints; sl@0: TInt iPolyPointListSize; sl@0: CFbsBitmap *iScratchBitmap; sl@0: CFbsBitmap *iScratchMaskBitmap; sl@0: // members used for keeping state when drawing CWsGraphicDrawers sl@0: CBufBase* iGcBuf; sl@0: const TRegion* iCurrentClippingRegion; // Clipping region while doing DoDrawCommand sl@0: }; sl@0: sl@0: #endif // __PLAYBACKGC_H__