Update contrib.
1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef COORDINATEWIN_H
23 #define COORDINATEWIN_H
28 const TInt KRegionSafe = 6; // 1 rect + 1 rect can be > 2 rects
30 /*******************************************************************************
31 These windows draw ellipses with various origins and clipping regions.
32 They also use 4 redraw regions, and are completely transparent except for a white edge.
33 The intent is to test the coordinate space code for offsets and clipping.
34 *******************************************************************************/
35 _LIT8(KCoordinateWindowType, "Coordinate space");
36 class CCoordinateWin : public CCompWin
39 static CCoordinateWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
40 static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
41 static TBool IsEnabled() { return iEnabled; }
44 void Redraw(const TRect& aRect);
45 void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
46 void SetSize(const TSize & aSize);
47 virtual const TDesC8& TypeName() { return KCoordinateWindowType; }
48 void DumpDetails(RFile & aFile, TInt aDepth);
51 CCoordinateWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
55 static TBool iEnabled;
56 static TBool iTransparent;
61 TRegionFix<KRegionSafe> iClippingRegion;
64 TSegment iSegments[4];
69 #endif // COORDINATEWIN_H