Update contrib.
1 // Copyright (c) 2006-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 // Tests the newly API function added to RWindow which enables/disables
16 // the usage of Off-Screen Bitmap (OSB).
17 // The test will draw squares with random colours on screen filling the
18 // whole drawable area. The drawing will start first with flickering screen
19 // and will switch to flicker free in 4 seconds.
26 @internalComponent - Internal Symbian test code
29 #include "TFLICKERFREE.H"
31 //===================================================
33 //===================================================
35 CBGWin::CBGWin(): CTWin()
43 void CBGWin::ConstructWin(TPoint aPos, TSize aSize, TBool aVisible)
46 SetUpL(aPos,iSize,TheClient->iGroup,*TheClient->iGc, aVisible);
47 BaseWin()->SetRequiredDisplayMode(EColor256);
53 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
55 TUint propW = iSize.iWidth/32;
56 TUint propH = iSize.iHeight/12;
58 for(TInt i = 0; i < iSize.iWidth ; i+=propW)
60 for(TInt j = 0; j < iSize.iHeight; j+=propH)
62 iGc->SetBrushColor(TRgb( (TInt)(Math::Random()%255), (TInt)(Math::Random()%255), (TInt)(Math::Random()%255) ));
63 iGc->DrawRect(TRect(i, j, i+propW-1, j+propH-1));
68 void CBGWin::EnableOSBd(TBool aState)
70 iWin.EnableOSB(aState);
73 //===================================================
74 // CFlickerTest Declaration
75 //===================================================
77 /* This function will be called periodically to draw the rects
79 void CTFlickerFree::TestFlickering()
81 for( int i = 0; i < 40; ++i)
83 // for the first 3 seconds draw with flicker
85 iBgWin->EnableOSBd(EFalse);
86 // for the next 3 seconds draw with flicker free
88 iBgWin->EnableOSBd(ETrue);
92 // this draws 20 frames per second for 4 seconds
97 CTFlickerFree::CTFlickerFree(CTestStep* aStep):
98 CTWsGraphicsBase(aStep)
102 CTFlickerFree::~CTFlickerFree()
107 void CTFlickerFree::ConstructL()
109 // get the size of the current client to assign it to the background window
110 TSize scrSize = TSize(TheClient->iScreen->SizeInPixels());
112 // construct the window in the background
113 iBgWin = new (ELeave) CBGWin();
114 iBgWin->ConstructWin(TPoint(0,0), scrSize, ETrue);
117 /* Sets the windowing environment, constructs the CPeriod object and
118 starts the CPeriod object.*/
119 void CTFlickerFree::RunTestCaseL(TInt aCurTestCase)
121 ((CTFlickerFreeStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
126 @SYMTestCaseID GRAPHICS-WSERV-0567
128 ((CTFlickerFreeStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0567"));
132 ((CTFlickerFreeStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
133 ((CTFlickerFreeStep*)iStep)->CloseTMSGraphicsStep();
136 ((CTFlickerFreeStep*)iStep)->RecordTestResultL();
139 __WS_CONSTRUCT_STEP__(FlickerFree)