sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef ANIMATED_H sl@0: #define ANIMATED_H sl@0: sl@0: #include sl@0: #include "compwin.h" sl@0: #include "test_step_conf.h" sl@0: sl@0: _LIT8(KAnimatedWindowType, "Animated"); sl@0: sl@0: class CAnimatedWin : public CCompWin sl@0: { sl@0: public: sl@0: static CAnimatedWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: static void LoadConfiguration(const MTestStepConfigurationContext* aContext); sl@0: static TBool IsEnabled() { return iEnabled; } sl@0: sl@0: ~CAnimatedWin(); sl@0: sl@0: // from CCompWin sl@0: void Redraw(const TRect& aRect); sl@0: void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin); sl@0: void SetSize(const TSize & aSize); sl@0: void SetPos(const TPoint & aPos); sl@0: virtual const TDesC8& TypeName() { return KAnimatedWindowType; } sl@0: void DumpDetails(RFile & aFile, TInt aDepth); sl@0: sl@0: protected: sl@0: CAnimatedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: void ConstructL(); sl@0: sl@0: // from CCompWin sl@0: TBool QueryReadyForVerification(); sl@0: sl@0: private: sl@0: void SetAnimPos(const TPoint& aPos); sl@0: void AppendTime(TDes& aTimeText,const TTime& aTime) const; sl@0: sl@0: static TBool iEnabled; sl@0: static TBool iTransparent; sl@0: static TBool iTransparentForegroundWindow; sl@0: sl@0: private: sl@0: class RStressAnim : public RAnim sl@0: { sl@0: public: sl@0: RStressAnim (RAnimDll& aAnimDll); sl@0: TInt Construct(const RWindowBase &aDevice, const TDesC8 &aParams); sl@0: sl@0: TInt RequestAnimThis(TInt aOpcode); sl@0: TInt RequestAnimThis(TInt aOpcode, const TDesC8 &aParams); sl@0: sl@0: friend class CAnimatedWin; sl@0: }; sl@0: sl@0: enum TValues sl@0: { sl@0: ENofFrames = 2, sl@0: EFrame1 = 0, sl@0: EFrame2 = 1, sl@0: EFrameSzX = 64, sl@0: EFrameSzY = 64, sl@0: EFrameSzXHalf = (EFrameSzX / 2), sl@0: EFrameSzYHalf = (EFrameSzY / 2), sl@0: EFrameSzXQtr = (EFrameSzX / 4), sl@0: EFrameSzYQtr = (EFrameSzY / 4), sl@0: EFrameSzXEgt = (EFrameSzX / 8), sl@0: EFrameSzYEgt = (EFrameSzY / 8), sl@0: EFrameDurMult = 100000, sl@0: EFrameDurMaxTenthSec = 15, sl@0: EWatchUrgentSync = 100000, // 1/10 sec sl@0: EWatchLazySync = 800000, // 8/10 sec sl@0: EWatchSafeGap = 100000, sl@0: EWatchMatchGap = 900000 sl@0: }; sl@0: sl@0: RAnimDll iAnimDll; sl@0: RStressAnim* iAnim; sl@0: sl@0: CFbsBitmap* iAnimContent [ENofFrames]; sl@0: CFbsBitmap* iAnimMask; sl@0: sl@0: CFbsFont* iAnimFont; sl@0: sl@0: CFbsBitmapDevice* iAnimCntDevice [ENofFrames]; sl@0: CFbsBitmapDevice* iAnimMskDevice; sl@0: sl@0: TBool iConstructed; sl@0: sl@0: TRgb iBgColor; sl@0: sl@0: TTimeIntervalMicroSeconds32 sl@0: iFrameDuration; sl@0: sl@0: TUint32 iAnimStartup, sl@0: iAnimLastKnownAction; sl@0: TInt iKernelTicksPeriod; sl@0: sl@0: RBlankWindow* iForeWin; //transparent foreground window sl@0: }; sl@0: sl@0: sl@0: #endif // ANIMATED_H