First public contribution.
1 // Copyright (c) 1998-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Screen mode changing tests
20 #include "../tlib/testbase.h"
23 class CScreenModeTest;
25 class CScreenModeWindow : public CTWin
29 void SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
30 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
32 void ScreenDeviceChanged();
37 class CScreenModeGroup : public CTWindowGroup
41 CScreenModeGroup(CTClient *aClient);
43 void ScreenDeviceChanged();
45 CScreenModeWindow *iWindow;
48 class CScreenModeTest : public CTestBase
56 CScreenModeGroup *iScreenModeGroup;
61 GLDEF_C CTestBase *CreateScreenModeTest()
63 return(new(ELeave) CScreenModeTest());
70 CScreenModeWindow::CScreenModeWindow() : CTWin()
73 void CScreenModeWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
75 if (aKey.iCode==EKeyEscape || aKey.iCode==EKeyEnter)
80 ScreenDeviceChanged();
84 CActiveScheduler::Stop();
88 void CScreenModeWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
90 ConstructExtLD(*parent,pos,size);
95 void CScreenModeWindow::Draw()
98 TSize winSize(Win()->Size());
99 iGc->DrawRect(winSize);
100 iGc->DrawLine(TPoint(0,0),TPoint(winSize.iWidth,winSize.iHeight));
101 iGc->DrawLine(TPoint(0,winSize.iHeight),TPoint(winSize.iWidth,0));
102 TInt xpos=winSize.iWidth/2-100;
103 iGc->DrawText(iSubState==0?_L("Twips not adjusted,"):
104 _L("Twips adjusted,"),TPoint(xpos,20));
105 iGc->DrawText(_L("Cycle through all screen modes,"),TPoint(xpos,40));
106 iGc->DrawText(_L("Check the window is resized and rotated correctly,"),TPoint(xpos,60));
107 iGc->DrawText(_L("Then press <Enter> when finished"),TPoint(xpos,80));
109 TSize twips=Client()->iScreen->SizeInTwips();
110 TSize pixels=Client()->iScreen->SizeInPixels();
112 TInt inches=twips.iWidth/KTwipsPerInch-1;
113 TInt lineLen=Client()->iScreen->HorizontalTwipsToPixels(inches*KTwipsPerInch);
114 TPoint linePos=TPoint((pixels.iWidth-lineLen)/2,pixels.iHeight/2);
115 iGc->DrawLine(linePos,linePos+TPoint(lineLen,0));
117 buf.Format(TRefByValue<const TDesC>(_L("Width %d\"")),inches);
118 iGc->DrawText(buf,TPoint((pixels.iWidth-iFont->TextWidthInPixels(buf))/2,linePos.iY-iFont->HeightInPixels()+iFont->AscentInPixels()-2));
120 for(index=0;index<=inches;index++)
122 TInt dx=Client()->iScreen->HorizontalTwipsToPixels(index*KTwipsPerInch);
123 TInt dy=Client()->iScreen->VerticalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
124 iGc->DrawLine(linePos+TPoint(dx,1), linePos+TPoint(dx,dy));
127 inches=twips.iHeight/KTwipsPerInch;
128 lineLen=Client()->iScreen->VerticalTwipsToPixels(inches*KTwipsPerInch);
129 linePos.iY=(pixels.iHeight-lineLen)/2;
130 iGc->DrawLine(linePos,linePos+TPoint(0,lineLen));
131 buf.Format(TRefByValue<const TDesC>(_L("Height %d\"")),inches);
132 iGc->DrawText(buf,TPoint(linePos.iX+10, pixels.iHeight/4));
133 for(index=0;index<=inches;index++)
135 TInt dx=Client()->iScreen->HorizontalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
136 TInt dy=Client()->iScreen->VerticalTwipsToPixels(index*KTwipsPerInch);
137 iGc->DrawLine(linePos+TPoint(1,dy), linePos+TPoint(dx,dy));
142 void CScreenModeWindow::ScreenDeviceChanged()
146 TPixelsAndRotation sizeAndRotation;
147 Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
148 Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
152 TPixelsTwipsAndRotation sizeAndRotation;
153 Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation);
154 Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation);
156 SetSize(Client()->iScreen->SizeInPixels());
163 CScreenModeGroup::~CScreenModeGroup()
165 GroupWin()->EnableReceiptOfFocus(EFalse);
166 ClearCurrentWindow();
167 Client()->iGroup->SetCurrentWindow(NULL);
168 CTWin::Delete(iWindow);
171 CScreenModeGroup::CScreenModeGroup(CTClient *aClient) : CTWindowGroup(aClient)
174 void CScreenModeGroup::ConstructL()
176 CTWindowGroup::ConstructL();
177 iWindow=new(ELeave) CScreenModeWindow;
178 iWindow->SetUpLD(TPoint(0,0),Client()->iScreen->SizeInPixels(),this,*Client()->iGc);
179 SetCurrentWindow(iWindow);
180 GroupWin()->EnableScreenChangeEvents();
181 GroupWin()->SetOrdinalPosition(0);
184 void CScreenModeGroup::ScreenDeviceChanged()
186 iWindow->ScreenDeviceChanged();
193 CScreenModeTest::CScreenModeTest() : CTestBase(_L("Screen mode"))
196 CScreenModeTest::~CScreenModeTest()
198 Client()->iGroup->GroupWin()->EnableScreenChangeEvents();
199 Client()->iScreen->SetScreenMode(0);
200 delete iScreenModeGroup;
203 void CScreenModeTest::ConstructL()
205 Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
206 Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
208 iScreenModeGroup=new(ELeave) CScreenModeGroup(Client());
209 iScreenModeGroup->ConstructL();
212 TestState CScreenModeTest::DoTestL()
217 LogSubTest(_L("Screen mode 1"),1);
218 CActiveScheduler::Start();