1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/TScreenModeScaling.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,164 @@
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 +// Definitions common for both scren mode positioning and scaling
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @test
1.24 + @internalComponent - Internal Symbian test code
1.25 +*/
1.26 +
1.27 +#ifndef __TSCREENMODESCALING_H__
1.28 +#define __TSCREENMODESCALING_H__
1.29 +
1.30 +
1.31 +#include <e32std.h>
1.32 +#include <w32std.h>
1.33 +#include "../tlib/testbase.h"
1.34 +#include "AUTO.H"
1.35 +#include "TGraphicsHarness.h"
1.36 +
1.37 +_LIT(ScalingTestName,"Screen Mode Scaling");
1.38 +
1.39 +GLREF_C void ClearBitmap(CFbsBitmap* aBitMap);
1.40 +
1.41 +class CBasicWin : public CTWin
1.42 + {
1.43 +public:
1.44 + //Virtual Function from CTBaseWin
1.45 + void Draw();
1.46 + TInt iDrawn;
1.47 + };
1.48 +
1.49 +class CBmpWin : public CTWin
1.50 + {
1.51 +public:
1.52 + inline CBmpWin(CFbsBitmap& aScreenBmp) :iScreenBmp(aScreenBmp) {}
1.53 + //Virtual Function from CTBaseWin
1.54 + void Draw();
1.55 +private:
1.56 + CFbsBitmap& iScreenBmp;
1.57 + };
1.58 +
1.59 +class CSpriteWin : public CTWin
1.60 + {
1.61 +public:
1.62 + inline CSpriteWin(CFbsBitmap& aSpriteBitmap) :iSpriteBitmap(aSpriteBitmap) {}
1.63 + ~CSpriteWin();
1.64 + inline void SetState(TInt aState) {iState=aState;}
1.65 + void UpdateState(TInt aState);
1.66 + //Virtual Function from CTBaseWin
1.67 + void Draw();
1.68 +private:
1.69 + CFbsBitmap& iSpriteBitmap;
1.70 + TInt iState;
1.71 + };
1.72 +
1.73 +class CTestSpriteWin : public CTWin
1.74 + {
1.75 +public:
1.76 + inline CTestSpriteWin(CFbsBitmap& aSpriteBitmap) :iSpriteBitmap(aSpriteBitmap) {}
1.77 + ~CTestSpriteWin();
1.78 + inline void SetOrigin(TPoint aOrigin) {iOrigin=aOrigin;}
1.79 + void UpdateWin(TPoint aOrigin);
1.80 + //Virtual Function from CTBaseWin
1.81 + void Draw();
1.82 +private:
1.83 + CFbsBitmap& iSpriteBitmap;
1.84 + TPoint iOrigin;
1.85 + };
1.86 +
1.87 +class CBitMapWin : public CTWin
1.88 + {
1.89 +public:
1.90 + inline CBitMapWin(CBitmap* aBackupBitmap) :iBackup(aBackupBitmap) {}
1.91 + //Virtual Function from CTBaseWin
1.92 + void Draw();
1.93 +private:
1.94 + CBitmap* iBackup;
1.95 + };
1.96 +
1.97 +
1.98 +
1.99 +class CTScreenModeScaling : public CTWsGraphicsBase
1.100 + {
1.101 +public:
1.102 + CTScreenModeScaling(CTestStep* aStep);
1.103 + ~CTScreenModeScaling();
1.104 + void ConstructL();
1.105 + void WindowTestsL();
1.106 + void SpriteTestL();
1.107 + void RotationTestsL();
1.108 + void TransparentTestsL();
1.109 + void AppScreenModeTestL();
1.110 +
1.111 +protected:
1.112 + virtual void RunTestCaseL(TInt aCurTestCase);
1.113 +
1.114 +private:
1.115 + void DoWindowTestsL();
1.116 + void TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin);
1.117 + void TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin);
1.118 + void TestRect();
1.119 + void CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2);
1.120 + void TestGetInvalidRegionL(TRect& aRect);
1.121 + void CopyAndCompareL();
1.122 + void PositionTestL(TPoint aPostion);
1.123 + void BackedUpChildWindowTestL(TPoint aPostion);
1.124 + void NextScreenModeTestL(TPoint aPos);
1.125 + void GetInvalidRegionTestL(TPoint aPos);
1.126 + void TestDifferentScales(TInt aLastMode);
1.127 + void TestDifferentOrigin(TSizeMode &aMode,TPoint aOrigin);
1.128 + void DoSpriteTestsL();
1.129 + void TestDifferentOriginAndScaleForSpritesL(TSizeMode &aMode,TPoint aOrigin);
1.130 + void SetUpSpriteLC(RWsSprite &aSprite,RWsSession &aSession,RWindowTreeNode &aWindow,TInt aFlags=ESpriteNoShadows);
1.131 + void DrawTransparentWindows();
1.132 + void TestDifferentOriginAndScaleForTranspWin(TSizeMode &aMode,TPoint aOrigin);
1.133 +private:
1.134 + CFbsBitmap iSpriteBitmap;
1.135 + CBmpWin* iBitmapWin;
1.136 + CFbsBitmap* iScreenBitmap;
1.137 + CBasicWin *iTestWin;
1.138 + CTBackedUpWin* iBackedUpWin;
1.139 + CTBlankWindow* iBlankWin;
1.140 + CTBlankWindow* iTestChildWin;
1.141 + TInt iCurrentMode;
1.142 + TSize iTestWinSize;
1.143 + TPoint iCurrentScreenModeOrigin;
1.144 + TSize iCurrentScreenModeScale;
1.145 + CTBackedUpWin* iCheckWin;
1.146 + CBitmap* iCheckBitmap;
1.147 + CBitmap* iTransparencyBitmap;
1.148 + CBitmap* iBackgroundBitmap;
1.149 + CBitmap* iForegroundBitmap;
1.150 + CBitMapWin* iTransWin;
1.151 + CBitMapWin* iBackgroundWin;
1.152 + TSize iWinSize;
1.153 + TDisplayMode iDisplayMode;
1.154 + };
1.155 +
1.156 +class CTScreenModeScalingStep : public CTGraphicsStep
1.157 + {
1.158 +public:
1.159 + CTScreenModeScalingStep();
1.160 +protected:
1.161 + //from CTGraphicsStep
1.162 + virtual CTGraphicsBase* CreateTestL();
1.163 + };
1.164 +
1.165 +_LIT(KTScreenModeScalingStep,"TScreenModeScaling");
1.166 +
1.167 +#endif