First public contribution.
1 // Copyright (c) 1995-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 // Test GDI scaling (pixels<->twips) functions
15 // You can probably delete this test as it is now done by TMSCRMOD for each screen mode.
21 #include "../tlib/testbase.h"
26 class CScaleWindow : public CTWin
29 CScaleWindow(TScaleTest *aTest);
30 void SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
32 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
37 class TScaleTest : public CTestBase
50 GLDEF_C CTestBase *CreateScaleTest()
52 return(new(ELeave) TScaleTest());
55 CScaleWindow::CScaleWindow(TScaleTest *aTest) : CTWin(), iTest(aTest)
58 void CScaleWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
60 ConstructExtLD(*parent,pos,size);
65 void CScaleWindow::Draw()
68 TSize twips=Client()->iScreen->SizeInTwips();
69 TSize pixels=Client()->iScreen->SizeInPixels();
71 TInt inches=twips.iWidth/KTwipsPerInch-1;
72 TInt lineLen=Client()->iScreen->HorizontalTwipsToPixels(inches*KTwipsPerInch);
73 TPoint linePos=TPoint((pixels.iWidth-lineLen)/2,pixels.iHeight/2);
74 iGc->DrawLine(linePos,linePos+TPoint(lineLen,0));
76 buf.Format(TRefByValue<const TDesC>(_L("Width %d\"")),inches);
77 iGc->DrawText(buf,TPoint((pixels.iWidth-iFont->TextWidthInPixels(buf))/2,linePos.iY-iFont->HeightInPixels()+iFont->AscentInPixels()-2));
79 for(index=0;index<=inches;index++)
81 TInt dx=Client()->iScreen->HorizontalTwipsToPixels(index*KTwipsPerInch);
82 TInt dy=Client()->iScreen->VerticalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
83 iGc->DrawLine(linePos+TPoint(dx,1), linePos+TPoint(dx,dy));
86 inches=twips.iHeight/KTwipsPerInch;
87 lineLen=Client()->iScreen->VerticalTwipsToPixels(inches*KTwipsPerInch);
88 linePos.iY=(pixels.iHeight-lineLen)/2;
89 iGc->DrawLine(linePos,linePos+TPoint(0,lineLen));
90 buf.Format(TRefByValue<const TDesC>(_L("Height %d\"")),inches);
91 iGc->DrawText(buf,TPoint(linePos.iX+10, pixels.iHeight/4));
92 for(index=0;index<=inches;index++)
94 TInt dx=Client()->iScreen->HorizontalTwipsToPixels(KTwipsPerInch/(index==0 || index==inches ? 8 : 16));
95 TInt dy=Client()->iScreen->VerticalTwipsToPixels(index*KTwipsPerInch);
96 iGc->DrawLine(linePos+TPoint(1,dy), linePos+TPoint(dx,dy));
100 void CScaleWindow::WinKeyL(const TKeyEvent &,const TTime &)
102 CActiveScheduler::Stop();
105 TScaleTest::TScaleTest() : CTestBase(_L("Scale"))
108 TScaleTest::~TScaleTest()
113 void TScaleTest::ConstructL()
115 CScaleWindow *win=new(ELeave) CScaleWindow(this);
116 win->SetUpLD(TPoint(0,0),Client()->iScreen->SizeInPixels(),Client()->iGroup,*Client()->iGc);
118 Client()->iGroup->SetCurrentWindow(iWin);
121 TestState TScaleTest::DoTestL()
126 LogSubTest(_L("Scale 1"),1);
127 CActiveScheduler::Start();