os/graphics/windowing/windowserver/test/FadeCount.cpp
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
// TFADECOUNT.CPP
sl@0
    15
// Testing counted or absolute fade
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include "W32STD.H"
sl@0
    21
#include <e32svr.h>
sl@0
    22
#include "../test/tlib/testbase.h"
sl@0
    23
sl@0
    24
const TInt ETestFailed = 1;
sl@0
    25
sl@0
    26
class CFadeCountClient;
sl@0
    27
sl@0
    28
class CFadeCountWindow : public CTTitledWindow
sl@0
    29
	{
sl@0
    30
public:
sl@0
    31
	CFadeCountWindow(CFadeCountClient* aClient);
sl@0
    32
	~CFadeCountWindow();
sl@0
    33
	void ConstructL(CTWinBase &aParent);
sl@0
    34
	void Draw();
sl@0
    35
	void SetWindowSize();
sl@0
    36
	void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
sl@0
    37
public:
sl@0
    38
	CFadeCountClient* iClient;
sl@0
    39
	TBool iAbsoluteFading;
sl@0
    40
	TBool iPass;
sl@0
    41
	TBool iComplete;
sl@0
    42
	};
sl@0
    43
sl@0
    44
sl@0
    45
class CFadeCountClient : public CTClient
sl@0
    46
	{
sl@0
    47
public:
sl@0
    48
	CFadeCountClient();
sl@0
    49
	~CFadeCountClient();
sl@0
    50
	void ConstructL();
sl@0
    51
	void KeyL(const TKeyEvent &aKey,const TTime &aTime);
sl@0
    52
	void Exit();
sl@0
    53
	void TestL();
sl@0
    54
	void TestL(TInt aCondition);
sl@0
    55
	void CreateTestWindowsL(CTWinBase &aParent);
sl@0
    56
	TBool IsAbsoluteFadingOnL();
sl@0
    57
	void TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted);
sl@0
    58
private:
sl@0
    59
	TInt iNum;
sl@0
    60
	CFadeCountWindow *iFadeCountWin;
sl@0
    61
	CTWin* iWin1;
sl@0
    62
	CTWin* iWin2;
sl@0
    63
	TBool iAbsoluteFading;
sl@0
    64
	};
sl@0
    65
sl@0
    66
sl@0
    67
//
sl@0
    68
// Individual window sub-classes
sl@0
    69
//
sl@0
    70
sl@0
    71
CFadeCountWindow::CFadeCountWindow(CFadeCountClient* aClient) 
sl@0
    72
: CTTitledWindow(), iClient(aClient)
sl@0
    73
	{
sl@0
    74
	}
sl@0
    75
sl@0
    76
CFadeCountWindow::~CFadeCountWindow()
sl@0
    77
	{
sl@0
    78
	}
sl@0
    79
sl@0
    80
void CFadeCountWindow::ConstructL(CTWinBase &aParent)
sl@0
    81
	{
sl@0
    82
	CTTitledWindow::ConstructL(aParent);
sl@0
    83
	SetWindowSize();
sl@0
    84
	TSize screenSize=Client()->iScreen->SizeInPixels();
sl@0
    85
	TSize dif(screenSize-Size());
sl@0
    86
	iWin.SetPosition(TPoint(dif.iWidth/2,dif.iHeight/2));
sl@0
    87
sl@0
    88
	Invalidate();
sl@0
    89
	}
sl@0
    90
sl@0
    91
void CFadeCountWindow::Draw()
sl@0
    92
	{
sl@0
    93
	CTTitledWindow::Draw();
sl@0
    94
	TInt lineSpacing = iFont->AscentInPixels()+3;
sl@0
    95
	TPoint pos(3,iTitleHeight+lineSpacing);
sl@0
    96
	iGc->DrawText(_L("Fade count tests"),pos);
sl@0
    97
sl@0
    98
	pos.iY += lineSpacing;
sl@0
    99
	if (iAbsoluteFading)
sl@0
   100
		iGc->DrawText(_L("ABSOLUTEFADING is ON"),pos);
sl@0
   101
	else
sl@0
   102
		iGc->DrawText(_L("ABSOLUTEFADING is OFF"),pos);
sl@0
   103
sl@0
   104
	if (iComplete)
sl@0
   105
		{
sl@0
   106
		pos.iY += lineSpacing;
sl@0
   107
		if (iPass)
sl@0
   108
			iGc->DrawText(_L("Tests have passed"),pos);
sl@0
   109
		else
sl@0
   110
			iGc->DrawText(_L("Tests have failed"),pos);
sl@0
   111
sl@0
   112
		pos.iY += lineSpacing;
sl@0
   113
		iGc->DrawText(_L("Press any key to exit"),pos);
sl@0
   114
		}
sl@0
   115
	}
sl@0
   116
sl@0
   117
void CFadeCountWindow::SetWindowSize()
sl@0
   118
	{
sl@0
   119
	TSize size(400,200);
sl@0
   120
	SetSize(size);
sl@0
   121
	}
sl@0
   122
sl@0
   123
void CFadeCountWindow::WinKeyL(const TKeyEvent &/*aKey*/,const TTime& )
sl@0
   124
	{
sl@0
   125
	iClient->Exit();
sl@0
   126
	}
sl@0
   127
sl@0
   128
sl@0
   129
//
sl@0
   130
// End of CFadeCountWindow class //
sl@0
   131
//
sl@0
   132
sl@0
   133
sl@0
   134
CFadeCountClient::CFadeCountClient()
sl@0
   135
	{
sl@0
   136
	}
sl@0
   137
sl@0
   138
CFadeCountClient::~CFadeCountClient()
sl@0
   139
	{
sl@0
   140
	delete iWin2;
sl@0
   141
	delete iWin1;
sl@0
   142
	delete iFadeCountWin;
sl@0
   143
	}
sl@0
   144
sl@0
   145
void CFadeCountClient::ConstructL()
sl@0
   146
	{
sl@0
   147
	CTClient::ConstructL();
sl@0
   148
sl@0
   149
	iGroup=new(ELeave) CTWindowGroup(this);
sl@0
   150
	iGroup->ConstructL();
sl@0
   151
sl@0
   152
	CreateTestWindowsL(*iGroup);
sl@0
   153
sl@0
   154
	iFadeCountWin=new(ELeave) CFadeCountWindow(this);
sl@0
   155
	iFadeCountWin->iAbsoluteFading = iAbsoluteFading;
sl@0
   156
	iFadeCountWin->ConstructL(*iGroup);
sl@0
   157
	iFadeCountWin->Activate();
sl@0
   158
	iFadeCountWin->AssignGC(*iGc);
sl@0
   159
	iGroup->SetCurrentWindow(iGroup->Child());
sl@0
   160
sl@0
   161
	TRAP_IGNORE(TestL());
sl@0
   162
	iFadeCountWin->iComplete = ETrue;
sl@0
   163
	}
sl@0
   164
sl@0
   165
void CFadeCountClient::Exit()
sl@0
   166
	{
sl@0
   167
	CActiveScheduler::Stop();
sl@0
   168
	}
sl@0
   169
sl@0
   170
void CFadeCountClient::TestL()
sl@0
   171
	{
sl@0
   172
	// start condition - after absolute fade has been established
sl@0
   173
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   174
	TestFadeL(iWin2, EFalse, EFalse);
sl@0
   175
	TestFadeL(iFadeCountWin, EFalse, EFalse);
sl@0
   176
	
sl@0
   177
	// System fade and repeated fade
sl@0
   178
	// positive fade
sl@0
   179
	TInt ii;
sl@0
   180
	const TInt KFadeRepeat = 4;
sl@0
   181
	for (ii=0; ii<KFadeRepeat; ii++)
sl@0
   182
		{
sl@0
   183
		iWs.SetSystemFaded(ETrue);
sl@0
   184
		TestFadeL(iWin1, ETrue, ETrue);
sl@0
   185
		TestFadeL(iWin2, ETrue, ETrue);
sl@0
   186
		TestFadeL(iFadeCountWin, ETrue, ETrue);
sl@0
   187
		}
sl@0
   188
sl@0
   189
	for (ii=KFadeRepeat-1; ii>=0; ii--)
sl@0
   190
		{
sl@0
   191
		iWs.SetSystemFaded(EFalse);
sl@0
   192
		TestFadeL(iWin1, EFalse, ii);
sl@0
   193
		TestFadeL(iWin2, EFalse, ii);
sl@0
   194
		TestFadeL(iFadeCountWin, EFalse, ii);
sl@0
   195
		}
sl@0
   196
sl@0
   197
	// negative fade is not counted
sl@0
   198
	for (ii=0; ii<KFadeRepeat-1; ii++)
sl@0
   199
		{
sl@0
   200
		iWs.SetSystemFaded(EFalse);
sl@0
   201
		TestFadeL(iWin1, EFalse, EFalse);
sl@0
   202
		TestFadeL(iWin2, EFalse, EFalse);
sl@0
   203
		TestFadeL(iFadeCountWin, EFalse, EFalse);
sl@0
   204
		}
sl@0
   205
sl@0
   206
	iWs.SetSystemFaded(ETrue);
sl@0
   207
	TestFadeL(iWin1, ETrue, ETrue);
sl@0
   208
	TestFadeL(iWin2, ETrue, ETrue);
sl@0
   209
	TestFadeL(iFadeCountWin, ETrue, ETrue);
sl@0
   210
sl@0
   211
	iWs.SetSystemFaded(EFalse);
sl@0
   212
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   213
	TestFadeL(iWin2, EFalse, EFalse);
sl@0
   214
	TestFadeL(iFadeCountWin, EFalse, EFalse);
sl@0
   215
sl@0
   216
	// child fading
sl@0
   217
	// nested
sl@0
   218
	iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   219
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   220
	TestFadeL(iWin2, ETrue, ETrue);
sl@0
   221
	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   222
	TestFadeL(iWin1, ETrue, ETrue);
sl@0
   223
	TestFadeL(iWin2, ETrue, ETrue);
sl@0
   224
	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   225
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   226
	TestFadeL(iWin2, EFalse, ETrue);
sl@0
   227
	iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   228
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   229
	TestFadeL(iWin2, EFalse, EFalse);
sl@0
   230
	
sl@0
   231
	// interlaced
sl@0
   232
	iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   233
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   234
	TestFadeL(iWin2, ETrue, ETrue);
sl@0
   235
	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   236
	TestFadeL(iWin1, ETrue, ETrue);
sl@0
   237
	TestFadeL(iWin2, ETrue, ETrue);
sl@0
   238
	iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   239
	TestFadeL(iWin1, ETrue, ETrue);
sl@0
   240
	TestFadeL(iWin2, EFalse, ETrue);
sl@0
   241
	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
sl@0
   242
	TestFadeL(iWin1, EFalse, EFalse);
sl@0
   243
	TestFadeL(iWin2, EFalse, EFalse);
sl@0
   244
sl@0
   245
	iFadeCountWin->iPass = ETrue;
sl@0
   246
	}
sl@0
   247
sl@0
   248
void CFadeCountClient::CreateTestWindowsL(CTWinBase &aParent)
sl@0
   249
	{
sl@0
   250
	iWin1 = new(ELeave) CTWin();
sl@0
   251
	iWin1->ConstructL(aParent);
sl@0
   252
	iWin1->SetSize(TSize(20,20));
sl@0
   253
sl@0
   254
	iWin2 = new(ELeave) CTWin();
sl@0
   255
	iWin2->ConstructL(*iWin1);
sl@0
   256
	iWin2->SetSize(TSize(10,10));
sl@0
   257
sl@0
   258
	iAbsoluteFading = IsAbsoluteFadingOnL();
sl@0
   259
	}
sl@0
   260
sl@0
   261
TBool CFadeCountClient::IsAbsoluteFadingOnL()
sl@0
   262
	{
sl@0
   263
	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
sl@0
   264
	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
sl@0
   265
	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
sl@0
   266
	TBool absoluteFading = !iWin1->BaseWin()->IsFaded();
sl@0
   267
	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
sl@0
   268
	return absoluteFading;
sl@0
   269
	}
sl@0
   270
sl@0
   271
void CFadeCountClient::TestL(TInt aCondition)
sl@0
   272
	{
sl@0
   273
	if (!aCondition)
sl@0
   274
		User::Leave(ETestFailed);
sl@0
   275
	}
sl@0
   276
sl@0
   277
void CFadeCountClient::TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted)
sl@0
   278
	{
sl@0
   279
	TestL(!aWin->BaseWin()->IsFaded() == !(iAbsoluteFading ? aAbs : aCounted));
sl@0
   280
	}
sl@0
   281
sl@0
   282
sl@0
   283
GLDEF_C CTClient *CreateClientL()
sl@0
   284
	{
sl@0
   285
	return(new(ELeave) CFadeCountClient());
sl@0
   286
	}
sl@0
   287
	
sl@0
   288
GLDEF_C TInt E32Main()
sl@0
   289
	{
sl@0
   290
	return(TestLibStartUp(CreateClientL));
sl@0
   291
	}