1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappcfbsbitmapanim.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,61 @@
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_PSEUDOAPPCFBSBITMAPANIM_H__
1.26 +#define __T_PSEUDOAPPCFBSBITMAPANIM_H__
1.27 +
1.28 +#include <gdi.h> //Display modes
1.29 +#include <w32std.h> //RWsSession, CWsScreenDevice etc
1.30 +
1.31 +#include "t_pseudoappanim.h"
1.32 +#include "t_pseudoappwindow.h"
1.33 +
1.34 +class CCFbsBitmapAnimation : public CTestAnimation
1.35 + {
1.36 +public:
1.37 + IMPORT_C static CCFbsBitmapAnimation* NewL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
1.38 + TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
1.39 + TPixelFormat aPixelFormat);
1.40 + IMPORT_C ~CCFbsBitmapAnimation();
1.41 + IMPORT_C void Rotate(TSize aScreenSize);
1.42 + IMPORT_C void DrawL(CTestSurfaceRasterizer* aSurfaceRasterizer, SurfaceDetails& aSurfDetails);
1.43 + IMPORT_C void SetFrameNumber(TInt aFrameNumber);
1.44 +
1.45 +private:
1.46 + void ConstructL(TDisplayMode aMode, const TSize& aAnimSize, const TSize& aSurfaceSize,
1.47 + TPtrC& aBitmapFile, TInt aHorizontalRate, TInt aVerticalRate,
1.48 + TPixelFormat aPixelFormat);
1.49 + CCFbsBitmapAnimation();
1.50 + void RedrawSurfaceL();
1.51 +
1.52 +protected:
1.53 + CFbsBitmap* iFullSurfaceBitmap;
1.54 + CFbsBitGc* iFullSurfaceBitmapGc;
1.55 + CFbsBitmapDevice* iFullSurfaceBitmapDevice;
1.56 +
1.57 + TPixelFormat iPixelFormat;
1.58 + TInt iFrameCounter;
1.59 + TInt iXPos;
1.60 + TInt iYPos;
1.61 + };
1.62 +
1.63 +#endif //__T_PSEUDOAPPCFBSBITMAPANIM_H__
1.64 +