os/graphics/windowing/windowserver/test/tauto/TFLICKERFREE.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) 2006-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
// TMULSCREENS.CPP
sl@0
    15
// Tests the newly API function added to RWindow which enables/disables
sl@0
    16
// the usage of Off-Screen Bitmap (OSB).
sl@0
    17
// The test will draw squares with random colours on screen filling the
sl@0
    18
// whole drawable area. The drawing will start first with flickering screen
sl@0
    19
// and will switch to flicker free in 4 seconds.
sl@0
    20
// 
sl@0
    21
//
sl@0
    22
sl@0
    23
/**
sl@0
    24
 @file
sl@0
    25
 @test
sl@0
    26
 @internalComponent - Internal Symbian test code
sl@0
    27
*/
sl@0
    28
sl@0
    29
#include "TFLICKERFREE.H"
sl@0
    30
sl@0
    31
//===================================================
sl@0
    32
// CBGWin Declaration
sl@0
    33
//===================================================
sl@0
    34
sl@0
    35
CBGWin::CBGWin(): CTWin()
sl@0
    36
	{
sl@0
    37
	}
sl@0
    38
sl@0
    39
CBGWin::~CBGWin()
sl@0
    40
	{
sl@0
    41
	}
sl@0
    42
sl@0
    43
void CBGWin::ConstructWin(TPoint aPos, TSize aSize, TBool aVisible)
sl@0
    44
	{
sl@0
    45
	iSize = aSize;
sl@0
    46
	SetUpL(aPos,iSize,TheClient->iGroup,*TheClient->iGc, aVisible);
sl@0
    47
	BaseWin()->SetRequiredDisplayMode(EColor256);
sl@0
    48
	}
sl@0
    49
sl@0
    50
void CBGWin::Draw()
sl@0
    51
	{
sl@0
    52
	iGc->Clear();
sl@0
    53
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
    54
sl@0
    55
	TUint propW = iSize.iWidth/32;
sl@0
    56
	TUint propH = iSize.iHeight/12;
sl@0
    57
sl@0
    58
	for(TInt i = 0; i < iSize.iWidth ; i+=propW)
sl@0
    59
		{
sl@0
    60
		for(TInt j = 0; j < iSize.iHeight; j+=propH)
sl@0
    61
			{
sl@0
    62
			iGc->SetBrushColor(TRgb( (TInt)(Math::Random()%255), (TInt)(Math::Random()%255), (TInt)(Math::Random()%255) ));
sl@0
    63
			iGc->DrawRect(TRect(i, j, i+propW-1, j+propH-1));
sl@0
    64
			}
sl@0
    65
		}
sl@0
    66
	}
sl@0
    67
sl@0
    68
void CBGWin::EnableOSBd(TBool aState)
sl@0
    69
	{
sl@0
    70
	iWin.EnableOSB(aState);
sl@0
    71
	}
sl@0
    72
sl@0
    73
//===================================================
sl@0
    74
// CFlickerTest Declaration
sl@0
    75
//===================================================
sl@0
    76
sl@0
    77
/* This function will be called periodically to draw the rects
sl@0
    78
   on screen.*/
sl@0
    79
void CTFlickerFree::TestFlickering()
sl@0
    80
	{
sl@0
    81
	for( int i = 0; i < 40; ++i)
sl@0
    82
		{
sl@0
    83
		// for the first 3 seconds draw with flicker
sl@0
    84
		if(i < 20 )
sl@0
    85
			iBgWin->EnableOSBd(EFalse);
sl@0
    86
		// for the next 3 seconds draw with flicker free
sl@0
    87
		else if(i >=20 )
sl@0
    88
			iBgWin->EnableOSBd(ETrue);
sl@0
    89
sl@0
    90
		iBgWin->DrawNow();
sl@0
    91
sl@0
    92
		// this draws 20 frames per second for 4 seconds
sl@0
    93
		User::After(50000);
sl@0
    94
		}
sl@0
    95
	}
sl@0
    96
sl@0
    97
CTFlickerFree::CTFlickerFree(CTestStep* aStep):
sl@0
    98
	CTWsGraphicsBase(aStep)
sl@0
    99
	{
sl@0
   100
	}
sl@0
   101
sl@0
   102
CTFlickerFree::~CTFlickerFree()
sl@0
   103
	{
sl@0
   104
	delete iBgWin;
sl@0
   105
	}
sl@0
   106
sl@0
   107
void CTFlickerFree::ConstructL()
sl@0
   108
	{
sl@0
   109
	// get the size of the current client to assign it to the background window
sl@0
   110
	TSize scrSize = TSize(TheClient->iScreen->SizeInPixels());
sl@0
   111
sl@0
   112
	// construct the window in the background
sl@0
   113
	iBgWin = new (ELeave) CBGWin();
sl@0
   114
	iBgWin->ConstructWin(TPoint(0,0), scrSize, ETrue);
sl@0
   115
	}
sl@0
   116
sl@0
   117
/* Sets the windowing environment, constructs the CPeriod object and
sl@0
   118
	starts the CPeriod object.*/
sl@0
   119
void CTFlickerFree::RunTestCaseL(TInt aCurTestCase)
sl@0
   120
	{
sl@0
   121
	((CTFlickerFreeStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
   122
	switch(aCurTestCase)
sl@0
   123
		{
sl@0
   124
		case 1:
sl@0
   125
/**
sl@0
   126
@SYMTestCaseID		GRAPHICS-WSERV-0567
sl@0
   127
*/
sl@0
   128
			((CTFlickerFreeStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0567"));
sl@0
   129
			TestFlickering();
sl@0
   130
			break;
sl@0
   131
		default:
sl@0
   132
			((CTFlickerFreeStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
   133
			((CTFlickerFreeStep*)iStep)->CloseTMSGraphicsStep();
sl@0
   134
			TestComplete();
sl@0
   135
		}
sl@0
   136
	((CTFlickerFreeStep*)iStep)->RecordTestResultL();
sl@0
   137
	}
sl@0
   138
sl@0
   139
__WS_CONSTRUCT_STEP__(FlickerFree)