sl@0
|
1 |
// Copyright (c) 2010 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 |
#ifndef TMULTIPLESCREENS_H
|
sl@0
|
17 |
#define TMULTIPLESCREENS_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <bitdev.h>
|
sl@0
|
20 |
#include "TGraphicsHarness.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
//
|
sl@0
|
23 |
//
|
sl@0
|
24 |
//The main test class. Add your test methods here.
|
sl@0
|
25 |
class CTMultipleScreens : public CTGraphicsBase
|
sl@0
|
26 |
{
|
sl@0
|
27 |
public:
|
sl@0
|
28 |
CTMultipleScreens(CTestStep* aStep);
|
sl@0
|
29 |
~CTMultipleScreens();
|
sl@0
|
30 |
void TestL();
|
sl@0
|
31 |
protected:
|
sl@0
|
32 |
//from CTGraphicsStep
|
sl@0
|
33 |
virtual void RunTestCaseL(TInt aCurTestCase);
|
sl@0
|
34 |
void ConstructL();
|
sl@0
|
35 |
private:
|
sl@0
|
36 |
|
sl@0
|
37 |
void CreateScreenDeviceL();
|
sl@0
|
38 |
|
sl@0
|
39 |
void DoRotateMoveTextL();
|
sl@0
|
40 |
TInt CreateScrDevAndContext(TDisplayMode aDisplayMode);
|
sl@0
|
41 |
TInt CreateScrDevAndContext(TInt aScreenNo, TDisplayMode aDisplayMode);
|
sl@0
|
42 |
void DeleteScreenDevice();
|
sl@0
|
43 |
void DeleteGraphicsContext();
|
sl@0
|
44 |
void CreateFontL();
|
sl@0
|
45 |
void DestroyFont();
|
sl@0
|
46 |
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
CFbsScreenDevice* iScrDev;
|
sl@0
|
49 |
CFbsBitGc* iGc;
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
class CTMultipleScreensStep : public CTGraphicsStep
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
CTMultipleScreensStep();
|
sl@0
|
56 |
protected:
|
sl@0
|
57 |
//from CTGraphicsStep
|
sl@0
|
58 |
virtual CTGraphicsBase* CreateTestL();
|
sl@0
|
59 |
virtual void TestSetupL();
|
sl@0
|
60 |
virtual void TestClose();
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
_LIT(KTMultipleScreensStep,"TMultipleScreens");
|
sl@0
|
64 |
|
sl@0
|
65 |
#endif //TMULTIPLESCREENS_H
|