os/graphics/windowing/windowserver/nga/SERVER/gc.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// CWsGc and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __GC_H__
sl@0
    19
#define __GC_H__
sl@0
    20
sl@0
    21
#include "wnredraw.h"
sl@0
    22
#include "cliwin.h"
sl@0
    23
#include "graphicscontextstate.h"
sl@0
    24
sl@0
    25
class CWsFbsFont;
sl@0
    26
sl@0
    27
class CWsGc : public CWsObject
sl@0
    28
	{
sl@0
    29
	enum {ETextPtrBufLen=0x100};	// Buffer of TText, used on stack
sl@0
    30
// Functions
sl@0
    31
public:
sl@0
    32
	static CWsGc* NewL(CWsClient *aOwner);
sl@0
    33
	~CWsGc();
sl@0
    34
	static void InitStaticsL();
sl@0
    35
	static void DeleteStatics();
sl@0
    36
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    37
	void Deactivate();
sl@0
    38
	inline void SetNextWinGc(CWsGc *aGc);
sl@0
    39
	inline CWsGc *NextWinGc() const;
sl@0
    40
	TInt ExternalizeL(CBufBase& aBuffer, TInt aStartPos);
sl@0
    41
	TInt ExternalizeClippingRegionL(RWriteStream& aWriteStreem);
sl@0
    42
	TInt FbsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
sl@0
    43
	TInt WsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
sl@0
    44
	TInt WsDrawableSourceHandle(TInt aOpcode, const TWsGcCmdUnion &aData);
sl@0
    45
	void Reactivate();
sl@0
    46
private:
sl@0
    47
	CWsGc(CWsClient *aOwner);
sl@0
    48
	void ConstructL();
sl@0
    49
	void Activate(CWsClientWindow *win);
sl@0
    50
	void DoDrawing2(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
sl@0
    51
	void SetGcAttribute(TInt aOpcode, TWsGcCmdUnion pData);
sl@0
    52
	void SetOrigin(const TPoint &aOrigin);
sl@0
    53
sl@0
    54
	void DoDrawing0L(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
sl@0
    55
	void DoDrawing1(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
sl@0
    56
	void Activate(const TInt &aHandle);
sl@0
    57
	void DoDrawCommand(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
sl@0
    58
	void SetClippingRegionL(TInt aCountRegion);
sl@0
    59
	void SetClippingRect(const TRect &aRect);
sl@0
    60
	void CancelClippingRegion();
sl@0
    61
	void DoDrawPolygon(const TWsGcCmdDrawPolygon *aDrawPolygon);
sl@0
    62
	void DoDrawPolyLine(const TWsGcCmdDrawPolyLine *aDrawPolyLine, TBool aContinued);
sl@0
    63
	void GcOwnerPanic(TClientPanic aPanic);
sl@0
    64
	void ResetClippingRect();
sl@0
    65
	void EndSegmentedPolygon();
sl@0
    66
	void StartSegmentedDrawPolygonL(const TWsGcCmdStartSegmentedDrawPolygon* aDrawPolygon);
sl@0
    67
	void SegmentedDrawPolygonData(const TWsGcCmdSegmentedDrawPolygonData* aDrawPolygon);
sl@0
    68
	void UpdateJustification(TText* aText,TInt aLen);
sl@0
    69
	void UpdateJustification(TText* aText,TInt aLen,CGraphicsContext::TTextParameters* aParam);
sl@0
    70
#if defined(_DEBUG)
sl@0
    71
	inline TBool IsPolyPointData() {return(iPolyPointListSize>0 || iPolyPoints!=NULL);}
sl@0
    72
#endif
sl@0
    73
	void ExternalizeAlphaValueL(RWriteStream& aWriteStream);
sl@0
    74
	TPtrC BufferTPtr(TText* aStart,TInt aLen);
sl@0
    75
	void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints);
sl@0
    76
// Data
sl@0
    77
private:
sl@0
    78
	CFbsBitGc *iBackedUpWinGc;
sl@0
    79
	CWsClientWindow *iWin;
sl@0
    80
	CWsGc *iNextWinGc;
sl@0
    81
	CWsFbsFont *iFont;
sl@0
    82
	RWsRegion* iUserDefinedClippingRegion; //Clipping region that is set explicitly by the user.
sl@0
    83
	TRect iClippingRect;	// All drawing clipped to this rectangle in addition to other clipping
sl@0
    84
	TBool iClippingRectSet;	// ETrue if the iClippingRect is in use
sl@0
    85
	TPoint iOrigin;			// User defined origin, relative to the top left of the window
sl@0
    86
	TPoint iLinePos;		// Current line position for LineBy, LineTo etc
sl@0
    87
	TPoint *iPolyPoints;
sl@0
    88
	TInt iPolyPointListSize;
sl@0
    89
	//member used for storing graphics context data for Internalize/Externalize
sl@0
    90
	TInternalGcStatus iInternalStatus;
sl@0
    91
	// static variables
sl@0
    92
	static CFbsBitmap *iScratchBitmap;
sl@0
    93
	static CFbsBitmap *iScratchMaskBitmap;
sl@0
    94
	};
sl@0
    95
sl@0
    96
inline void CWsGc::SetNextWinGc(CWsGc *aGc)
sl@0
    97
	{
sl@0
    98
	iNextWinGc=aGc;
sl@0
    99
	}
sl@0
   100
sl@0
   101
inline CWsGc *CWsGc::NextWinGc() const
sl@0
   102
	{
sl@0
   103
	return(iNextWinGc);
sl@0
   104
	}
sl@0
   105
sl@0
   106
#endif