1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/gc.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,107 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// CWsGc and associated classes definitions
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __GC_H__
1.22 +#define __GC_H__
1.23 +
1.24 +#include "wnredraw.h"
1.25 +#include "cliwin.h"
1.26 +
1.27 +class CWsFbsFont;
1.28 +
1.29 +class CWsGc : public CWsObject
1.30 + {
1.31 + enum {ETextPtrBufLen=0x100}; // Buffer of TText, used on stack
1.32 +// Functions
1.33 +public:
1.34 + static CWsGc* NewL(CWsClient *aOwner);
1.35 + ~CWsGc();
1.36 + static void InitStaticsL();
1.37 + static void DeleteStatics();
1.38 + void Activate(CWsClientWindow *win);
1.39 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.40 + void Deactivate();
1.41 + void Reset();
1.42 + inline CFbsBitGc *Gdi() const;
1.43 + void SetGcAttribute(TInt aOpcode, TWsGcCmdUnion pData);
1.44 + inline void SetNextWinGc(CWsGc *aGc);
1.45 + inline CWsGc *NextWinGc() const;
1.46 + void SetOrigin(const TPoint &aOrigin);
1.47 + TInt ExternalizeL(CBufBase& aBuffer, TInt aStartPos);
1.48 + TInt ExternalizeClippingRegionL(RWriteStream& aWriteStreem);
1.49 + TInt FbsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
1.50 + TInt WsBitmapHandle(TInt aOpcode, const TWsGcCmdUnion &pData, TInt& aMaskHandle);
1.51 + void SetOpaque(TBool aDrawOpaque);
1.52 + void Reactivate();
1.53 +private:
1.54 + CWsGc(CWsClient *aOwner);
1.55 + void ConstructL();
1.56 + void DoDrawing0L(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
1.57 + void DoDrawing1(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
1.58 + void DoDrawing2(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData);
1.59 + void Activate(const TInt &aHandle);
1.60 + void DoDrawCommand(TWsGcOpcodes aOpcode, const TWsGcCmdUnion &pData, const TRegion *aRegion);
1.61 + void SetClippingRegionL(TInt aCountRegion);
1.62 + void SetClippingRect(const TRect &aRect);
1.63 + void CancelClippingRegion();
1.64 + void DoDrawPolygon(const TWsGcCmdDrawPolygon *aDrawPolygon);
1.65 + void DoDrawPolyLine(const TWsGcCmdDrawPolyLine *aDrawPolyLine, TBool aContinued);
1.66 + void GcOwnerPanic(TClientPanic aPanic);
1.67 + void ResetClippingRect();
1.68 + void EndSegmentedPolygon();
1.69 + void StartSegmentedDrawPolygonL(const TWsGcCmdStartSegmentedDrawPolygon* aDrawPolygon);
1.70 + void SegmentedDrawPolygonData(const TWsGcCmdSegmentedDrawPolygonData* aDrawPolygon);
1.71 + void UpdateJustification(TText* aText,TInt aLen);
1.72 +#if defined(_DEBUG)
1.73 + inline TBool IsPolyPointData() {return(iPolyPointListSize>0 || iPolyPoints!=NULL);}
1.74 +#endif
1.75 + void ExternalizeAlphaValueL(RWriteStream& aWriteStream);
1.76 + TPtrC BufferTPtr(TText* aStart,TInt aLen);
1.77 + void CheckPolyData(const TAny* aDataPtr, TInt aHeaderSize, TInt aNumPoints);
1.78 +private:
1.79 + CFbsBitGc *iGdi;
1.80 + CWsClientWindow *iWin;
1.81 + CWsGc *iNextWinGc;
1.82 + CWsFbsFont *iFont;
1.83 + RWsRegion* iUserDefinedClippingRegion; //Clipping region that is set explicitly by the user.
1.84 + TRect iClippingRect; // All drawing clipped to this rectangle in addition to other clipping
1.85 + TBool iClippingRectSet; // ETrue if the iClippingRect is in use
1.86 + TPoint iOrigin; // User defined origin, relative to the top left of the window
1.87 + TPoint iLinePos; // Current line position for LineBy, LineTo etc
1.88 + TPoint *iPolyPoints;
1.89 + TInt iPolyPointListSize;
1.90 + // static variables
1.91 + static CFbsBitmap *iScratchBitmap;
1.92 + static CFbsBitmap *iScratchMaskBitmap;
1.93 + };
1.94 +
1.95 +inline CFbsBitGc *CWsGc::Gdi() const
1.96 + {
1.97 + return(iGdi);
1.98 + }
1.99 +
1.100 +inline void CWsGc::SetNextWinGc(CWsGc *aGc)
1.101 + {
1.102 + iNextWinGc=aGc;
1.103 + }
1.104 +
1.105 +inline CWsGc *CWsGc::NextWinGc() const
1.106 + {
1.107 + return(iNextWinGc);
1.108 + }
1.109 +
1.110 +#endif