1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappwindow.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,187 @@
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_PSEUDOAPPWINDOW_H__
1.26 +#define __T_PSEUDOAPPWINDOW_H__
1.27 +
1.28 +#include <w32std.h> //RWsSession, CWsScreenDevice etc
1.29 +
1.30 +#include "t_pseudoapptestresults.h"
1.31 +
1.32 +enum TWindowChange
1.33 + {
1.34 + ENoChange = 0,
1.35 + EIncremental,
1.36 + ECyclic
1.37 + };
1.38 +
1.39 +enum TWindowChangeType
1.40 + {
1.41 + ENoChanges,
1.42 + EWindowSize,
1.43 + EWindowPosition,
1.44 + EWindowPositionAndSize,
1.45 + EWindowPositionAndSizeWithOpacity
1.46 + };
1.47 +
1.48 +typedef enum TPixelFormat
1.49 + {
1.50 + EFormatRgb,
1.51 + EFormatYuv
1.52 + }TPixelFormat;
1.53 +
1.54 +typedef enum TParamChange
1.55 + {
1.56 + ENoParamChange,
1.57 + EFirstFrame,
1.58 + EBitmapScale,
1.59 + ESizeChange,
1.60 + EPositionChange,
1.61 + EExtentChange,
1.62 + EOpacityChange
1.63 + } TParamChange;
1.64 +
1.65 +class TDrawParameters
1.66 + {
1.67 +public:
1.68 + TDrawParameters();
1.69 + ~TDrawParameters();
1.70 + TBool operator==(const TDrawParameters& x) const;
1.71 +
1.72 +public:
1.73 + TBool iRedraw;
1.74 + TInt iBitmapScale;
1.75 + TInt iBitmapAlpha;
1.76 + TSize iWindowSize;
1.77 + TPoint iWindowPos;
1.78 + };
1.79 +
1.80 +class CTestWindow : public CBase
1.81 + {
1.82 +public:
1.83 + inline RWindow* Window() {return &iWindow;};
1.84 + IMPORT_C virtual void Rotate(TSize aScreenSize);
1.85 + IMPORT_C virtual void DrawL();
1.86 + ~CTestWindow();
1.87 +
1.88 + void SetPosition();
1.89 + void SetSize();
1.90 + void SetExtent();
1.91 +
1.92 +protected:
1.93 + IMPORT_C CTestWindow(TInt aScreenNo, TDisplayMode aMode);
1.94 +
1.95 +private:
1.96 + void ConstructL(TInt aScreenNo, TDisplayMode aMode);
1.97 +
1.98 +protected:
1.99 + RWsSession iSession;
1.100 + CWsScreenDevice* iScreen;
1.101 + CWindowGc* iWindowGc;
1.102 + RWindow iWindow;
1.103 + RWindowGroup iGroup;
1.104 + TDisplayMode iMode;
1.105 + CArrayFixFlat<TDrawParameters>* iLoadsaParameters;
1.106 + TGceTestResults* iGceTestResults;
1.107 + TInt iFrameCounter;
1.108 + };
1.109 +
1.110 +class CTestEmptyWindow : public CTestWindow
1.111 + {
1.112 +public:
1.113 + IMPORT_C static CTestEmptyWindow* NewL(TInt aScreen, TDisplayMode aMode, const TSize& aScreenSize);
1.114 + IMPORT_C virtual void Rotate(TSize aScreenSize);
1.115 + IMPORT_C virtual void DrawL();
1.116 + ~CTestEmptyWindow();
1.117 +
1.118 +protected:
1.119 + IMPORT_C CTestEmptyWindow(TInt aScreenNo, TDisplayMode aMode);
1.120 +
1.121 +private:
1.122 + void ConstructL(const TSize& aScreenSize);
1.123 +
1.124 +private:
1.125 + TInt iWindowDrawn;
1.126 + };
1.127 +
1.128 +class CTestEcomWindow : public CTestWindow
1.129 + {
1.130 +public:
1.131 + IMPORT_C static CTestEcomWindow* NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapEcomFile,
1.132 + TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
1.133 + CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
1.134 + ~CTestEcomWindow();
1.135 + IMPORT_C virtual void Rotate(TSize aScreenSize);
1.136 + IMPORT_C virtual void DrawL();
1.137 +
1.138 +
1.139 +protected:
1.140 + IMPORT_C CTestEcomWindow(TInt aScreenNo, TDisplayMode aMode);
1.141 +
1.142 +private:
1.143 + void ConstructL(const TPtrC& aMultiBitmapEcomFile, TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
1.144 + CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
1.145 + TParamChange Redraw();
1.146 +
1.147 +private:
1.148 + TPtrC iMultiBitmapEcomFile;
1.149 + TInt iMultiBitmapEcomFileSize;
1.150 + TInt iBitmapCounter;
1.151 + };
1.152 +
1.153 +class CTestUiWindow : public CTestWindow
1.154 + {
1.155 +public:
1.156 + IMPORT_C static CTestUiWindow* NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize,
1.157 + CArrayFixFlat<TRect>* aRectArray, TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency,
1.158 + TGceTestResults* aGceTestResults,
1.159 + CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
1.160 +
1.161 + IMPORT_C virtual void Rotate(const TSize& aScreenSize);
1.162 + IMPORT_C virtual void DrawL();
1.163 + ~CTestUiWindow();
1.164 +
1.165 +protected:
1.166 + IMPORT_C CTestUiWindow(TInt aScreenNo, TDisplayMode aMode);
1.167 +
1.168 +private:
1.169 + void ConstructL(const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize, CArrayFixFlat<TRect>* aRectArray,
1.170 + TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency, TGceTestResults* aGceTestResults,
1.171 + CArrayFixFlat<TDrawParameters>* aLoadsaParameters);
1.172 + TParamChange Redraw();
1.173 + void CalcNewWindowExtent(TSize aScreenSize, TInt aIncrement, TInt aDirection);
1.174 + void SetBitmapTransparency(CFbsBitmap* aBitmap, TUint8 aAlphaValue, TInt aAlphaByteLocation);
1.175 +
1.176 + void ParamChangeCyclicPositionAndSize(TDrawParameters& aDrawParams, TInt aFrameCounter);
1.177 + void ParamChangeCyclicPosition(TDrawParameters& aDrawParams, TInt aFrameCounter);
1.178 + void CalcNewWindowLocation(TSize aScreensize, TInt aIncrement, TInt aDirection,TDrawParameters& aDrawParams);
1.179 + void SetBitmapAlpha(CFbsBitmap* aBitmap);
1.180 +
1.181 +protected:
1.182 + TBool iSimUiDrawn;
1.183 + TPtrC iMultiBitmapUiFile;
1.184 + TInt iMultiBitmapUiFileSize;
1.185 + CArrayFixFlat<TRect>* iRectArray;
1.186 + TInt iMultiBitmapUiFileTransparency;
1.187 + TInt iFrameDuration;
1.188 + };
1.189 +
1.190 +#endif //__T_PSEUDOAPPWINDOW_H__