1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappsurfacedwindow.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,106 @@
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_PSEUDOAPPSURFACEDWINDOW_H__
1.26 +#define __T_PSEUDOAPPSURFACEDWINDOW_H__
1.27 +
1.28 +#include <e32base.h>
1.29 +#include <gdi.h> //Display modes
1.30 +#include <iniparser.h>
1.31 +
1.32 +#include <graphics/surface.h> //TSurfaceId
1.33 +#include <graphics/surfacemanager.h> //RSurfaceManager
1.34 +
1.35 +#include "t_pseudoappwindow.h"
1.36 +#include "t_pseudoappanim.h"
1.37 +#include "t_pseudoapptestresults.h"
1.38 +#include "t_pseudoappshared.h"
1.39 +
1.40 +class CTestSurfacedWindow : public CBase
1.41 + {
1.42 +enum TWindowType
1.43 + {
1.44 + EUiWindow,
1.45 + EEcomWindow,
1.46 + EEmptyWindow
1.47 + };
1.48 +
1.49 +enum TApplicationType
1.50 + {
1.51 + ENoApp,
1.52 + EFbsBitmap,
1.53 + EOpenVG,
1.54 + EOpenGLes,
1.55 + EPerformance
1.56 + };
1.57 +
1.58 +public:
1.59 + static CTestSurfacedWindow* NewL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
1.60 + const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared);
1.61 + void UpdateL(SurfaceDetails& aSurfDetails);
1.62 + void RotateL(TInt aScreenNo, TInt aWindowNumber, const TSize& aScreenSize, TInt aFrameNumber);
1.63 + TBool RotationSupported();
1.64 + ~CTestSurfacedWindow();
1.65 +
1.66 +private:
1.67 + CTestSurfacedWindow(TInt aScreenNo, TInt aWindowNumber, CTPseudoAppShared& aPseudoAppShared);
1.68 + void ConstructL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
1.69 + const TDesC& aConfigFileName);
1.70 + void CreateSurfaceManager();
1.71 + void DestroySurfaceManager();
1.72 + void DestroySurface();
1.73 + CTestAnimation* CreateAnimationL(TInt aAppType, const TSize& aAnimSize, const TSize& aSurfaceSize,
1.74 + TPtrC& aBitmapFile, TDisplayMode aDisplayMode,
1.75 + TInt aHorizontalRate, TInt aVerticalRate, TPixelFormat aPixelFormat);
1.76 + void ImportWindowConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults);
1.77 + void ImportSurfaceConfigL(TInt aScreenNo, TInt aWindowNo, const TSize& aScreenSize, TSize& aSurfaceSize, TInt& aSurfacePresent, TPixelFormat& aPixelFormat);
1.78 + void ImportAnimConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, const TSize& aSurfaceSize, TPixelFormat aPixelFormat);
1.79 + CArrayFixFlat<TInt>* ImportWindowSizeChangeParamsL(const TDesC& tempStore);
1.80 + CArrayFixFlat<TInt>* ImportWindowPositionChangeParamsL(const TDesC& tempStore);
1.81 + CArrayFixFlat<TRect>* ImportWindowBitmapParamsL(const TDesC& tempStore, TInt aMultiBitmapUiFileSize, const TSize& aScreenSize);
1.82 + void BuildDimensionArrayL(const TSize& aScreenSize, TInt aFrameDuration, TInt aWindowChangeGeometry, TInt aWindowChangeBehavior);
1.83 + void ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize);
1.84 + void ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize);
1.85 + void ParamChangeOpacity(TInt aFrameCounter, TInt aFrameDuration, TDrawParameters& aDrawParams);
1.86 + void CalcNewWindowLocation(const TSize& aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams);
1.87 +
1.88 +private:
1.89 + CTestWindow* iTestWindow;
1.90 + CTestAnimation* iTestAnimation;
1.91 + CArrayFixFlat<TInt>* iSizeArray;
1.92 + CArrayFixFlat<TInt>* iPositionArray;
1.93 + CArrayFixFlat<TRect>* iLoadsarects;
1.94 + CArrayFixFlat<TDrawParameters>* iLoadsaParameters;
1.95 + TGceTestResults* iGceTestResults;
1.96 +
1.97 + TSurfaceId iSurfaceId;
1.98 + RSurfaceManager iSurfaceManager;
1.99 + RSurfaceUpdateSession iSurfaceUpdateSession;
1.100 + TInt iSurfaceScreenNumber;
1.101 + TInt iSurfaceBufferNumber;
1.102 + CTestSurfaceRasterizer* iSurfaceRasterizer;
1.103 + CIniData* iUtils;
1.104 + TInt iScreenNo;
1.105 + TInt iWindowNumber;
1.106 + CTPseudoAppShared& iPseudoAppShared;
1.107 + };
1.108 +
1.109 +#endif //__T_PSEUDOAPPSURFACEDWINDOW_H__