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