os/graphics/windowing/windowserver/test/FadeCount.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/FadeCount.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,291 @@
     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 +// TFADECOUNT.CPP
    1.18 +// Testing counted or absolute fade
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <e32std.h>
    1.23 +#include "W32STD.H"
    1.24 +#include <e32svr.h>
    1.25 +#include "../test/tlib/testbase.h"
    1.26 +
    1.27 +const TInt ETestFailed = 1;
    1.28 +
    1.29 +class CFadeCountClient;
    1.30 +
    1.31 +class CFadeCountWindow : public CTTitledWindow
    1.32 +	{
    1.33 +public:
    1.34 +	CFadeCountWindow(CFadeCountClient* aClient);
    1.35 +	~CFadeCountWindow();
    1.36 +	void ConstructL(CTWinBase &aParent);
    1.37 +	void Draw();
    1.38 +	void SetWindowSize();
    1.39 +	void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
    1.40 +public:
    1.41 +	CFadeCountClient* iClient;
    1.42 +	TBool iAbsoluteFading;
    1.43 +	TBool iPass;
    1.44 +	TBool iComplete;
    1.45 +	};
    1.46 +
    1.47 +
    1.48 +class CFadeCountClient : public CTClient
    1.49 +	{
    1.50 +public:
    1.51 +	CFadeCountClient();
    1.52 +	~CFadeCountClient();
    1.53 +	void ConstructL();
    1.54 +	void KeyL(const TKeyEvent &aKey,const TTime &aTime);
    1.55 +	void Exit();
    1.56 +	void TestL();
    1.57 +	void TestL(TInt aCondition);
    1.58 +	void CreateTestWindowsL(CTWinBase &aParent);
    1.59 +	TBool IsAbsoluteFadingOnL();
    1.60 +	void TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted);
    1.61 +private:
    1.62 +	TInt iNum;
    1.63 +	CFadeCountWindow *iFadeCountWin;
    1.64 +	CTWin* iWin1;
    1.65 +	CTWin* iWin2;
    1.66 +	TBool iAbsoluteFading;
    1.67 +	};
    1.68 +
    1.69 +
    1.70 +//
    1.71 +// Individual window sub-classes
    1.72 +//
    1.73 +
    1.74 +CFadeCountWindow::CFadeCountWindow(CFadeCountClient* aClient) 
    1.75 +: CTTitledWindow(), iClient(aClient)
    1.76 +	{
    1.77 +	}
    1.78 +
    1.79 +CFadeCountWindow::~CFadeCountWindow()
    1.80 +	{
    1.81 +	}
    1.82 +
    1.83 +void CFadeCountWindow::ConstructL(CTWinBase &aParent)
    1.84 +	{
    1.85 +	CTTitledWindow::ConstructL(aParent);
    1.86 +	SetWindowSize();
    1.87 +	TSize screenSize=Client()->iScreen->SizeInPixels();
    1.88 +	TSize dif(screenSize-Size());
    1.89 +	iWin.SetPosition(TPoint(dif.iWidth/2,dif.iHeight/2));
    1.90 +
    1.91 +	Invalidate();
    1.92 +	}
    1.93 +
    1.94 +void CFadeCountWindow::Draw()
    1.95 +	{
    1.96 +	CTTitledWindow::Draw();
    1.97 +	TInt lineSpacing = iFont->AscentInPixels()+3;
    1.98 +	TPoint pos(3,iTitleHeight+lineSpacing);
    1.99 +	iGc->DrawText(_L("Fade count tests"),pos);
   1.100 +
   1.101 +	pos.iY += lineSpacing;
   1.102 +	if (iAbsoluteFading)
   1.103 +		iGc->DrawText(_L("ABSOLUTEFADING is ON"),pos);
   1.104 +	else
   1.105 +		iGc->DrawText(_L("ABSOLUTEFADING is OFF"),pos);
   1.106 +
   1.107 +	if (iComplete)
   1.108 +		{
   1.109 +		pos.iY += lineSpacing;
   1.110 +		if (iPass)
   1.111 +			iGc->DrawText(_L("Tests have passed"),pos);
   1.112 +		else
   1.113 +			iGc->DrawText(_L("Tests have failed"),pos);
   1.114 +
   1.115 +		pos.iY += lineSpacing;
   1.116 +		iGc->DrawText(_L("Press any key to exit"),pos);
   1.117 +		}
   1.118 +	}
   1.119 +
   1.120 +void CFadeCountWindow::SetWindowSize()
   1.121 +	{
   1.122 +	TSize size(400,200);
   1.123 +	SetSize(size);
   1.124 +	}
   1.125 +
   1.126 +void CFadeCountWindow::WinKeyL(const TKeyEvent &/*aKey*/,const TTime& )
   1.127 +	{
   1.128 +	iClient->Exit();
   1.129 +	}
   1.130 +
   1.131 +
   1.132 +//
   1.133 +// End of CFadeCountWindow class //
   1.134 +//
   1.135 +
   1.136 +
   1.137 +CFadeCountClient::CFadeCountClient()
   1.138 +	{
   1.139 +	}
   1.140 +
   1.141 +CFadeCountClient::~CFadeCountClient()
   1.142 +	{
   1.143 +	delete iWin2;
   1.144 +	delete iWin1;
   1.145 +	delete iFadeCountWin;
   1.146 +	}
   1.147 +
   1.148 +void CFadeCountClient::ConstructL()
   1.149 +	{
   1.150 +	CTClient::ConstructL();
   1.151 +
   1.152 +	iGroup=new(ELeave) CTWindowGroup(this);
   1.153 +	iGroup->ConstructL();
   1.154 +
   1.155 +	CreateTestWindowsL(*iGroup);
   1.156 +
   1.157 +	iFadeCountWin=new(ELeave) CFadeCountWindow(this);
   1.158 +	iFadeCountWin->iAbsoluteFading = iAbsoluteFading;
   1.159 +	iFadeCountWin->ConstructL(*iGroup);
   1.160 +	iFadeCountWin->Activate();
   1.161 +	iFadeCountWin->AssignGC(*iGc);
   1.162 +	iGroup->SetCurrentWindow(iGroup->Child());
   1.163 +
   1.164 +	TRAP_IGNORE(TestL());
   1.165 +	iFadeCountWin->iComplete = ETrue;
   1.166 +	}
   1.167 +
   1.168 +void CFadeCountClient::Exit()
   1.169 +	{
   1.170 +	CActiveScheduler::Stop();
   1.171 +	}
   1.172 +
   1.173 +void CFadeCountClient::TestL()
   1.174 +	{
   1.175 +	// start condition - after absolute fade has been established
   1.176 +	TestFadeL(iWin1, EFalse, EFalse);
   1.177 +	TestFadeL(iWin2, EFalse, EFalse);
   1.178 +	TestFadeL(iFadeCountWin, EFalse, EFalse);
   1.179 +	
   1.180 +	// System fade and repeated fade
   1.181 +	// positive fade
   1.182 +	TInt ii;
   1.183 +	const TInt KFadeRepeat = 4;
   1.184 +	for (ii=0; ii<KFadeRepeat; ii++)
   1.185 +		{
   1.186 +		iWs.SetSystemFaded(ETrue);
   1.187 +		TestFadeL(iWin1, ETrue, ETrue);
   1.188 +		TestFadeL(iWin2, ETrue, ETrue);
   1.189 +		TestFadeL(iFadeCountWin, ETrue, ETrue);
   1.190 +		}
   1.191 +
   1.192 +	for (ii=KFadeRepeat-1; ii>=0; ii--)
   1.193 +		{
   1.194 +		iWs.SetSystemFaded(EFalse);
   1.195 +		TestFadeL(iWin1, EFalse, ii);
   1.196 +		TestFadeL(iWin2, EFalse, ii);
   1.197 +		TestFadeL(iFadeCountWin, EFalse, ii);
   1.198 +		}
   1.199 +
   1.200 +	// negative fade is not counted
   1.201 +	for (ii=0; ii<KFadeRepeat-1; ii++)
   1.202 +		{
   1.203 +		iWs.SetSystemFaded(EFalse);
   1.204 +		TestFadeL(iWin1, EFalse, EFalse);
   1.205 +		TestFadeL(iWin2, EFalse, EFalse);
   1.206 +		TestFadeL(iFadeCountWin, EFalse, EFalse);
   1.207 +		}
   1.208 +
   1.209 +	iWs.SetSystemFaded(ETrue);
   1.210 +	TestFadeL(iWin1, ETrue, ETrue);
   1.211 +	TestFadeL(iWin2, ETrue, ETrue);
   1.212 +	TestFadeL(iFadeCountWin, ETrue, ETrue);
   1.213 +
   1.214 +	iWs.SetSystemFaded(EFalse);
   1.215 +	TestFadeL(iWin1, EFalse, EFalse);
   1.216 +	TestFadeL(iWin2, EFalse, EFalse);
   1.217 +	TestFadeL(iFadeCountWin, EFalse, EFalse);
   1.218 +
   1.219 +	// child fading
   1.220 +	// nested
   1.221 +	iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
   1.222 +	TestFadeL(iWin1, EFalse, EFalse);
   1.223 +	TestFadeL(iWin2, ETrue, ETrue);
   1.224 +	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
   1.225 +	TestFadeL(iWin1, ETrue, ETrue);
   1.226 +	TestFadeL(iWin2, ETrue, ETrue);
   1.227 +	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
   1.228 +	TestFadeL(iWin1, EFalse, EFalse);
   1.229 +	TestFadeL(iWin2, EFalse, ETrue);
   1.230 +	iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
   1.231 +	TestFadeL(iWin1, EFalse, EFalse);
   1.232 +	TestFadeL(iWin2, EFalse, EFalse);
   1.233 +	
   1.234 +	// interlaced
   1.235 +	iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
   1.236 +	TestFadeL(iWin1, EFalse, EFalse);
   1.237 +	TestFadeL(iWin2, ETrue, ETrue);
   1.238 +	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
   1.239 +	TestFadeL(iWin1, ETrue, ETrue);
   1.240 +	TestFadeL(iWin2, ETrue, ETrue);
   1.241 +	iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
   1.242 +	TestFadeL(iWin1, ETrue, ETrue);
   1.243 +	TestFadeL(iWin2, EFalse, ETrue);
   1.244 +	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
   1.245 +	TestFadeL(iWin1, EFalse, EFalse);
   1.246 +	TestFadeL(iWin2, EFalse, EFalse);
   1.247 +
   1.248 +	iFadeCountWin->iPass = ETrue;
   1.249 +	}
   1.250 +
   1.251 +void CFadeCountClient::CreateTestWindowsL(CTWinBase &aParent)
   1.252 +	{
   1.253 +	iWin1 = new(ELeave) CTWin();
   1.254 +	iWin1->ConstructL(aParent);
   1.255 +	iWin1->SetSize(TSize(20,20));
   1.256 +
   1.257 +	iWin2 = new(ELeave) CTWin();
   1.258 +	iWin2->ConstructL(*iWin1);
   1.259 +	iWin2->SetSize(TSize(10,10));
   1.260 +
   1.261 +	iAbsoluteFading = IsAbsoluteFadingOnL();
   1.262 +	}
   1.263 +
   1.264 +TBool CFadeCountClient::IsAbsoluteFadingOnL()
   1.265 +	{
   1.266 +	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
   1.267 +	iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
   1.268 +	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
   1.269 +	TBool absoluteFading = !iWin1->BaseWin()->IsFaded();
   1.270 +	iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
   1.271 +	return absoluteFading;
   1.272 +	}
   1.273 +
   1.274 +void CFadeCountClient::TestL(TInt aCondition)
   1.275 +	{
   1.276 +	if (!aCondition)
   1.277 +		User::Leave(ETestFailed);
   1.278 +	}
   1.279 +
   1.280 +void CFadeCountClient::TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted)
   1.281 +	{
   1.282 +	TestL(!aWin->BaseWin()->IsFaded() == !(iAbsoluteFading ? aAbs : aCounted));
   1.283 +	}
   1.284 +
   1.285 +
   1.286 +GLDEF_C CTClient *CreateClientL()
   1.287 +	{
   1.288 +	return(new(ELeave) CFadeCountClient());
   1.289 +	}
   1.290 +	
   1.291 +GLDEF_C TInt E32Main()
   1.292 +	{
   1.293 +	return(TestLibStartUp(CreateClientL));
   1.294 +	}