os/graphics/windowing/windowserver/test/t_integ/inc/t_app1eng.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __T_APP1_ENG_H__
sl@0
    23
#define __T_APP1_ENG_H__
sl@0
    24
sl@0
    25
#include <w32std.h>
sl@0
    26
sl@0
    27
enum TApp1EngPanics
sl@0
    28
    {
sl@0
    29
    TApp1EngAlreadyStarted = 1,
sl@0
    30
	TApp1EngAlreadyStopped
sl@0
    31
    };
sl@0
    32
sl@0
    33
sl@0
    34
class CTApp1Eng : public CTimer	
sl@0
    35
	{
sl@0
    36
sl@0
    37
public:
sl@0
    38
sl@0
    39
	// Construction & destruction
sl@0
    40
	static CTApp1Eng* NewL 
sl@0
    41
		(
sl@0
    42
		RWsSession& aClient, 
sl@0
    43
		CWsScreenDevice& aScreenDevice, 
sl@0
    44
		RWindow& aWindow
sl@0
    45
		);
sl@0
    46
sl@0
    47
	~CTApp1Eng();	
sl@0
    48
sl@0
    49
public:
sl@0
    50
sl@0
    51
	// Start and stop the drawing
sl@0
    52
	void StartDrawing();
sl@0
    53
	void StopDrawing();
sl@0
    54
sl@0
    55
	// Are we drawing
sl@0
    56
	inline TBool Drawing(){return iDrawing;}
sl@0
    57
sl@0
    58
private:
sl@0
    59
sl@0
    60
	// Implement CTimer
sl@0
    61
	void RunL();
sl@0
    62
	void DoCancel();
sl@0
    63
sl@0
    64
private:
sl@0
    65
sl@0
    66
    // private constructors - use NewL to construct a CTApp1Eng!
sl@0
    67
    CTApp1Eng
sl@0
    68
        (
sl@0
    69
		RWsSession& aClient, 
sl@0
    70
		CWsScreenDevice& aScreenDevice,
sl@0
    71
		RWindow& aWindow
sl@0
    72
        );
sl@0
    73
sl@0
    74
    void ConstructL();	
sl@0
    75
sl@0
    76
private:
sl@0
    77
sl@0
    78
	// Window server handling
sl@0
    79
	RWsSession& iClient;
sl@0
    80
	RWindow& iWindow;
sl@0
    81
	CWsScreenDevice& iScreenDevice;
sl@0
    82
	CWindowGc * iGc;
sl@0
    83
sl@0
    84
	// Are we drawing
sl@0
    85
	TBool iDrawing;
sl@0
    86
	TBool iRotationFlag;
sl@0
    87
	
sl@0
    88
	TInt iFrameCount;
sl@0
    89
	
sl@0
    90
	RArray<TInt> iRotationList;
sl@0
    91
	RArray<TInt> iScrModeList;
sl@0
    92
	TInt iRotationTimer;
sl@0
    93
	TInt iRotationCount;
sl@0
    94
	TInt iIterations;
sl@0
    95
	
sl@0
    96
	RSemaphore iSemaphore;
sl@0
    97
	};
sl@0
    98
sl@0
    99
#endif // __T_APP1_ENG_H__
sl@0
   100
sl@0
   101
sl@0
   102