sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef COORDINATEWIN_H sl@0: #define COORDINATEWIN_H sl@0: sl@0: #include sl@0: #include "compwin.h" sl@0: sl@0: const TInt KRegionSafe = 6; // 1 rect + 1 rect can be > 2 rects sl@0: sl@0: /******************************************************************************* sl@0: These windows draw ellipses with various origins and clipping regions. sl@0: They also use 4 redraw regions, and are completely transparent except for a white edge. sl@0: The intent is to test the coordinate space code for offsets and clipping. sl@0: *******************************************************************************/ sl@0: _LIT8(KCoordinateWindowType, "Coordinate space"); sl@0: class CCoordinateWin : public CCompWin sl@0: { sl@0: public: sl@0: static CCoordinateWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: static void LoadConfiguration(const MTestStepConfigurationContext* aContext); sl@0: static TBool IsEnabled() { return iEnabled; } sl@0: ~CCoordinateWin(); sl@0: sl@0: void Redraw(const TRect& aRect); sl@0: void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin); sl@0: void SetSize(const TSize & aSize); sl@0: virtual const TDesC8& TypeName() { return KCoordinateWindowType; } sl@0: void DumpDetails(RFile & aFile, TInt aDepth); sl@0: sl@0: protected: sl@0: CCoordinateWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: static TBool iEnabled; sl@0: static TBool iTransparent; sl@0: struct TSegment sl@0: { sl@0: TRect iBoundingRect; sl@0: TPoint iOrigin; sl@0: TRegionFix iClippingRegion; sl@0: TRect iRect; sl@0: }; sl@0: TSegment iSegments[4]; sl@0: }; sl@0: sl@0: sl@0: sl@0: #endif // COORDINATEWIN_H