os/graphics/windowing/windowserver/test/t_stress/inc/coordinatewin.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef COORDINATEWIN_H
    23 #define COORDINATEWIN_H
    24 
    25 #include <w32std.h>
    26 #include "compwin.h"
    27 
    28 const TInt KRegionSafe = 6; // 1 rect + 1 rect can be > 2 rects
    29 
    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
    37 	{
    38 public:
    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; }
    42 	~CCoordinateWin();
    43 	
    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);
    49 	
    50 protected:
    51 	CCoordinateWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    52 	void ConstructL();
    53 
    54 private:
    55 	static TBool iEnabled;
    56 	static TBool iTransparent;
    57 	struct TSegment
    58 		{
    59 		TRect iBoundingRect;
    60 		TPoint iOrigin;
    61 		TRegionFix<KRegionSafe> iClippingRegion;
    62 		TRect iRect;
    63 		};
    64 	TSegment iSegments[4];
    65 	};
    66 
    67 
    68 
    69 #endif // COORDINATEWIN_H