sl@0
|
1 |
// Copyright (c) 1998-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 |
// Screen mode changing tests
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "W32STD.H"
|
sl@0
|
20 |
#include "../tlib/testbase.h"
|
sl@0
|
21 |
#include "TMAN.H"
|
sl@0
|
22 |
|
sl@0
|
23 |
class CScreenModeTest;
|
sl@0
|
24 |
|
sl@0
|
25 |
class CScreenModeWindow : public CTWin
|
sl@0
|
26 |
{
|
sl@0
|
27 |
public:
|
sl@0
|
28 |
CScreenModeWindow();
|
sl@0
|
29 |
void SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
|
sl@0
|
30 |
void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
31 |
void Draw();
|
sl@0
|
32 |
void ScreenDeviceChanged();
|
sl@0
|
33 |
private:
|
sl@0
|
34 |
TInt iSubState;
|
sl@0
|
35 |
};
|
sl@0
|
36 |
|
sl@0
|
37 |
class CScreenModeGroup : public CTWindowGroup
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
~CScreenModeGroup();
|
sl@0
|
41 |
CScreenModeGroup(CTClient *aClient);
|
sl@0
|
42 |
void ConstructL();
|
sl@0
|
43 |
void ScreenDeviceChanged();
|
sl@0
|
44 |
private:
|
sl@0
|
45 |
CScreenModeWindow *iWindow;
|
sl@0
|
46 |
};
|
sl@0
|
47 |
|
sl@0
|
48 |
class CScreenModeTest : public CTestBase
|
sl@0
|
49 |
{
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
CScreenModeTest();
|
sl@0
|
52 |
~CScreenModeTest();
|
sl@0
|
53 |
TestState DoTestL();
|
sl@0
|
54 |
void ConstructL();
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
CScreenModeGroup *iScreenModeGroup;
|
sl@0
|
57 |
TSize iWinSize;
|
sl@0
|
58 |
TInt iState;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
GLDEF_C CTestBase *CreateScreenModeTest()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return(new(ELeave) CScreenModeTest());
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
//
|
sl@0
|
67 |
// CScreenModeWindow
|
sl@0
|
68 |
//
|
sl@0
|
69 |
|
sl@0
|
70 |
CScreenModeWindow::CScreenModeWindow() : CTWin()
|
sl@0
|
71 |
{}
|
sl@0
|
72 |
|
sl@0
|
73 |
void CScreenModeWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
if (aKey.iCode==EKeyEscape || aKey.iCode==EKeyEnter)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
if (iSubState==0)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
iSubState=1;
|
sl@0
|
80 |
ScreenDeviceChanged();
|
sl@0
|
81 |
Invalidate();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
else
|
sl@0
|
84 |
CActiveScheduler::Stop();
|
sl@0
|
85 |
}
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void CScreenModeWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
ConstructExtLD(*parent,pos,size);
|
sl@0
|
91 |
Activate();
|
sl@0
|
92 |
AssignGC(aGc);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
void CScreenModeWindow::Draw()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
iGc->Clear();
|
sl@0
|
98 |
TSize winSize(Win()->Size());
|
sl@0
|
99 |
iGc->DrawRect(winSize);
|
sl@0
|
100 |
iGc->DrawLine(TPoint(0,0),TPoint(winSize.iWidth,winSize.iHeight));
|
sl@0
|
101 |
iGc->DrawLine(TPoint(0,winSize.iHeight),TPoint(winSize.iWidth,0));
|
sl@0
|
102 |
TInt xpos=winSize.iWidth/2-100;
|
sl@0
|
103 |
iGc->DrawText(iSubState==0?_L("Twips not adjusted,"):
|
sl@0
|
104 |
_L("Twips adjusted,"),TPoint(xpos,20));
|
sl@0
|
105 |
iGc->DrawText(_L("Cycle through all screen modes,"),TPoint(xpos,40));
|
sl@0
|
106 |
iGc->DrawText(_L("Check the window is resized and rotated correctly,"),TPoint(xpos,60));
|
sl@0
|
107 |
iGc->DrawText(_L("Then press <Enter> when finished"),TPoint(xpos,80));
|
sl@0
|
108 |
//
|
sl@0
|
109 |
TSize twips=Client()->iScreen->SizeInTwips();
|
sl@0
|
110 |
TSize pixels=Client()->iScreen->SizeInPixels();
|
sl@0
|
111 |
// Horizontal line
|
sl@0
|
112 |
TInt inches=twips.iWidth/KTwipsPerInch-1;
|
sl@0
|
113 |
TInt lineLen=Client()->iScreen->HorizontalTwipsToPixels(inches*KTwipsPerInch);
|
sl@0
|
114 |
TPoint linePos=TPoint((pixels.iWidth-lineLen)/2,pixels.iHeight/2);
|
sl@0
|
115 |
iGc->DrawLine(linePos,linePos+TPoint(lineLen,0));
|
sl@0
|
116 |
TBuf<0x20> buf;
|
sl@0
|
117 |
buf.Format(TRefByValue<const TDesC>(_L("Width %d\"")),inches);
|
sl@0
|
118 |
iGc->DrawText(buf,TPoint((pixels.iWidth-iFont->TextWidthInPixels(buf))/2,linePos.iY-iFont->HeightInPixels()+iFont->AscentInPixels()-2));
|
sl@0
|
119 |
TInt index;
|
sl@0
|
120 |
for(index=0;index<=inches;index++)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
TInt dx=Client()->iScreen->HorizontalTwipsToPixels(index*KTwipsPerInch);
|
sl@0
|
123 |
TInt dy=Client()->iScreen->VerticalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
|
sl@0
|
124 |
iGc->DrawLine(linePos+TPoint(dx,1), linePos+TPoint(dx,dy));
|
sl@0
|
125 |
}
|
sl@0
|
126 |
// Vertical line
|
sl@0
|
127 |
inches=twips.iHeight/KTwipsPerInch;
|
sl@0
|
128 |
lineLen=Client()->iScreen->VerticalTwipsToPixels(inches*KTwipsPerInch);
|
sl@0
|
129 |
linePos.iY=(pixels.iHeight-lineLen)/2;
|
sl@0
|
130 |
iGc->DrawLine(linePos,linePos+TPoint(0,lineLen));
|
sl@0
|
131 |
buf.Format(TRefByValue<const TDesC>(_L("Height %d\"")),inches);
|
sl@0
|
132 |
iGc->DrawText(buf,TPoint(linePos.iX+10, pixels.iHeight/4));
|
sl@0
|
133 |
for(index=0;index<=inches;index++)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
TInt dx=Client()->iScreen->HorizontalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
|
sl@0
|
136 |
TInt dy=Client()->iScreen->VerticalTwipsToPixels(index*KTwipsPerInch);
|
sl@0
|
137 |
iGc->DrawLine(linePos+TPoint(1,dy), linePos+TPoint(dx,dy));
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
void CScreenModeWindow::ScreenDeviceChanged()
|
sl@0
|
143 |
{
|
sl@0
|
144 |
if (iSubState==0)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
TPixelsAndRotation sizeAndRotation;
|
sl@0
|
147 |
Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
|
sl@0
|
148 |
Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
|
sl@0
|
149 |
}
|
sl@0
|
150 |
else
|
sl@0
|
151 |
{
|
sl@0
|
152 |
TPixelsTwipsAndRotation sizeAndRotation;
|
sl@0
|
153 |
Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
|
sl@0
|
154 |
Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
SetSize(Client()->iScreen->SizeInPixels());
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
//
|
sl@0
|
160 |
// CScreenModeGroup
|
sl@0
|
161 |
//
|
sl@0
|
162 |
|
sl@0
|
163 |
CScreenModeGroup::~CScreenModeGroup()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
GroupWin()->EnableReceiptOfFocus(EFalse);
|
sl@0
|
166 |
ClearCurrentWindow();
|
sl@0
|
167 |
Client()->iGroup->SetCurrentWindow(NULL);
|
sl@0
|
168 |
CTWin::Delete(iWindow);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
CScreenModeGroup::CScreenModeGroup(CTClient *aClient) : CTWindowGroup(aClient)
|
sl@0
|
172 |
{}
|
sl@0
|
173 |
|
sl@0
|
174 |
void CScreenModeGroup::ConstructL()
|
sl@0
|
175 |
{
|
sl@0
|
176 |
CTWindowGroup::ConstructL();
|
sl@0
|
177 |
iWindow=new(ELeave) CScreenModeWindow;
|
sl@0
|
178 |
iWindow->SetUpLD(TPoint(0,0),Client()->iScreen->SizeInPixels(),this,*Client()->iGc);
|
sl@0
|
179 |
SetCurrentWindow(iWindow);
|
sl@0
|
180 |
GroupWin()->EnableScreenChangeEvents();
|
sl@0
|
181 |
GroupWin()->SetOrdinalPosition(0);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
void CScreenModeGroup::ScreenDeviceChanged()
|
sl@0
|
185 |
{
|
sl@0
|
186 |
iWindow->ScreenDeviceChanged();
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
//
|
sl@0
|
190 |
// CScreenModeTest
|
sl@0
|
191 |
//
|
sl@0
|
192 |
|
sl@0
|
193 |
CScreenModeTest::CScreenModeTest() : CTestBase(_L("Screen mode"))
|
sl@0
|
194 |
{}
|
sl@0
|
195 |
|
sl@0
|
196 |
CScreenModeTest::~CScreenModeTest()
|
sl@0
|
197 |
{
|
sl@0
|
198 |
Client()->iGroup->GroupWin()->EnableScreenChangeEvents();
|
sl@0
|
199 |
Client()->iScreen->SetScreenMode(0);
|
sl@0
|
200 |
delete iScreenModeGroup;
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
void CScreenModeTest::ConstructL()
|
sl@0
|
204 |
{
|
sl@0
|
205 |
Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
|
sl@0
|
206 |
Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
|
sl@0
|
207 |
//
|
sl@0
|
208 |
iScreenModeGroup=new(ELeave) CScreenModeGroup(Client());
|
sl@0
|
209 |
iScreenModeGroup->ConstructL();
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
TestState CScreenModeTest::DoTestL()
|
sl@0
|
213 |
{
|
sl@0
|
214 |
switch(iState)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
case 0:
|
sl@0
|
217 |
LogSubTest(_L("Screen mode 1"),1);
|
sl@0
|
218 |
CActiveScheduler::Start();
|
sl@0
|
219 |
iState++;
|
sl@0
|
220 |
break;
|
sl@0
|
221 |
default:
|
sl@0
|
222 |
return(EFinished);
|
sl@0
|
223 |
}
|
sl@0
|
224 |
return(ENext);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|