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_WSERVINTEGSTEPBASIC_H__
|
sl@0
|
23 |
#define __T_WSERVINTEGSTEPBASIC_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <w32std.h>
|
sl@0
|
26 |
#include <graphics/surfacemanager.h>
|
sl@0
|
27 |
#include <graphics/surfaceupdateclient.h>
|
sl@0
|
28 |
#include <test/testexecutestepbase.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
const TInt KTempWindowHeight = 200;
|
sl@0
|
31 |
const TInt KTempWindowWidth = 200;
|
sl@0
|
32 |
_LIT(KT_WServIntegStepBasic,"T_WServIntegStepBasic");
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
class CT_WServIntegStepBasic : public CTestStep
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
CT_WServIntegStepBasic();
|
sl@0
|
39 |
~CT_WServIntegStepBasic();
|
sl@0
|
40 |
// from CTestStep
|
sl@0
|
41 |
virtual enum TVerdict doTestStepPreambleL();
|
sl@0
|
42 |
virtual enum TVerdict doTestStepL();
|
sl@0
|
43 |
virtual enum TVerdict doTestStepPostambleL();
|
sl@0
|
44 |
|
sl@0
|
45 |
private:
|
sl@0
|
46 |
void CreateSurfaceManager();
|
sl@0
|
47 |
void CreateSurfaceL(TSurfaceId& aSurfaceId, TUint aColorPattern=0xFF0000FF);
|
sl@0
|
48 |
void CreateSurfaceUpdateSessionL();
|
sl@0
|
49 |
void DestroySurface();
|
sl@0
|
50 |
void CreateRWindowL(RWindow& aWin, const TPoint& aPos=TPoint(0,0), const TRgb& aBkgdColor=TRgb(0x800000FF), const TSize& aWinSize=TSize(KTempWindowWidth,KTempWindowHeight) );
|
sl@0
|
51 |
void CreateRBlankWindowL(RBlankWindow& aBlankWin);
|
sl@0
|
52 |
void ForceWindowToRedraw(RWindowBase& aWin);
|
sl@0
|
53 |
TVerdict SetSurfaceL(RWindow& aWin, TSurfaceId& aSurfaceId);
|
sl@0
|
54 |
void DrawShape(RWindow& aWin, const TRgb& aColor);
|
sl@0
|
55 |
|
sl@0
|
56 |
// Test cases
|
sl@0
|
57 |
void Graphics_Wserv_Gce_1L(RWindow& aWin);
|
sl@0
|
58 |
void Graphics_Wserv_Gce_2L(RBlankWindow& aBlankWin);
|
sl@0
|
59 |
void Graphics_Wserv_Gce_3L();
|
sl@0
|
60 |
void Graphics_Wserv_Gce_4L(RWindow& aWin);
|
sl@0
|
61 |
void Graphics_Wserv_Gce_5L(RWindow& aWin);
|
sl@0
|
62 |
void Graphics_Wserv_Gce_6L(RWindow& aWin);
|
sl@0
|
63 |
void Graphics_Wserv_Gce_11L(RWindow& aWin);
|
sl@0
|
64 |
void Graphics_Wserv_Gce_13L(RWindow& aWin);
|
sl@0
|
65 |
void Graphics_Wserv_Gce_15L(RWindow& aWin);
|
sl@0
|
66 |
void Graphics_Wserv_Gce_17L(RWindow& aWin);
|
sl@0
|
67 |
void Graphics_Wserv_Gce_19L(RWindow& aWin);
|
sl@0
|
68 |
void Graphics_Wserv_Gce_21L(RWindow& aWin);
|
sl@0
|
69 |
void Graphics_Wserv_Gce_22L(RWindow& aWin);
|
sl@0
|
70 |
void Graphics_Wserv_Gce_31L(RBlankWindow& aBlankWin);
|
sl@0
|
71 |
void Graphics_Wserv_Gce_32L(RWindow& aWin);
|
sl@0
|
72 |
void Graphics_Wserv_Gce_33L(RWindow& aWin);
|
sl@0
|
73 |
void Graphics_Wserv_Gce_34L(RWindow& aWin);
|
sl@0
|
74 |
void Graphics_Wserv_Gce_35L(RWindow& aWin);
|
sl@0
|
75 |
void Graphics_Wserv_Gce_36L(RWindow& aWin);
|
sl@0
|
76 |
|
sl@0
|
77 |
private: // Data members
|
sl@0
|
78 |
TInt iTestId;
|
sl@0
|
79 |
// TDisplayMode iDisplayMode;
|
sl@0
|
80 |
CWindowGc* iGc;
|
sl@0
|
81 |
CWsScreenDevice* iScreen;
|
sl@0
|
82 |
RWsSession iWsSession;
|
sl@0
|
83 |
RSurfaceManager iSurfaceManager;
|
sl@0
|
84 |
TSurfaceId iSurfaceId;
|
sl@0
|
85 |
RChunk iChunk;
|
sl@0
|
86 |
RSurfaceUpdateSession iSurfaceUpdateSession;
|
sl@0
|
87 |
RWindowGroup iWinGroup;
|
sl@0
|
88 |
};
|
sl@0
|
89 |
|
sl@0
|
90 |
#endif // __T_WSERVINTEGSTEPBASIC_H__
|