First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CPlaybackGc and associated classes definitions
18 #ifndef __PLAYBACKGC_H__
19 #define __PLAYBACKGC_H__
25 class MWsGraphicsContext;
27 class CPlaybackGc : public CBase, public MWsGc, public MWsSurfacePlacement
30 static void InitStaticsL();
31 static void DeleteStatics();
32 static CPlaybackGc * Instance() { return iSelf; }
35 void Activate(CWsClientWindow * aWin, MWsGraphicsContext * aGc, const TRegion * aRegion);
36 void CommandL(TWsGcOpcodes aOpcode, const TDesC8& aCmdData);
38 inline CFbsBitGc *Gdi() const;
39 void BitGcChanged(CFbsBitGc *aGc);
41 void SetOrigin(const TPoint &aOrigin);
42 void InternalizeL(const CBufBase& aBuffer,TInt& aStartPos);
43 void InternalizeClippingRegionL(RReadStream& aReadStream);
44 TInt FbsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
45 TInt WsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
49 const TTime& Now() const;
50 void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow);
51 void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop);
52 void SetGcOrigin(const TPoint& aOrigin);
54 void SetTargetRegion(const TRegion* aRegion);
56 TInt GcDrawingCount();
58 public: // implementing MWsObjectProvider
59 TAny * ResolveObjectInterface(TUint aId);
64 TInt PlaceSurface(const TSurfaceConfiguration& aConfig);
69 void DoDrawing(TWsGcOpcodes aOpcode, const TDesC8& aCmdData);
70 void CancelUserClippingRegion();
71 void SetFadingParams(CWsClientWindow* aWin);
72 void RemoteReadDataAndDrawL(const CWsGraphicDrawer* aGraphic, CWsClient* aOwner, const TWsGcCmdUnion &aData);
73 void DoDrawCommand(TWsGcOpcodes aOpcode, const TDesC8& aCmdData, const TRegion *aRegion);
74 void SetClippingRect(const TRect &aRect);
75 void DoDrawPolygon(const TWsGcCmdDrawPolygon *aDrawPolygon);
76 void DoDrawPolyLine(const TWsGcCmdDrawPolyLine *aDrawPolyLine, TBool aContinued);
77 void sendGdiMessage(TInt opcode,TAny *params);
78 void GcOwnerPanic(TClientPanic aPanic);
79 void ResetClippingRect();
80 void EndSegmentedPolygon();
81 void StartSegmentedDrawPolygonL(const TWsGcCmdStartSegmentedDrawPolygon *aDrawPolygon);
82 void SegmentedDrawPolygonData(const TWsGcCmdSegmentedDrawPolygonData *aDrawPolygon);
83 void UpdateJustification(TText* aText, TInt aLen, const TDesC8& aCmdData, CGraphicsContext::TTextParameters* aParam);
85 inline TBool IsPolyPointData() {return(iPolyPointListSize>0 || iPolyPoints!=NULL);}
87 void InternalizeAlphaValueL(RReadStream& aReadStream);
89 void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints);
90 TPtrC BufferTPtr(TText* aStart, TInt aLen, const TDesC8& aCmdData);
92 void DoDrawResource(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &aData);
93 void SendOriginIfRequired();
94 void SendClippingRegionIfRequired(const TRegion* aRegion);
97 static CPlaybackGc * iSelf;
98 CWsClientWindow *iWin;
99 TPoint iMasterOrigin; // Origin available to wserv. Usually the window origin.
100 MWsGraphicsContext * iGc;
102 const TRegion *iTargetRegion; //Clipping region set by wserv window management.
103 RWsRegion* iUserDefinedClippingRegion; //Clipping region that is set explicitly by the user.
104 const TRegion *iDrawRegion; //Pointer to one of the above regions
105 TRect iClippingRect; // All drawing clipped to this rectangle in addition to other clipping
106 TBool iClippingRectSet; // ETrue if the iClippingRect is in use
107 RRegion iIntersectedRegion; // iDrawRegion clipped to iClippingRect, or just iDrawRegion if no user clipping rect active
108 TPoint iOrigin; // User defined origin, relative to the top left of the window
109 TPoint iLinePos; // Current line position for LineBy, LineTo etc
111 TInt iPolyPointListSize;
112 // members used for keeping state when drawing CWsGraphicDrawers
114 const TRegion* iCurrentClippingRegion; // Clipping region while doing DoDrawCommand
115 TInt iGcDrawingCounter; // Flags that some drawing has occurred between readings
117 TBool iSendOrigin; // MWsGraphicsContext::SetOrigin must be called at next opportunity
118 TPoint iLastSentOrigin; // last origin value sent to render stage
121 #endif // __PLAYBACKGC_H__