1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_dsaappeng.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,118 @@
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_DSA_APP_ENG_H__
1.26 +#define __T_DSA_APP_ENG_H__
1.27 +
1.28 +// INCLUDES
1.29 +#include <w32std.h>
1.30 +
1.31 +class CTPerfData;
1.32 +
1.33 +// ENUMERATIONS
1.34 +
1.35 +enum DirScrAccEngPanics
1.36 + {
1.37 + DirScrAccEngAlreadyStarted = 1,
1.38 + DirScrAccEngAlreadyStopped
1.39 + };
1.40 +
1.41 +class CTDsaAppEng : public CTimer, public MDirectScreenAccess
1.42 + {
1.43 +
1.44 +public:
1.45 +
1.46 + // Construction & destruction
1.47 + static CTDsaAppEng* NewL
1.48 + (
1.49 + RWsSession& aClient,
1.50 + CWsScreenDevice& aScreenDevice,
1.51 + RWindow& aWindow
1.52 + );
1.53 +
1.54 + ~CTDsaAppEng();
1.55 +
1.56 +public:
1.57 +
1.58 + // Start and stop the drawing
1.59 + void StartDrawing();
1.60 + void StopDrawing();
1.61 +
1.62 + // Are we drawing
1.63 + inline TBool Drawing(){return iDrawing;}
1.64 +
1.65 +private:
1.66 +
1.67 + // Implement MDirectScreenAccess
1.68 + void Restart(RDirectScreenAccess::TTerminationReasons aReason);
1.69 + void AbortNow(RDirectScreenAccess::TTerminationReasons aReason);
1.70 +
1.71 +private:
1.72 +
1.73 + // Implement CTimer
1.74 + void RunL();
1.75 + void DoCancel();
1.76 +
1.77 +private:
1.78 +
1.79 + // private constructors - use NewL to construct a CTDsaAppEng!
1.80 + CTDsaAppEng
1.81 + (
1.82 + RWsSession& aClient,
1.83 + CWsScreenDevice& aScreenDevice,
1.84 + RWindow& aWindow
1.85 + );
1.86 +
1.87 + void ConstructL();
1.88 + void CreateTestFileL(const TDesC& aFileName);
1.89 + void WriteResultsL(const TDesC& aFileName);
1.90 +
1.91 +private:
1.92 +
1.93 + // Window server handling
1.94 + RWsSession& iClient;
1.95 + CWsScreenDevice& iScreenDevice;
1.96 + RWindow& iWindow;
1.97 +
1.98 + // Direct Screen Access
1.99 + CDirectScreenAccess* iDirectScreenAccess;
1.100 + CFbsBitGc* iGc;
1.101 + RRegion* iRegion;
1.102 +
1.103 + CTPerfData * iPerfData;
1.104 +
1.105 + // Are we drawing
1.106 + TBool iDrawing;
1.107 +
1.108 + TInt iFrameCount;
1.109 + TInt iFinishTesting;
1.110 + TInt iCounterFrequency;
1.111 + TUint32 iPrevCounter;
1.112 +
1.113 + TInt iPrevRotation;
1.114 + TInt iRotationAbortCount;
1.115 +
1.116 + RSemaphore iSemaphore;
1.117 + };
1.118 +
1.119 +#endif // __T_DSA_APP_ENG_H__
1.120 +
1.121 +