sl@0: // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // TFADECOUNT.CPP sl@0: // Testing counted or absolute fade sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include "W32STD.H" sl@0: #include sl@0: #include "../test/tlib/testbase.h" sl@0: sl@0: const TInt ETestFailed = 1; sl@0: sl@0: class CFadeCountClient; sl@0: sl@0: class CFadeCountWindow : public CTTitledWindow sl@0: { sl@0: public: sl@0: CFadeCountWindow(CFadeCountClient* aClient); sl@0: ~CFadeCountWindow(); sl@0: void ConstructL(CTWinBase &aParent); sl@0: void Draw(); sl@0: void SetWindowSize(); sl@0: void WinKeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: public: sl@0: CFadeCountClient* iClient; sl@0: TBool iAbsoluteFading; sl@0: TBool iPass; sl@0: TBool iComplete; sl@0: }; sl@0: sl@0: sl@0: class CFadeCountClient : public CTClient sl@0: { sl@0: public: sl@0: CFadeCountClient(); sl@0: ~CFadeCountClient(); sl@0: void ConstructL(); sl@0: void KeyL(const TKeyEvent &aKey,const TTime &aTime); sl@0: void Exit(); sl@0: void TestL(); sl@0: void TestL(TInt aCondition); sl@0: void CreateTestWindowsL(CTWinBase &aParent); sl@0: TBool IsAbsoluteFadingOnL(); sl@0: void TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted); sl@0: private: sl@0: TInt iNum; sl@0: CFadeCountWindow *iFadeCountWin; sl@0: CTWin* iWin1; sl@0: CTWin* iWin2; sl@0: TBool iAbsoluteFading; sl@0: }; sl@0: sl@0: sl@0: // sl@0: // Individual window sub-classes sl@0: // sl@0: sl@0: CFadeCountWindow::CFadeCountWindow(CFadeCountClient* aClient) sl@0: : CTTitledWindow(), iClient(aClient) sl@0: { sl@0: } sl@0: sl@0: CFadeCountWindow::~CFadeCountWindow() sl@0: { sl@0: } sl@0: sl@0: void CFadeCountWindow::ConstructL(CTWinBase &aParent) sl@0: { sl@0: CTTitledWindow::ConstructL(aParent); sl@0: SetWindowSize(); sl@0: TSize screenSize=Client()->iScreen->SizeInPixels(); sl@0: TSize dif(screenSize-Size()); sl@0: iWin.SetPosition(TPoint(dif.iWidth/2,dif.iHeight/2)); sl@0: sl@0: Invalidate(); sl@0: } sl@0: sl@0: void CFadeCountWindow::Draw() sl@0: { sl@0: CTTitledWindow::Draw(); sl@0: TInt lineSpacing = iFont->AscentInPixels()+3; sl@0: TPoint pos(3,iTitleHeight+lineSpacing); sl@0: iGc->DrawText(_L("Fade count tests"),pos); sl@0: sl@0: pos.iY += lineSpacing; sl@0: if (iAbsoluteFading) sl@0: iGc->DrawText(_L("ABSOLUTEFADING is ON"),pos); sl@0: else sl@0: iGc->DrawText(_L("ABSOLUTEFADING is OFF"),pos); sl@0: sl@0: if (iComplete) sl@0: { sl@0: pos.iY += lineSpacing; sl@0: if (iPass) sl@0: iGc->DrawText(_L("Tests have passed"),pos); sl@0: else sl@0: iGc->DrawText(_L("Tests have failed"),pos); sl@0: sl@0: pos.iY += lineSpacing; sl@0: iGc->DrawText(_L("Press any key to exit"),pos); sl@0: } sl@0: } sl@0: sl@0: void CFadeCountWindow::SetWindowSize() sl@0: { sl@0: TSize size(400,200); sl@0: SetSize(size); sl@0: } sl@0: sl@0: void CFadeCountWindow::WinKeyL(const TKeyEvent &/*aKey*/,const TTime& ) sl@0: { sl@0: iClient->Exit(); sl@0: } sl@0: sl@0: sl@0: // sl@0: // End of CFadeCountWindow class // sl@0: // sl@0: sl@0: sl@0: CFadeCountClient::CFadeCountClient() sl@0: { sl@0: } sl@0: sl@0: CFadeCountClient::~CFadeCountClient() sl@0: { sl@0: delete iWin2; sl@0: delete iWin1; sl@0: delete iFadeCountWin; sl@0: } sl@0: sl@0: void CFadeCountClient::ConstructL() sl@0: { sl@0: CTClient::ConstructL(); sl@0: sl@0: iGroup=new(ELeave) CTWindowGroup(this); sl@0: iGroup->ConstructL(); sl@0: sl@0: CreateTestWindowsL(*iGroup); sl@0: sl@0: iFadeCountWin=new(ELeave) CFadeCountWindow(this); sl@0: iFadeCountWin->iAbsoluteFading = iAbsoluteFading; sl@0: iFadeCountWin->ConstructL(*iGroup); sl@0: iFadeCountWin->Activate(); sl@0: iFadeCountWin->AssignGC(*iGc); sl@0: iGroup->SetCurrentWindow(iGroup->Child()); sl@0: sl@0: TRAP_IGNORE(TestL()); sl@0: iFadeCountWin->iComplete = ETrue; sl@0: } sl@0: sl@0: void CFadeCountClient::Exit() sl@0: { sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: sl@0: void CFadeCountClient::TestL() sl@0: { sl@0: // start condition - after absolute fade has been established sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, EFalse, EFalse); sl@0: TestFadeL(iFadeCountWin, EFalse, EFalse); sl@0: sl@0: // System fade and repeated fade sl@0: // positive fade sl@0: TInt ii; sl@0: const TInt KFadeRepeat = 4; sl@0: for (ii=0; ii=0; ii--) sl@0: { sl@0: iWs.SetSystemFaded(EFalse); sl@0: TestFadeL(iWin1, EFalse, ii); sl@0: TestFadeL(iWin2, EFalse, ii); sl@0: TestFadeL(iFadeCountWin, EFalse, ii); sl@0: } sl@0: sl@0: // negative fade is not counted sl@0: for (ii=0; iiWinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, ETrue, ETrue); sl@0: iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, ETrue, ETrue); sl@0: TestFadeL(iWin2, ETrue, ETrue); sl@0: iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, EFalse, ETrue); sl@0: iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, EFalse, EFalse); sl@0: sl@0: // interlaced sl@0: iWin2->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, ETrue, ETrue); sl@0: iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, ETrue, ETrue); sl@0: TestFadeL(iWin2, ETrue, ETrue); sl@0: iWin2->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, ETrue, ETrue); sl@0: TestFadeL(iWin2, EFalse, ETrue); sl@0: iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren); sl@0: TestFadeL(iWin1, EFalse, EFalse); sl@0: TestFadeL(iWin2, EFalse, EFalse); sl@0: sl@0: iFadeCountWin->iPass = ETrue; sl@0: } sl@0: sl@0: void CFadeCountClient::CreateTestWindowsL(CTWinBase &aParent) sl@0: { sl@0: iWin1 = new(ELeave) CTWin(); sl@0: iWin1->ConstructL(aParent); sl@0: iWin1->SetSize(TSize(20,20)); sl@0: sl@0: iWin2 = new(ELeave) CTWin(); sl@0: iWin2->ConstructL(*iWin1); sl@0: iWin2->SetSize(TSize(10,10)); sl@0: sl@0: iAbsoluteFading = IsAbsoluteFadingOnL(); sl@0: } sl@0: sl@0: TBool CFadeCountClient::IsAbsoluteFadingOnL() sl@0: { sl@0: iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly); sl@0: iWin1->WinTreeNode()->SetFaded(ETrue, RWindowTreeNode::EFadeWindowOnly); sl@0: iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly); sl@0: TBool absoluteFading = !iWin1->BaseWin()->IsFaded(); sl@0: iWin1->WinTreeNode()->SetFaded(EFalse, RWindowTreeNode::EFadeWindowOnly); sl@0: return absoluteFading; sl@0: } sl@0: sl@0: void CFadeCountClient::TestL(TInt aCondition) sl@0: { sl@0: if (!aCondition) sl@0: User::Leave(ETestFailed); sl@0: } sl@0: sl@0: void CFadeCountClient::TestFadeL(CTWin* aWin, TBool aAbs, TBool aCounted) sl@0: { sl@0: TestL(!aWin->BaseWin()->IsFaded() == !(iAbsoluteFading ? aAbs : aCounted)); sl@0: } sl@0: sl@0: sl@0: GLDEF_C CTClient *CreateClientL() sl@0: { sl@0: return(new(ELeave) CFadeCountClient()); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: return(TestLibStartUp(CreateClientL)); sl@0: }