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 SPRITEWIN_H sl@0: #define SPRITEWIN_H sl@0: sl@0: #include sl@0: #include "compwin.h" sl@0: sl@0: sl@0: _LIT8(KSpritedWindowType, "Sprited"); sl@0: sl@0: class CSpritedWin : public CCompWin sl@0: { sl@0: public: sl@0: static CSpritedWin* 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: ~CSpritedWin(); 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 ClearBitmapBackground(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 KSpritedWindowType; } sl@0: void DumpDetails(RFile & aFile, TInt aDepth); sl@0: sl@0: protected: sl@0: CSpritedWin(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: static TBool iEnabled; sl@0: static TBool iTransparent; sl@0: static TBool iRandomizePenStyle; sl@0: static TBool iRandomizeBrushStyle; sl@0: static TBool iRandomizeDrawMode; sl@0: static TBool iTransparentForegroundWindow; sl@0: static TInt iMaxRandomStepX; sl@0: static TInt iMaxRandomStepY; sl@0: static TInt iMaxRandomOffsetX; sl@0: static TInt iMaxRandomOffsetY; sl@0: sl@0: enum TValues sl@0: { sl@0: ENofSlides = 4, sl@0: ESpriteSzX = 64, sl@0: ESpriteSzY = 64, sl@0: ESpriteSzXHalf = ESpriteSzX / 2, sl@0: ESpriteSzYHalf = ESpriteSzY / 2, sl@0: EStepWidth = ESpriteSzXHalf / (ENofSlides+1), sl@0: EStepHeight = ESpriteSzYHalf / (ENofSlides+1), sl@0: ESlideDurMult = 100000, //duration multiplier (microseconds) sl@0: ESlideDurMaxTenthSec = 15, //max random sprite frame duration sl@0: EFrameBorderSenseMs = 10000 sl@0: }; sl@0: sl@0: RWsSprite iSprite; sl@0: CFbsBitmap* iSpriteContent [ENofSlides]; sl@0: CFbsBitmap* iSpriteMask [ENofSlides]; sl@0: CFbsBitmapDevice* iSpriteCntDevice [ENofSlides]; sl@0: CFbsBitmapDevice* iSpriteMskDevice [ENofSlides]; sl@0: struct TSpriteMember iSpriteDef [ENofSlides]; sl@0: TBool iConstructed; sl@0: sl@0: TRgb iBgColor; sl@0: CGraphicsContext::TPenStyle iPenStyle; sl@0: CGraphicsContext::TBrushStyle iBrushStyle; sl@0: CGraphicsContext::TDrawMode iDrawMode; sl@0: sl@0: TTimeIntervalMicroSeconds32 sl@0: iSlideDuration; //duration for a single slide in microseconds sl@0: sl@0: TUint32 iSpriteStartup; //time (in ticks) when sprite was activated sl@0: TInt iKernelTicksPeriod; //microseconds per tick sl@0: RBlankWindow* iForeWin; //transparent foreground window sl@0: }; sl@0: sl@0: sl@0: #endif // SPRITEWIN_H