os/graphics/windowing/windowserver/test/t_stress/inc/animatedwin.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/inc/animatedwin.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,123 @@
     1.4 +// Copyright (c) 2008-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 ANIMATED_H
    1.26 +#define ANIMATED_H
    1.27 +
    1.28 +#include <w32std.h>
    1.29 +#include "compwin.h"
    1.30 +#include "test_step_conf.h"
    1.31 +
    1.32 +_LIT8(KAnimatedWindowType, "Animated");
    1.33 +
    1.34 +class CAnimatedWin : public CCompWin
    1.35 +	{
    1.36 +public:
    1.37 +	static CAnimatedWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    1.38 +	static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
    1.39 +	static TBool IsEnabled() { return iEnabled; }
    1.40 +
    1.41 +	~CAnimatedWin();
    1.42 +	
    1.43 +	// from CCompWin
    1.44 +	void Redraw(const TRect& aRect);
    1.45 +	void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
    1.46 +	void SetSize(const TSize & aSize);
    1.47 +	void SetPos(const TPoint & aPos);
    1.48 +	virtual const TDesC8& TypeName() { return KAnimatedWindowType; }
    1.49 +	void DumpDetails(RFile & aFile, TInt aDepth);
    1.50 +	
    1.51 +protected:
    1.52 +	CAnimatedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    1.53 +	void ConstructL();
    1.54 +	
    1.55 +	// from CCompWin
    1.56 +	TBool QueryReadyForVerification();
    1.57 +
    1.58 +private:
    1.59 +	void SetAnimPos(const TPoint& aPos);
    1.60 +	void AppendTime(TDes& aTimeText,const TTime& aTime) const;
    1.61 +	
    1.62 +	static TBool iEnabled;
    1.63 +	static TBool iTransparent;
    1.64 +	static TBool iTransparentForegroundWindow;
    1.65 +	
    1.66 +private:
    1.67 +	class RStressAnim : public RAnim
    1.68 +	{ 
    1.69 +	public:
    1.70 +		RStressAnim (RAnimDll& aAnimDll);
    1.71 +		TInt Construct(const RWindowBase &aDevice, const TDesC8 &aParams);
    1.72 +		
    1.73 +		TInt RequestAnimThis(TInt aOpcode);
    1.74 +		TInt RequestAnimThis(TInt aOpcode, const TDesC8 &aParams);
    1.75 +			
    1.76 +		friend class CAnimatedWin;
    1.77 +	};
    1.78 +	
    1.79 +	enum TValues
    1.80 +	{
    1.81 +	ENofFrames = 2,
    1.82 +	EFrame1	   = 0,
    1.83 +	EFrame2	   = 1,
    1.84 +	EFrameSzX  = 64,
    1.85 +	EFrameSzY  = 64,
    1.86 +	EFrameSzXHalf = (EFrameSzX / 2),
    1.87 +	EFrameSzYHalf = (EFrameSzY / 2),
    1.88 +	EFrameSzXQtr = (EFrameSzX / 4),
    1.89 +	EFrameSzYQtr = (EFrameSzY / 4),
    1.90 +	EFrameSzXEgt = (EFrameSzX / 8),
    1.91 +	EFrameSzYEgt = (EFrameSzY / 8),
    1.92 +	EFrameDurMult = 100000,
    1.93 +	EFrameDurMaxTenthSec = 15,
    1.94 +	EWatchUrgentSync	= 100000,   	// 	1/10 sec
    1.95 +	EWatchLazySync		= 800000,	    // 	8/10 sec
    1.96 +	EWatchSafeGap		= 100000,
    1.97 +	EWatchMatchGap		= 900000
    1.98 +	};
    1.99 +
   1.100 +	RAnimDll				iAnimDll;
   1.101 +	RStressAnim*			iAnim;
   1.102 +
   1.103 +	CFbsBitmap* 			iAnimContent [ENofFrames];
   1.104 +	CFbsBitmap* 			iAnimMask;
   1.105 +
   1.106 +	CFbsFont*				iAnimFont; 				
   1.107 +	
   1.108 +	CFbsBitmapDevice*		iAnimCntDevice [ENofFrames];
   1.109 +	CFbsBitmapDevice*		iAnimMskDevice;
   1.110 +	
   1.111 +	TBool					iConstructed;
   1.112 +	
   1.113 +	TRgb					iBgColor;
   1.114 +
   1.115 +	TTimeIntervalMicroSeconds32
   1.116 +							iFrameDuration;
   1.117 +	
   1.118 +	TUint32 				iAnimStartup,
   1.119 +							iAnimLastKnownAction;
   1.120 +	TInt 					iKernelTicksPeriod;
   1.121 +	
   1.122 +	RBlankWindow*  			iForeWin; //transparent foreground window
   1.123 +	};
   1.124 +
   1.125 +
   1.126 +#endif // ANIMATED_H