os/graphics/windowing/windowserver/test/tauto/TSCREENMODEPOSITIONING.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
sl@0
    23
#ifndef __TSCREENMODEPOSITIONING_H__
sl@0
    24
#define __TSCREENMODEPOSITIONING_H__
sl@0
    25
sl@0
    26
#include <e32std.h>
sl@0
    27
#include <w32std.h>
sl@0
    28
#include "../tlib/testbase.h"
sl@0
    29
#include "AUTO.H"
sl@0
    30
#include "TScreenModeScaling.h"
sl@0
    31
#include "TGraphicsHarness.h"
sl@0
    32
sl@0
    33
class CConnection2;
sl@0
    34
sl@0
    35
class CConnection2Group : public CTWindowGroup
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	CConnection2Group(CTClient *aClient, CConnection2 *aSecondConnection, CTestBase *aTest);
sl@0
    39
private:
sl@0
    40
	CTestBase* iTest;
sl@0
    41
public:
sl@0
    42
	CConnection2* iConnection2;
sl@0
    43
	};
sl@0
    44
sl@0
    45
class CConnection2 : public CBase
sl@0
    46
	{
sl@0
    47
public:
sl@0
    48
	~CConnection2();
sl@0
    49
	void ConstructL(CTestBase *aTest,CFbsBitmap& aBitmap);
sl@0
    50
	void DrawBitmapWin();
sl@0
    51
	CBmpWin* BitmapWin() {return iBitmapWin;}
sl@0
    52
public:
sl@0
    53
	CTClient* iClient;
sl@0
    54
	CFbsBitmap* iScreenBitmap;
sl@0
    55
	CSpriteWin*	iSpriteWin;
sl@0
    56
private:
sl@0
    57
	CConnection2Group *iGroup;
sl@0
    58
	CBmpWin* iBitmapWin;
sl@0
    59
	};
sl@0
    60
sl@0
    61
sl@0
    62
sl@0
    63
class CTScreenModePositioning : public CTWsGraphicsBase
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
	CTScreenModePositioning(CTestStep* aStep);
sl@0
    67
	~CTScreenModePositioning();
sl@0
    68
	void ConstructL();
sl@0
    69
sl@0
    70
	void WindowTestsL();
sl@0
    71
	void SpriteTestL();
sl@0
    72
	void RotationTestsL();
sl@0
    73
	TBool ScalingSupportedByDisplayMode();
sl@0
    74
sl@0
    75
protected:
sl@0
    76
	virtual void RunTestCaseL(TInt aCurTestCase);
sl@0
    77
private:
sl@0
    78
	TBool TestRect();
sl@0
    79
	void CopyScreenAndChangeBackToDefScrModeL();
sl@0
    80
	void PositionTest1L(TPoint aPosTSize);
sl@0
    81
	void PositionTest2L(TPoint aPos);
sl@0
    82
	void GetInvalidRegionTestL(TPoint aPos);
sl@0
    83
	void DoWindowTestsL();
sl@0
    84
	void CreateWindowsTestL(TPoint aPos);
sl@0
    85
	void NextScreenModeTestL(TPoint aPos);
sl@0
    86
	void ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TInt aMode);
sl@0
    87
	void ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TScreenModeEnforcement aScreenModeEnforcement,TInt aMode);
sl@0
    88
	void SetScreenMode(CTClient* aClient,TInt aMode,TScreenModeEnforcement aScreenModeEnforcement);
sl@0
    89
	void SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags=ESpriteNoShadows);
sl@0
    90
	void CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2);
sl@0
    91
	void TestGetInvalidRegionL(TRect& aRect);
sl@0
    92
	void TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin);
sl@0
    93
	void TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin);
sl@0
    94
	void CopyAndCompareL(TPoint aPos);
sl@0
    95
	void RestoreScreenMode();
sl@0
    96
private:
sl@0
    97
	CFbsBitmap iSpriteBitmap;
sl@0
    98
	CConnection2* iConnection2;
sl@0
    99
	CBasicWin *iTestWin;
sl@0
   100
	CTBackedUpWin* iBackedUpWin;
sl@0
   101
	CTBlankWindow* iBlankWin;
sl@0
   102
	CTBlankWindow* iTestChildWin;
sl@0
   103
	TInt iCurrentMode;
sl@0
   104
	TSize iTestWinSize;
sl@0
   105
	TPoint iCurrentScreenModeOrigin;
sl@0
   106
	TSize iCurrentScreenModeScale;
sl@0
   107
	TSize iCurrentScreenModeSize;
sl@0
   108
	TInt iScalingSupported;
sl@0
   109
 	};
sl@0
   110
sl@0
   111
class CTScreenModePositioningStep : public CTGraphicsStep
sl@0
   112
	{
sl@0
   113
public:
sl@0
   114
	CTScreenModePositioningStep();
sl@0
   115
protected:	
sl@0
   116
	//from CTGraphicsStep
sl@0
   117
	virtual CTGraphicsBase* CreateTestL();
sl@0
   118
	};
sl@0
   119
sl@0
   120
_LIT(KTScreenModePositioningStep,"TScreenModePositioning");
sl@0
   121
sl@0
   122
sl@0
   123
#endif