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
20 #include "../tlib/testbase.h"
25 class CPntBufWindow : public CTBackedUpWin
28 enum {KPointerMoveBufferSize=32};
30 CPntBufWindow(CTPntBufTest *aTest);
32 void SetUpLD(TPoint pos,TSize size,CTWinBase *parent);
33 void PointerBufferReady(const TTime &aTime);
34 void PointerL(const TPointerEvent &pointer,const TTime &aTime);
37 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
40 //Virtual functions from CTWinBase
41 void PointerEnter(const TTime&);
42 void PointerExit(const TTime&);
50 TBool iIgnorNextPoint;
53 class CTPntBufTest : public CTestBase
67 GLDEF_C CTestBase *CreatePointerBufferTest()
69 return(new(ELeave) CTPntBufTest());
72 CPntBufWindow::CPntBufWindow(CTPntBufTest *aTest) : CTBackedUpWin(EGray4), iTest(aTest)
75 CPntBufWindow::~CPntBufWindow()
80 void CPntBufWindow::SetUpLD(TPoint pos,TSize size,CTWinBase *parent)
82 ConstructExtLD(*parent,pos,size);
83 User::LeaveIfError(iWin.AllocPointerMoveBuffer(KPointerMoveBufferSize,0));
84 iWin.SetPointerGrab(ETrue);
85 iWin.PointerFilter(EPointerFilterEnterExit,0);
87 User::LeaveIfError(Client()->iScreen->CreateContext(iGc));
92 void CPntBufWindow::PointerBufferReady(const TTime &)
95 iWin.DiscardPointerMoveBuffer();
96 iGc->SetPenColor(iDragging ? TRgb::Gray4(0) : TRgb::Gray4(1));
97 iGc->SetPenSize(iDragging ? TSize(2,2) : TSize(1,1));
98 TPoint pnts[KPointerMoveBufferSize];
99 TPtr8 ptr((TUint8 *)&pnts,sizeof(pnts));
100 TInt numPnts=iWin.RetrievePointerMoveBuffer(ptr);
104 iGc->MoveTo(pnts[index]);
106 iIgnorNextPoint=EFalse;
108 for(;index<numPnts;index++)
109 iGc->DrawLineTo(pnts[index]);
112 void CPntBufWindow::ErrorL()
117 iTest->TestL(EFalse);
121 void CPntBufWindow::PointerL(const TPointerEvent &pointer,const TTime &)
123 switch(pointer.iType)
125 case TPointerEvent::EButton1Down:
127 iGc->MoveTo(pointer.iPosition);
130 if (pointer.iModifiers&EModifierShift)
133 iWin.DisablePointerMoveBuffer();
135 else if (pointer.iModifiers&EModifierCtrl)
139 case TPointerEvent::EButton1Up:
143 iWin.EnablePointerMoveBuffer();
146 iGc->MoveTo(pointer.iPosition);
149 case TPointerEvent::EDrag:
150 if (iDragging && !iDisabled)
153 case TPointerEvent::EMove:
154 if (iDragging && !iDisabled)
161 void CPntBufWindow::SetUpState()
165 iGc->UseFont((CFont *)iFont);
170 iWin.PointerFilter(EPointerFilterMove,EPointerFilterMove);
171 iGc->DrawText(_L("Drag the pointer around the window and check"), TPoint(10,20));
172 iGc->DrawText(_L("a line is drawn following the pointer when"), TPoint(10,40));
173 iGc->DrawText(_L("dragging but not when moving"), TPoint(10,60));
174 iGc->DrawText(_L("Press <Space> when checked"), TPoint(10,90));
177 iWin.PointerFilter(EPointerFilterMove|EPointerFilterDrag,EPointerFilterDrag);
178 iGc->DrawText(_L("If pointer moves are supported move the pointer around the "), TPoint(10,20));
179 iGc->DrawText(_L("window and check a line is drawn following the pointer"), TPoint(10,40));
180 iGc->DrawText(_L("when it is up, and no lines are drawn when dragging"), TPoint(10,60));
181 iGc->DrawText(_L("Press <Esc> if moves not supported or <Space> when checked"), TPoint(10,90));
184 iWin.PointerFilter(EPointerFilterMove|EPointerFilterDrag,0);
185 iGc->DrawText(_L("Drag and move the pointer around the window and check a"), TPoint(10,20));
186 iGc->DrawText(_L("line is drawn following the pointer during both dragging and"), TPoint(10,40));
187 iGc->DrawText(_L("moving, also check drag with the shift or control key down doesn't draw"), TPoint(10,60));
188 iGc->DrawText(_L("Press <Space> when checked"), TPoint(10,90));
193 void CPntBufWindow::NextTest()
196 iTest->FinishedTests();
201 void CPntBufWindow::WinKeyL(const TKeyEvent &aKey,const TTime &)
209 iTest->FinishedTests();
218 TInt mode=aKey.iCode-'1';
229 void CPntBufWindow::PointerEnter(const TTime&)
235 iIgnorNextPoint=ETrue;
238 void CPntBufWindow::PointerExit(const TTime&)
244 CTPntBufTest::CTPntBufTest() : CTestBase(_L("Scale"))
247 CTPntBufTest::~CTPntBufTest()
249 #if defined(__WINS__)
250 Client()->iWs.SimulateXyInputType(EXYInputPointer);
255 void CTPntBufTest::FinishedTests()
260 void CTPntBufTest::ConstructL()
262 CPntBufWindow *win=new(ELeave) CPntBufWindow(this);
263 win->SetUpLD(TPoint(0,0),Client()->iScreen->SizeInPixels(),Client()->iGroup);
265 Client()->iGroup->SetCurrentWindow(iWin);
266 #if defined(__WINS__)
267 Client()->iWs.SimulateXyInputType(EXYInputMouse);
271 TestState CTPntBufTest::DoTestL()
276 LogSubTest(_L("Scale 1"),1);