os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappsurfacedwindow.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __T_PSEUDOAPPSURFACEDWINDOW_H__
sl@0
    23
#define __T_PSEUDOAPPSURFACEDWINDOW_H__
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <gdi.h>			//Display modes
sl@0
    27
#include <iniparser.h>
sl@0
    28
sl@0
    29
#include <graphics/surface.h>		//TSurfaceId
sl@0
    30
#include <graphics/surfacemanager.h>	//RSurfaceManager
sl@0
    31
sl@0
    32
#include "t_pseudoappwindow.h"
sl@0
    33
#include "t_pseudoappanim.h"
sl@0
    34
#include "t_pseudoapptestresults.h"
sl@0
    35
#include "t_pseudoappshared.h"
sl@0
    36
sl@0
    37
class CTestSurfacedWindow : public CBase
sl@0
    38
	{
sl@0
    39
enum TWindowType
sl@0
    40
	{
sl@0
    41
	EUiWindow,
sl@0
    42
	EEcomWindow,
sl@0
    43
	EEmptyWindow
sl@0
    44
	};
sl@0
    45
sl@0
    46
enum TApplicationType
sl@0
    47
	{
sl@0
    48
	ENoApp,
sl@0
    49
	EFbsBitmap,
sl@0
    50
	EOpenVG,
sl@0
    51
	EOpenGLes,
sl@0
    52
	EPerformance
sl@0
    53
	};
sl@0
    54
sl@0
    55
public:
sl@0
    56
	static CTestSurfacedWindow* NewL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    57
							const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared);
sl@0
    58
	void UpdateL(SurfaceDetails& aSurfDetails);
sl@0
    59
	void RotateL(TInt aScreenNo, TInt aWindowNumber, const TSize& aScreenSize, TInt aFrameNumber);
sl@0
    60
	TBool RotationSupported();
sl@0
    61
	~CTestSurfacedWindow();
sl@0
    62
sl@0
    63
private:
sl@0
    64
	CTestSurfacedWindow(TInt aScreenNo, TInt aWindowNumber, CTPseudoAppShared& aPseudoAppShared);
sl@0
    65
	void ConstructL(TInt aScreenNo, TInt aWindowNumber, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    66
							const TDesC& aConfigFileName);
sl@0
    67
	void CreateSurfaceManager();
sl@0
    68
	void DestroySurfaceManager();
sl@0
    69
	void DestroySurface();
sl@0
    70
	CTestAnimation*  CreateAnimationL(TInt aAppType, const TSize& aAnimSize, const TSize& aSurfaceSize,
sl@0
    71
                                     TPtrC& aBitmapFile, TDisplayMode aDisplayMode,
sl@0
    72
                                     TInt aHorizontalRate, TInt aVerticalRate, TPixelFormat aPixelFormat);
sl@0
    73
	void ImportWindowConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults);
sl@0
    74
	void ImportSurfaceConfigL(TInt aScreenNo, TInt aWindowNo, const TSize& aScreenSize, TSize& aSurfaceSize, TInt& aSurfacePresent, TPixelFormat& aPixelFormat);
sl@0
    75
	void ImportAnimConfigL(TInt aScreenNo, TInt aWindowNo, TDisplayMode aMode, const TSize& aSurfaceSize, TPixelFormat aPixelFormat);
sl@0
    76
	CArrayFixFlat<TInt>* ImportWindowSizeChangeParamsL(const TDesC& tempStore);
sl@0
    77
	CArrayFixFlat<TInt>* ImportWindowPositionChangeParamsL(const TDesC& tempStore);
sl@0
    78
	CArrayFixFlat<TRect>* ImportWindowBitmapParamsL(const TDesC& tempStore, TInt aMultiBitmapUiFileSize, const TSize& aScreenSize);
sl@0
    79
	void BuildDimensionArrayL(const TSize& aScreenSize, TInt aFrameDuration, TInt aWindowChangeGeometry, TInt aWindowChangeBehavior);
sl@0
    80
	void ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize);
sl@0
    81
	void ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter, TInt aFrameDuration, const TSize& aScreenSize);
sl@0
    82
	void ParamChangeOpacity(TInt aFrameCounter, TInt aFrameDuration, TDrawParameters& aDrawParams);
sl@0
    83
	void CalcNewWindowLocation(const TSize& aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams);
sl@0
    84
sl@0
    85
private:
sl@0
    86
	CTestWindow* iTestWindow;
sl@0
    87
	CTestAnimation* iTestAnimation;
sl@0
    88
	CArrayFixFlat<TInt>* iSizeArray;
sl@0
    89
	CArrayFixFlat<TInt>* iPositionArray;
sl@0
    90
	CArrayFixFlat<TRect>* iLoadsarects;
sl@0
    91
	CArrayFixFlat<TDrawParameters>* iLoadsaParameters;
sl@0
    92
	TGceTestResults* iGceTestResults;
sl@0
    93
sl@0
    94
	TSurfaceId iSurfaceId;
sl@0
    95
	RSurfaceManager iSurfaceManager;
sl@0
    96
	RSurfaceUpdateSession iSurfaceUpdateSession;
sl@0
    97
	TInt iSurfaceScreenNumber;
sl@0
    98
	TInt iSurfaceBufferNumber;
sl@0
    99
	CTestSurfaceRasterizer* iSurfaceRasterizer;
sl@0
   100
	CIniData* iUtils;
sl@0
   101
	TInt iScreenNo;
sl@0
   102
	TInt iWindowNumber;
sl@0
   103
	CTPseudoAppShared& iPseudoAppShared;
sl@0
   104
	};
sl@0
   105
sl@0
   106
#endif //__T_PSEUDOAPPSURFACEDWINDOW_H__