1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_app1eng.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,102 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#ifndef __T_APP1_ENG_H__
1.26 +#define __T_APP1_ENG_H__
1.27 +
1.28 +#include <w32std.h>
1.29 +
1.30 +enum TApp1EngPanics
1.31 + {
1.32 + TApp1EngAlreadyStarted = 1,
1.33 + TApp1EngAlreadyStopped
1.34 + };
1.35 +
1.36 +
1.37 +class CTApp1Eng : public CTimer
1.38 + {
1.39 +
1.40 +public:
1.41 +
1.42 + // Construction & destruction
1.43 + static CTApp1Eng* NewL
1.44 + (
1.45 + RWsSession& aClient,
1.46 + CWsScreenDevice& aScreenDevice,
1.47 + RWindow& aWindow
1.48 + );
1.49 +
1.50 + ~CTApp1Eng();
1.51 +
1.52 +public:
1.53 +
1.54 + // Start and stop the drawing
1.55 + void StartDrawing();
1.56 + void StopDrawing();
1.57 +
1.58 + // Are we drawing
1.59 + inline TBool Drawing(){return iDrawing;}
1.60 +
1.61 +private:
1.62 +
1.63 + // Implement CTimer
1.64 + void RunL();
1.65 + void DoCancel();
1.66 +
1.67 +private:
1.68 +
1.69 + // private constructors - use NewL to construct a CTApp1Eng!
1.70 + CTApp1Eng
1.71 + (
1.72 + RWsSession& aClient,
1.73 + CWsScreenDevice& aScreenDevice,
1.74 + RWindow& aWindow
1.75 + );
1.76 +
1.77 + void ConstructL();
1.78 +
1.79 +private:
1.80 +
1.81 + // Window server handling
1.82 + RWsSession& iClient;
1.83 + RWindow& iWindow;
1.84 + CWsScreenDevice& iScreenDevice;
1.85 + CWindowGc * iGc;
1.86 +
1.87 + // Are we drawing
1.88 + TBool iDrawing;
1.89 + TBool iRotationFlag;
1.90 +
1.91 + TInt iFrameCount;
1.92 +
1.93 + RArray<TInt> iRotationList;
1.94 + RArray<TInt> iScrModeList;
1.95 + TInt iRotationTimer;
1.96 + TInt iRotationCount;
1.97 + TInt iIterations;
1.98 +
1.99 + RSemaphore iSemaphore;
1.100 + };
1.101 +
1.102 +#endif // __T_APP1_ENG_H__
1.103 +
1.104 +
1.105 +