os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappwindow.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef __T_PSEUDOAPPWINDOW_H__
    23 #define __T_PSEUDOAPPWINDOW_H__
    24 
    25 #include <w32std.h>		//RWsSession, CWsScreenDevice etc
    26 
    27 #include "t_pseudoapptestresults.h"
    28 
    29 enum TWindowChange
    30 	{
    31 	ENoChange = 0,
    32 	EIncremental,
    33 	ECyclic
    34 	};
    35 
    36 enum TWindowChangeType
    37 	{
    38 	ENoChanges,
    39 	EWindowSize,
    40 	EWindowPosition,
    41 	EWindowPositionAndSize,
    42 	EWindowPositionAndSizeWithOpacity
    43 	};
    44 
    45 typedef enum TPixelFormat
    46 	{
    47 	EFormatRgb,
    48 	EFormatYuv
    49 	}TPixelFormat;
    50 
    51 typedef enum TParamChange
    52 	{
    53 	ENoParamChange,
    54 	EFirstFrame,
    55 	EBitmapScale,
    56 	ESizeChange,
    57 	EPositionChange,
    58 	EExtentChange,
    59 	EOpacityChange
    60 	} TParamChange;
    61 
    62 class TDrawParameters
    63 	{
    64 public:
    65 	TDrawParameters();
    66 	~TDrawParameters();
    67 	TBool operator==(const TDrawParameters& x) const;
    68 
    69 public:
    70 	TBool iRedraw;
    71 	TInt iBitmapScale;
    72 	TInt iBitmapAlpha;
    73 	TSize iWindowSize;
    74 	TPoint iWindowPos;
    75 	};
    76 
    77 class CTestWindow : public CBase
    78 	{
    79 public:
    80 	inline RWindow* Window() {return &iWindow;};
    81 	IMPORT_C virtual void Rotate(TSize aScreenSize);
    82 	IMPORT_C virtual void DrawL();
    83 	~CTestWindow();
    84 
    85 	void SetPosition();
    86 	void SetSize();
    87 	void SetExtent();
    88 
    89 protected:
    90 	IMPORT_C CTestWindow(TInt aScreenNo, TDisplayMode aMode);
    91 
    92 private:
    93 	void ConstructL(TInt aScreenNo, TDisplayMode aMode);
    94 
    95 protected:
    96 	RWsSession        iSession;
    97 	CWsScreenDevice*  iScreen;
    98 	CWindowGc*        iWindowGc;
    99 	RWindow           iWindow;
   100 	RWindowGroup      iGroup;
   101 	TDisplayMode      iMode;
   102 	CArrayFixFlat<TDrawParameters>* iLoadsaParameters;
   103 	TGceTestResults* iGceTestResults;
   104 	TInt iFrameCounter;
   105 	};
   106 
   107 class CTestEmptyWindow : public CTestWindow
   108 	{
   109 public:
   110 	IMPORT_C static CTestEmptyWindow* NewL(TInt aScreen, TDisplayMode aMode, const TSize& aScreenSize);
   111 	IMPORT_C virtual void Rotate(TSize aScreenSize);
   112 	IMPORT_C virtual void DrawL();
   113 	~CTestEmptyWindow();
   114 
   115 protected:
   116 	IMPORT_C CTestEmptyWindow(TInt aScreenNo, TDisplayMode aMode);
   117 
   118 private:
   119 	void ConstructL(const TSize& aScreenSize);
   120 
   121 private:
   122 	TInt iWindowDrawn;
   123 	};
   124 
   125 class CTestEcomWindow : public CTestWindow
   126 	{
   127 public:
   128 	IMPORT_C static CTestEcomWindow* NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapEcomFile,
   129 	                                      TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
   130 	                                      CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
   131 	~CTestEcomWindow();
   132 	IMPORT_C virtual void Rotate(TSize aScreenSize);
   133 	IMPORT_C virtual void DrawL();
   134 
   135 
   136 protected:
   137 	IMPORT_C CTestEcomWindow(TInt aScreenNo, TDisplayMode aMode);
   138 
   139 private:
   140 	void ConstructL(const TPtrC& aMultiBitmapEcomFile, TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
   141 	                CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
   142 	TParamChange Redraw();
   143 
   144 private:
   145 	TPtrC iMultiBitmapEcomFile;
   146 	TInt iMultiBitmapEcomFileSize;
   147 	TInt iBitmapCounter;
   148 	};
   149 
   150 class CTestUiWindow : public CTestWindow
   151 	{
   152 public:
   153 	IMPORT_C static CTestUiWindow* NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize,
   154 	                             CArrayFixFlat<TRect>* aRectArray, TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency,
   155 	                             TGceTestResults* aGceTestResults,
   156 	                             CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
   157 
   158 	IMPORT_C virtual void Rotate(const TSize& aScreenSize);
   159 	IMPORT_C virtual void DrawL();
   160 	~CTestUiWindow();
   161 
   162 protected:
   163 	IMPORT_C CTestUiWindow(TInt aScreenNo, TDisplayMode aMode);
   164 
   165 private:
   166 	void ConstructL(const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize, CArrayFixFlat<TRect>* aRectArray,
   167 	                TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency, TGceTestResults* aGceTestResults,
   168 	                CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
   169 	TParamChange Redraw();
   170 	void CalcNewWindowExtent(TSize aScreenSize, TInt aIncrement, TInt aDirection);
   171 	void SetBitmapTransparency(CFbsBitmap* aBitmap, TUint8 aAlphaValue, TInt aAlphaByteLocation);
   172 
   173 	void ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter);
   174 	void ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter);
   175 	void CalcNewWindowLocation(TSize aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams);
   176 	void SetBitmapAlpha(CFbsBitmap* aBitmap);
   177 
   178 protected:
   179 	TBool iSimUiDrawn;
   180 	TPtrC iMultiBitmapUiFile;
   181 	TInt iMultiBitmapUiFileSize;
   182 	CArrayFixFlat<TRect>* iRectArray;
   183 	TInt iMultiBitmapUiFileTransparency;
   184 	TInt iFrameDuration;
   185 	};
   186 
   187 #endif //__T_PSEUDOAPPWINDOW_H__