Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // Testing counted or absolute fade
22 #include "../test/tlib/testbase.h"
24 const TInt ETestFailed = 1;
26 class CFadeCountClient;
28 class CFadeCountWindow : public CTTitledWindow
31 CFadeCountWindow(CFadeCountClient* aClient);
33 void ConstructL(CTWinBase &aParent);
36 void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
38 CFadeCountClient* iClient;
39 TBool iAbsoluteFading;
45 class CFadeCountClient : public CTClient
51 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
54 void TestL(TInt aCondition);
55 void CreateTestWindowsL(CTWinBase &aParent);
56 TBool IsAbsoluteFadingOnL();
57 void TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted);
60 CFadeCountWindow *iFadeCountWin;
63 TBool iAbsoluteFading;
68 // Individual window sub-classes
71 CFadeCountWindow::CFadeCountWindow(CFadeCountClient* aClient)
72 : CTTitledWindow(), iClient(aClient)
76 CFadeCountWindow::~CFadeCountWindow()
80 void CFadeCountWindow::ConstructL(CTWinBase &aParent)
82 CTTitledWindow::ConstructL(aParent);
84 TSize screenSize=Client()->iScreen->SizeInPixels();
85 TSize dif(screenSize-Size());
86 iWin.SetPosition(TPoint(dif.iWidth/2,dif.iHeight/2));
91 void CFadeCountWindow::Draw()
93 CTTitledWindow::Draw();
94 TInt lineSpacing = iFont->AscentInPixels()+3;
95 TPoint pos(3,iTitleHeight+lineSpacing);
96 iGc->DrawText(_L("Fade count tests"),pos);
98 pos.iY += lineSpacing;
100 iGc->DrawText(_L("ABSOLUTEFADING is ON"),pos);
102 iGc->DrawText(_L("ABSOLUTEFADING is OFF"),pos);
106 pos.iY += lineSpacing;
108 iGc->DrawText(_L("Tests have passed"),pos);
110 iGc->DrawText(_L("Tests have failed"),pos);
112 pos.iY += lineSpacing;
113 iGc->DrawText(_L("Press any key to exit"),pos);
117 void CFadeCountWindow::SetWindowSize()
123 void CFadeCountWindow::WinKeyL(const TKeyEvent &/*aKey*/,const TTime& )
130 // End of CFadeCountWindow class //
134 CFadeCountClient::CFadeCountClient()
138 CFadeCountClient::~CFadeCountClient()
142 delete iFadeCountWin;
145 void CFadeCountClient::ConstructL()
147 CTClient::ConstructL();
149 iGroup=new(ELeave) CTWindowGroup(this);
150 iGroup->ConstructL();
152 CreateTestWindowsL(*iGroup);
154 iFadeCountWin=new(ELeave) CFadeCountWindow(this);
155 iFadeCountWin->iAbsoluteFading = iAbsoluteFading;
156 iFadeCountWin->ConstructL(*iGroup);
157 iFadeCountWin->Activate();
158 iFadeCountWin->AssignGC(*iGc);
159 iGroup->SetCurrentWindow(iGroup->Child());
161 TRAP_IGNORE(TestL());
162 iFadeCountWin->iComplete = ETrue;
165 void CFadeCountClient::Exit()
167 CActiveScheduler::Stop();
170 void CFadeCountClient::TestL()
172 // start condition - after absolute fade has been established
173 TestFadeL(iWin1, EFalse, EFalse);
174 TestFadeL(iWin2, EFalse, EFalse);
175 TestFadeL(iFadeCountWin, EFalse, EFalse);
177 // System fade and repeated fade
180 const TInt KFadeRepeat = 4;
181 for (ii=0; ii<KFadeRepeat; ii++)
183 iWs.SetSystemFaded(ETrue);
184 TestFadeL(iWin1, ETrue, ETrue);
185 TestFadeL(iWin2, ETrue, ETrue);
186 TestFadeL(iFadeCountWin, ETrue, ETrue);
189 for (ii=KFadeRepeat-1; ii>=0; ii--)
191 iWs.SetSystemFaded(EFalse);
192 TestFadeL(iWin1, EFalse, ii);
193 TestFadeL(iWin2, EFalse, ii);
194 TestFadeL(iFadeCountWin, EFalse, ii);
197 // negative fade is not counted
198 for (ii=0; ii<KFadeRepeat-1; ii++)
200 iWs.SetSystemFaded(EFalse);
201 TestFadeL(iWin1, EFalse, EFalse);
202 TestFadeL(iWin2, EFalse, EFalse);
203 TestFadeL(iFadeCountWin, EFalse, EFalse);
206 iWs.SetSystemFaded(ETrue);
207 TestFadeL(iWin1, ETrue, ETrue);
208 TestFadeL(iWin2, ETrue, ETrue);
209 TestFadeL(iFadeCountWin, ETrue, ETrue);
211 iWs.SetSystemFaded(EFalse);
212 TestFadeL(iWin1, EFalse, EFalse);
213 TestFadeL(iWin2, EFalse, EFalse);
214 TestFadeL(iFadeCountWin, EFalse, EFalse);
218 iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
219 TestFadeL(iWin1, EFalse, EFalse);
220 TestFadeL(iWin2, ETrue, ETrue);
221 iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
222 TestFadeL(iWin1, ETrue, ETrue);
223 TestFadeL(iWin2, ETrue, ETrue);
224 iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
225 TestFadeL(iWin1, EFalse, EFalse);
226 TestFadeL(iWin2, EFalse, ETrue);
227 iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
228 TestFadeL(iWin1, EFalse, EFalse);
229 TestFadeL(iWin2, EFalse, EFalse);
232 iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
233 TestFadeL(iWin1, EFalse, EFalse);
234 TestFadeL(iWin2, ETrue, ETrue);
235 iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren);
236 TestFadeL(iWin1, ETrue, ETrue);
237 TestFadeL(iWin2, ETrue, ETrue);
238 iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
239 TestFadeL(iWin1, ETrue, ETrue);
240 TestFadeL(iWin2, EFalse, ETrue);
241 iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
242 TestFadeL(iWin1, EFalse, EFalse);
243 TestFadeL(iWin2, EFalse, EFalse);
245 iFadeCountWin->iPass = ETrue;
248 void CFadeCountClient::CreateTestWindowsL(CTWinBase &aParent)
250 iWin1 = new(ELeave) CTWin();
251 iWin1->ConstructL(aParent);
252 iWin1->SetSize(TSize(20,20));
254 iWin2 = new(ELeave) CTWin();
255 iWin2->ConstructL(*iWin1);
256 iWin2->SetSize(TSize(10,10));
258 iAbsoluteFading = IsAbsoluteFadingOnL();
261 TBool CFadeCountClient::IsAbsoluteFadingOnL()
263 iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
264 iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly);
265 iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
266 TBool absoluteFading = !iWin1->BaseWin()->IsFaded();
267 iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly);
268 return absoluteFading;
271 void CFadeCountClient::TestL(TInt aCondition)
274 User::Leave(ETestFailed);
277 void CFadeCountClient::TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted)
279 TestL(!aWin->BaseWin()->IsFaded() == !(iAbsoluteFading ? aAbs : aCounted));
283 GLDEF_C CTClient *CreateClientL()
285 return(new(ELeave) CFadeCountClient());
288 GLDEF_C TInt E32Main()
290 return(TestLibStartUp(CreateClientL));