First public contribution.
1 // Copyright (c) 1996-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 Pointer move/drag buffer
21 #include "../tlib/testbase.h"
24 const TInt ENumPntKeyTests=6;
25 const TUint EModifierMask=EModifierCtrl|EModifierShift|EModifierFunc;
29 class CTPntKeyWindow : public CTWin
32 enum {KPointerMoveBufferSize=32};
34 CTPntKeyWindow(CTPntKeyTest *aTest);
36 void SetUpLD(TPoint pos,TSize size,CTWinBase *parent);
37 void PointerL(const TPointerEvent &pointer,const TTime &aTime);
38 void KeyUpL(const TKeyEvent &aKey,const TTime &);
39 void KeyDownL(const TKeyEvent &aKey,const TTime &);
40 void WinKeyL(const TKeyEvent &aKey,const TTime &);
41 void SwitchOn(const TTime &aTime);
42 void SetState(TInt iState);
44 void Test(TInt aCheck);
46 void DrawButton(const TRect &aRect, const TDesC &aText);
54 static TInt iTestScanCodes[ENumPntKeyTests];
55 static TUint iTestCodes[ENumPntKeyTests];
56 static TUint iTestModifiers[ENumPntKeyTests];
59 class CTPntKeyTest : public CTestBase
68 inline TBool NoDigitiser() const {return iNoDigitiser;}
74 TBool iOldPointerState;
78 TInt CTPntKeyWindow::iTestScanCodes[ENumPntKeyTests]={'A','B',0,'C',EStdKeyEnter,'Y'};
79 TUint CTPntKeyWindow::iTestCodes[ENumPntKeyTests]={'a','B',0,'c',EKeyEnter,'y'};
80 TUint CTPntKeyWindow::iTestModifiers[ENumPntKeyTests]={0,EModifierShift,0,0,0,0};
82 GLDEF_C CTestBase *CreatePointerKeyTest()
84 return(new(ELeave) CTPntKeyTest());
87 CTPntKeyWindow::CTPntKeyWindow(CTPntKeyTest *aTest) : iTest(aTest)
90 CTPntKeyWindow::~CTPntKeyWindow()
94 void CTPntKeyWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent)
96 ConstructExtLD(*parent,pos,size);
97 iWin.SetPointerGrab(ETrue);
98 iKey1=TRect(size.iWidth*1/16,size.iHeight/2,size.iWidth*5/16,size.iHeight);
99 iKey2=TRect(size.iWidth*6/16,size.iHeight/2,size.iWidth*10/16,size.iHeight);
100 iKey3=TRect(size.iWidth*11/16,size.iHeight/2,size.iWidth*15/16,size.iHeight);
101 iWin.AddKeyRect(iKey1,'A',EFalse);
102 iWin.AddKeyRect(iKey2,'B',EFalse);
103 AssignGC(*Client()->iGc);
104 BaseWin()->EnableOnEvents();
108 void CTPntKeyWindow::Error()
113 void CTPntKeyWindow::SetState(TInt iState)
117 iTest->Client()->Flush();
120 void CTPntKeyWindow::NextKey()
122 if (++iKeyCount==ENumPntKeyTests || iKeyCount>4)
123 iTest->FinishedTests();
127 iWin.RemoveAllKeyRects();
128 else if (iKeyCount==3)
129 iWin.AddKeyRect(iKey3,'C',EFalse);
130 else if (iKeyCount==4)
132 #if !defined(__WINS__)
133 if (iTest->NoDigitiser())
134 iTest->FinishedTests();
136 iWin.RemoveAllKeyRects();
137 iWin.AddKeyRect(TRect(Client()->iScreen->SizeInPixels()),'Z',EFalse);
139 else if (iKeyCount==5)
141 iWin.RemoveAllKeyRects();
142 Client()->iWs.Flush();
143 User::After(500000); // Wait half a second
144 iWin.AddKeyRect(TRect(Client()->iScreen->SizeInPixels()),'Y',ETrue);
150 void CTPntKeyWindow::Test(TInt aCheck)
156 void CTPntKeyWindow::KeyUpL(const TKeyEvent &aKey,const TTime&)
158 if (aKey.iScanCode==iTestScanCodes[iKeyCount])
162 void CTPntKeyWindow::KeyDownL(const TKeyEvent &aKey,const TTime &)
164 if (aKey.iScanCode!=EStdKeyLeftFunc && aKey.iScanCode!=EStdKeyRightFunc &&
165 aKey.iScanCode!=EStdKeyLeftAlt && aKey.iScanCode!=EStdKeyRightAlt &&
166 aKey.iScanCode!=EStdKeyLeftCtrl && aKey.iScanCode!=EStdKeyRightCtrl &&
167 aKey.iScanCode!=EStdKeyLeftShift && aKey.iScanCode!=EStdKeyRightShift &&
168 aKey.iScanCode!=EStdKeyOff &&
169 aKey.iScanCode!=EStdKeyEscape)
170 Test(aKey.iScanCode==iTestScanCodes[iKeyCount]);
173 void CTPntKeyWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
175 if (aKey.iCode==EKeyEscape)
176 iTest->FinishedTests();
179 Test(aKey.iScanCode==iTestScanCodes[iKeyCount]);
180 Test(aKey.iCode==iTestCodes[iKeyCount]);
181 Test((aKey.iModifiers&EModifierMask)==(iTestModifiers[iKeyCount]&EModifierMask));
185 void CTPntKeyWindow::SwitchOn(const TTime &)
189 else if (iKeyCount!=5)
193 void CTPntKeyWindow::PointerL(const TPointerEvent &aPointer,const TTime &)
195 if (aPointer.iType==TPointerEvent::EButton1Down)
204 void CTPntKeyWindow::DrawButton(const TRect &aRect, const TDesC &aText)
206 iGc->DrawRect(aRect);
207 iGc->DrawText(aText, TPoint((aRect.iBr.iX+aRect.iTl.iX)/2,(aRect.iBr.iY+aRect.iTl.iY)/2));
210 void CTPntKeyWindow::Draw()
212 iGc->SetBrushColor(TRgb::Gray4(0));
213 iGc->SetPenColor(TRgb::Gray4(3));
215 DrawButton(iKey1,_L("A"));
216 DrawButton(iKey2,_L("B"));
217 DrawButton(iKey3,_L("C"));
221 iGc->DrawText(_L("Click on 'A'"), TPoint(10,20));
224 iGc->DrawText(_L("Shift-Click on 'B'"), TPoint(10,20));
227 iGc->DrawText(_L("Click anywhere in this window"), TPoint(10,20));
230 iGc->DrawText(_L("Click on 'C'"), TPoint(10,20));
233 #if defined(__WINS__) // Can't emulate touching dig when switched off under WINS
234 iGc->DrawText(_L("Switch off and on (or press Enter)"), TPoint(10,20));
236 iGc->DrawText(_L("1st Switch off, then touch the screen to switch on"), TPoint(10,20));
240 #if defined(__WINS__) // Can't emulate touching dig when switched off under WINS
241 iGc->DrawText(_L("Touch anywhere in the window"), TPoint(10,20));
243 iGc->DrawText(_L("2nd Switch off and touch the screen to switch on"), TPoint(10,20));
249 CTPntKeyTest::CTPntKeyTest() : CTestBase(_L("Pointer Key Test"))
252 CTPntKeyTest::~CTPntKeyTest()
254 HAL::Set(HALData::EPenDisplayOn,iOldPointerState);
256 Client()->ResetFocus();
259 void CTPntKeyTest::Failed()
268 void CTPntKeyTest::FinishedTests()
273 void CTPntKeyTest::ConstructL()
275 CTPntKeyWindow *win=new(ELeave) CTPntKeyWindow(this);
276 win->SetUpLD(TPoint(20,20),Client()->iScreen->SizeInPixels()-TSize(40,40),Client()->iGroup);
278 Client()->iGroup->SetCurrentWindow(iWin);
280 TInt err=HAL::Get(HALData::EPenDisplayOn,iOldPointerState);
281 if (err==KErrNotSupported)
283 else if (err==KErrNone)
284 err=HAL::Set(HALData::EPenDisplayOn,ETrue);
285 if (err==KErrNotSupported)
286 iNoDigitiser=(!iOldPointerState);
288 TestL(err==KErrNone);
291 TestState CTPntKeyTest::DoTestL()
297 LogSubTest(_L("Key set 1"),1);