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 |
|
sl@0
|
24 |
class CWsFbsFont;
|
sl@0
|
25 |
|
sl@0
|
26 |
class CWsGc : public CWsObject
|
sl@0
|
27 |
{
|
sl@0
|
28 |
enum {ETextPtrBufLen=0x100}; // Buffer of TText, used on stack
|
sl@0
|
29 |
// Functions
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
static CWsGc* NewL(CWsClient *aOwner);
|
sl@0
|
32 |
~CWsGc();
|
sl@0
|
33 |
static void InitStaticsL();
|
sl@0
|
34 |
static void DeleteStatics();
|
sl@0
|
35 |
void Activate(CWsClientWindow *win);
|
sl@0
|
36 |
void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
37 |
void Deactivate();
|
sl@0
|
38 |
void Reset();
|
sl@0
|
39 |
inline CFbsBitGc *Gdi() const;
|
sl@0
|
40 |
void SetGcAttribute(TInt aOpcode, TWsGcCmdUnion pData);
|
sl@0
|
41 |
inline void SetNextWinGc(CWsGc *aGc);
|
sl@0
|
42 |
inline CWsGc *NextWinGc() const;
|
sl@0
|
43 |
void SetOrigin(const TPoint &aOrigin);
|
sl@0
|
44 |
TInt ExternalizeL(CBufBase& aBuffer, TInt aStartPos);
|
sl@0
|
45 |
TInt ExternalizeClippingRegionL(RWriteStream& aWriteStreem);
|
sl@0
|
46 |
TInt FbsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
|
sl@0
|
47 |
TInt WsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
|
sl@0
|
48 |
void SetOpaque(TBool aDrawOpaque);
|
sl@0
|
49 |
void Reactivate();
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
CWsGc(CWsClient *aOwner);
|
sl@0
|
52 |
void ConstructL();
|
sl@0
|
53 |
void DoDrawing0L(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
|
sl@0
|
54 |
void DoDrawing1(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
|
sl@0
|
55 |
void DoDrawing2(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
|
sl@0
|
56 |
void Activate(const TInt &aHandle);
|
sl@0
|
57 |
void DoDrawCommand(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData, const TRegion *aRegion);
|
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 |
#if defined(_DEBUG)
|
sl@0
|
70 |
inline TBool IsPolyPointData() {return(iPolyPointListSize>0 || iPolyPoints!=NULL);}
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
void ExternalizeAlphaValueL(RWriteStream& aWriteStream);
|
sl@0
|
73 |
TPtrC BufferTPtr(TText* aStart,TInt aLen);
|
sl@0
|
74 |
void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints);
|
sl@0
|
75 |
private:
|
sl@0
|
76 |
CFbsBitGc *iGdi;
|
sl@0
|
77 |
CWsClientWindow *iWin;
|
sl@0
|
78 |
CWsGc *iNextWinGc;
|
sl@0
|
79 |
CWsFbsFont *iFont;
|
sl@0
|
80 |
RWsRegion* iUserDefinedClippingRegion; //Clipping region that is set explicitly by the user.
|
sl@0
|
81 |
TRect iClippingRect; // All drawing clipped to this rectangle in addition to other clipping
|
sl@0
|
82 |
TBool iClippingRectSet; // ETrue if the iClippingRect is in use
|
sl@0
|
83 |
TPoint iOrigin; // User defined origin, relative to the top left of the window
|
sl@0
|
84 |
TPoint iLinePos; // Current line position for LineBy, LineTo etc
|
sl@0
|
85 |
TPoint *iPolyPoints;
|
sl@0
|
86 |
TInt iPolyPointListSize;
|
sl@0
|
87 |
// static variables
|
sl@0
|
88 |
static CFbsBitmap *iScratchBitmap;
|
sl@0
|
89 |
static CFbsBitmap *iScratchMaskBitmap;
|
sl@0
|
90 |
};
|
sl@0
|
91 |
|
sl@0
|
92 |
inline CFbsBitGc *CWsGc::Gdi() const
|
sl@0
|
93 |
{
|
sl@0
|
94 |
return(iGdi);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
inline void CWsGc::SetNextWinGc(CWsGc *aGc)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
iNextWinGc=aGc;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
inline CWsGc *CWsGc::NextWinGc() const
|
sl@0
|
103 |
{
|
sl@0
|
104 |
return(iNextWinGc);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
#endif
|