1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/TSCREENMODEPOSITIONING.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,123 @@
1.4 +// Copyright (c) 1996-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 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent - Internal Symbian test code
1.23 +*/
1.24 +
1.25 +
1.26 +#ifndef __TSCREENMODEPOSITIONING_H__
1.27 +#define __TSCREENMODEPOSITIONING_H__
1.28 +
1.29 +#include <e32std.h>
1.30 +#include <w32std.h>
1.31 +#include "../tlib/testbase.h"
1.32 +#include "AUTO.H"
1.33 +#include "TScreenModeScaling.h"
1.34 +#include "TGraphicsHarness.h"
1.35 +
1.36 +class CConnection2;
1.37 +
1.38 +class CConnection2Group : public CTWindowGroup
1.39 + {
1.40 +public:
1.41 + CConnection2Group(CTClient *aClient, CConnection2 *aSecondConnection, CTestBase *aTest);
1.42 +private:
1.43 + CTestBase* iTest;
1.44 +public:
1.45 + CConnection2* iConnection2;
1.46 + };
1.47 +
1.48 +class CConnection2 : public CBase
1.49 + {
1.50 +public:
1.51 + ~CConnection2();
1.52 + void ConstructL(CTestBase *aTest,CFbsBitmap& aBitmap);
1.53 + void DrawBitmapWin();
1.54 + CBmpWin* BitmapWin() {return iBitmapWin;}
1.55 +public:
1.56 + CTClient* iClient;
1.57 + CFbsBitmap* iScreenBitmap;
1.58 + CSpriteWin* iSpriteWin;
1.59 +private:
1.60 + CConnection2Group *iGroup;
1.61 + CBmpWin* iBitmapWin;
1.62 + };
1.63 +
1.64 +
1.65 +
1.66 +class CTScreenModePositioning : public CTWsGraphicsBase
1.67 + {
1.68 +public:
1.69 + CTScreenModePositioning(CTestStep* aStep);
1.70 + ~CTScreenModePositioning();
1.71 + void ConstructL();
1.72 +
1.73 + void WindowTestsL();
1.74 + void SpriteTestL();
1.75 + void RotationTestsL();
1.76 + TBool ScalingSupportedByDisplayMode();
1.77 +
1.78 +protected:
1.79 + virtual void RunTestCaseL(TInt aCurTestCase);
1.80 +private:
1.81 + TBool TestRect();
1.82 + void CopyScreenAndChangeBackToDefScrModeL();
1.83 + void PositionTest1L(TPoint aPosTSize);
1.84 + void PositionTest2L(TPoint aPos);
1.85 + void GetInvalidRegionTestL(TPoint aPos);
1.86 + void DoWindowTestsL();
1.87 + void CreateWindowsTestL(TPoint aPos);
1.88 + void NextScreenModeTestL(TPoint aPos);
1.89 + void ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TInt aMode);
1.90 + void ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TScreenModeEnforcement aScreenModeEnforcement,TInt aMode);
1.91 + void SetScreenMode(CTClient* aClient,TInt aMode,TScreenModeEnforcement aScreenModeEnforcement);
1.92 + void SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags=ESpriteNoShadows);
1.93 + void CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2);
1.94 + void TestGetInvalidRegionL(TRect& aRect);
1.95 + void TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin);
1.96 + void TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin);
1.97 + void CopyAndCompareL(TPoint aPos);
1.98 + void RestoreScreenMode();
1.99 +private:
1.100 + CFbsBitmap iSpriteBitmap;
1.101 + CConnection2* iConnection2;
1.102 + CBasicWin *iTestWin;
1.103 + CTBackedUpWin* iBackedUpWin;
1.104 + CTBlankWindow* iBlankWin;
1.105 + CTBlankWindow* iTestChildWin;
1.106 + TInt iCurrentMode;
1.107 + TSize iTestWinSize;
1.108 + TPoint iCurrentScreenModeOrigin;
1.109 + TSize iCurrentScreenModeScale;
1.110 + TSize iCurrentScreenModeSize;
1.111 + TInt iScalingSupported;
1.112 + };
1.113 +
1.114 +class CTScreenModePositioningStep : public CTGraphicsStep
1.115 + {
1.116 +public:
1.117 + CTScreenModePositioningStep();
1.118 +protected:
1.119 + //from CTGraphicsStep
1.120 + virtual CTGraphicsBase* CreateTestL();
1.121 + };
1.122 +
1.123 +_LIT(KTScreenModePositioningStep,"TScreenModePositioning");
1.124 +
1.125 +
1.126 +#endif