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