os/graphics/windowing/windowserver/nga/SERVER/openwfc/playbackgc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // CPlaybackGc and associated classes definitions
    15 // 
    16 //
    17 
    18 #ifndef __PLAYBACKGC_H__
    19 #define __PLAYBACKGC_H__
    20 
    21 #include "wnredraw.h"
    22 #include "cliwin.h"
    23 
    24 class CWsFbsFont;
    25 class MWsGraphicsContext;
    26 
    27 class CPlaybackGc : public CBase, public MWsGc, public MWsSurfacePlacement
    28 	{
    29 public:
    30 	static void InitStaticsL();
    31 	static void DeleteStatics();
    32 	static CPlaybackGc * Instance() { return iSelf; }
    33 public:
    34 	void ConstructL();
    35 	void Activate(CWsClientWindow * aWin, MWsGraphicsContext * aGc, const TRegion * aRegion);
    36 	void CommandL(TWsGcOpcodes aOpcode, const TDesC8& aCmdData);
    37 	void Deactivate();
    38 	inline CFbsBitGc *Gdi() const;
    39 	void BitGcChanged(CFbsBitGc *aGc);
    40 	void Resized();
    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);
    46 	// implementing MWsGc
    47 	MWsClient& Client();
    48 	MWsScreen& Screen();
    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);
    53 	
    54 	void SetTargetRegion(const TRegion* aRegion);
    55 	void Reset();
    56 	TInt	GcDrawingCount();
    57 
    58 public: // implementing MWsObjectProvider
    59 	TAny * ResolveObjectInterface(TUint aId);
    60 
    61   /** 
    62   * @deprecated
    63   */
    64 	TInt   PlaceSurface(const TSurfaceConfiguration& aConfig); 
    65 	
    66 private:
    67 	CPlaybackGc();
    68 	~CPlaybackGc();
    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);
    84 #if defined(_DEBUG)
    85 	inline TBool IsPolyPointData() {return(iPolyPointListSize>0 || iPolyPoints!=NULL);}
    86 #endif
    87 	void InternalizeAlphaValueL(RReadStream& aReadStream);
    88 	void ChangeDevice();
    89 	void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints);
    90 	TPtrC BufferTPtr(TText* aStart, TInt aLen, const TDesC8& aCmdData);
    91 	void	GcDrawingDone();
    92 	void DoDrawResource(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &aData);
    93 	void SendOriginIfRequired();
    94 	void SendClippingRegionIfRequired(const TRegion* aRegion);
    95 // Data
    96 private:
    97 	static CPlaybackGc * iSelf;
    98 	CWsClientWindow *iWin;
    99 	TPoint iMasterOrigin;     // Origin available to wserv.  Usually the window origin.
   100 	MWsGraphicsContext * iGc;
   101 	CWsFbsFont * iFont;
   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
   110 	TPoint *iPolyPoints;
   111 	TInt iPolyPointListSize;
   112 	// members used for keeping state when drawing CWsGraphicDrawers
   113 	CBufBase* iGcBuf;
   114 	const TRegion* iCurrentClippingRegion; // Clipping region while doing DoDrawCommand
   115 	TInt	iGcDrawingCounter;				// Flags that some drawing has occurred between readings
   116 
   117 	TBool iSendOrigin; // MWsGraphicsContext::SetOrigin must be called at next opportunity
   118     TPoint iLastSentOrigin; // last origin value sent to render stage
   119 	};
   120 
   121 #endif // __PLAYBACKGC_H__