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 capture
21 #include "../tlib/testbase.h"
30 EDragDropCaptureAllGroups,
31 ENormalCaptureWithoutFocus,
50 const TInt ESubStates1=2;
51 const TInt ESubStates2=5;
52 const TInt ESubStates3=5;
53 const TInt ESubStates4=5;
54 const TInt ESubStates5=5;
55 const TInt ESubStates6=5;
57 const TInt EWinBorderSize=10;
60 class TPointerCaptureTest;
62 class CPcConnection : public CTClient
65 CPcConnection(TPointerCaptureTest *aTest);
67 virtual void ConstructL();
69 TPointerCaptureTest *iTest;
72 class CPcWindowBase : public CTWin
75 CPcWindowBase(TPointerCaptureTest *aTest);
76 void SetUpL(TPoint pos,TSize size,CTWinBase *parent);
77 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
78 void Draw(TDesC &aBuf);
79 void PointerL(const TPointerEvent &pointer,const TTime &);
80 void DragDropL(const TPointerEvent &pointer,const TTime &);
81 virtual TPointerCheckRet PointerDown()=0;
82 virtual TPointerCheckRet DragDrop()=0;
83 virtual void SubStateChanged();
85 TPointerCaptureTest *iTest;
89 class CPcWindowChild : public CPcWindowBase
92 CPcWindowChild(TPointerCaptureTest *aTest);
94 TPointerCheckRet PointerDown();
95 TPointerCheckRet DragDrop();
98 class CPcWindowMain : public CPcWindowBase
101 CPcWindowMain(TPointerCaptureTest *aTest);
103 TPointerCheckRet PointerDown();
104 TPointerCheckRet DragDrop();
105 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
108 class CPcWindowAltGroup : public CPcWindowBase
111 CPcWindowAltGroup(TPointerCaptureTest *aTest);
113 TPointerCheckRet PointerDown();
114 TPointerCheckRet DragDrop();
117 class CPcWindowNickFocusGroup : public CTWindowGroup
120 CPcWindowNickFocusGroup(TPointerCaptureTest *aTest, CTClient *aClient);
121 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
123 TPointerCaptureTest *iTest;
126 class CPcWindowAltConnection : public CPcWindowBase
129 CPcWindowAltConnection(TPointerCaptureTest *aTest);
131 TPointerCheckRet PointerDown();
132 TPointerCheckRet DragDrop();
135 class TPointerCaptureTest : public CTestBase
138 enum TDState {DDStateNull, DDStateGot, DDStateWaiting};
140 TPointerCaptureTest();
141 ~TPointerCaptureTest();
147 TInt SubState() const;
148 void doIncSubState();
149 void IncSubState(TBool aNeedsDD=EFalse);
154 void SetCapture(TInt aCaptureFlags);
157 TInt doTestFailedL();
159 CPcConnection *iAltConnection;
160 CTWindowGroup *iMainGroup;
161 CTWindowGroup *iAltGroup;
162 CPcWindowChild *iChildWin;
163 CPcWindowMain *iMainWin;
164 CPcWindowAltGroup *iAltGroupWin;
165 CPcWindowAltConnection *iAltConnectionWin;
166 CPcWindowNickFocusGroup *iNickFocusGroup;
167 CTBlankWindow *iNickFocusBlankWin;
175 GLDEF_C CTestBase *CreatePointerCaptureTest()
177 return(new(ELeave) TPointerCaptureTest());
183 CPcConnection::CPcConnection(TPointerCaptureTest *aTest) : iTest(aTest)
187 CPcConnection::~CPcConnection()
191 void CPcConnection::ConstructL()
193 CTClient::ConstructL();
194 iGroup=new(ELeave) CTWindowGroup(this);
195 iGroup->ConstructL();
196 iGroup->GroupWin()->SetOrdinalPosition(0,1);
197 iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
202 // CPcWindow, base class //
205 CPcWindowBase::CPcWindowBase(TPointerCaptureTest *aTest) : CTWin(), iTest(aTest)
209 void CPcWindowBase::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
211 ConstructExtLD(*parent,pos,size);
212 iWin.SetBackgroundColor(iBack);
217 void CPcWindowBase::SetUpL(TPoint pos,TSize size,CTWinBase *parent)
219 SetUpL(pos,size,parent,*iTest->Client()->iGc);
222 void CPcWindowBase::SubStateChanged()
225 Client()->iWs.Flush();
228 void CPcWindowBase::Draw(TDesC &aBuf)
231 iGc->SetPenColor(iBack.Gray4()>1 ? TRgb(0,0,0) : TRgb(255,255,255));
232 iGc->DrawText(aBuf, TPoint(10,20));
235 void CPcWindowBase::PointerL(const TPointerEvent &pointer,const TTime &)
237 if (pointer.iType==TPointerEvent::EButton1Down && !iTest->iFailed)
239 if (iTest->SubState()==ERootWindow) // Root window click, must not be inside this window
241 if (TRect(Size()).Contains(pointer.iPosition))
248 if ((ret=PointerDown())==EFailed)
251 iTest->IncSubState(ret==ENeedsDDEvent);
255 void CPcWindowBase::DragDropL(const TPointerEvent &pointer,const TTime &)
257 switch(iTest->State())
259 case ECaptureDisabled:
261 case ECaptureAllGroups:
262 case ENormalCaptureWithoutFocus:
266 if (pointer.iType==TPointerEvent::EButton1Down && !iTest->iFailed)
268 if (DragDrop()==EFailed)
276 CPcWindowMain::CPcWindowMain(TPointerCaptureTest *aTest) : CPcWindowBase(aTest)
278 iBack=TRgb::Gray256(236);
281 TPointerCheckRet CPcWindowMain::PointerDown()
283 switch(iTest->State())
285 case ECaptureDisabled:
286 if (iTest->SubState()==EMainWindow)
290 switch(iTest->SubState())
299 case ECaptureAllGroups:
300 switch(iTest->SubState())
311 case EDragDropCapture:
312 switch(iTest->SubState())
315 return(ENeedsDDEvent);
322 case EDragDropCaptureAllGroups:
323 switch(iTest->SubState())
328 return(ENeedsDDEvent);
335 case ENormalCaptureWithoutFocus:
336 switch(iTest->SubState())
350 TPointerCheckRet CPcWindowMain::DragDrop()
352 switch(iTest->State())
354 case EDragDropCapture:
355 case EDragDropCaptureAllGroups:
356 switch(iTest->SubState())
370 void CPcWindowMain::Draw()
373 if (iTest->State()==ECaptureDisabled)
375 switch(iTest->SubState())
378 buf.Copy(_L("Click on me"));
384 switch(iTest->SubState())
387 buf.Copy(_L("Click on me"));
394 if (iTest->State()==ENormalCaptureWithoutFocus)
395 buf.Copy(_L("Click on the root window, then press <Escape>"));
397 buf.Copy(_L("Click on the root window"));
401 CPcWindowBase::Draw(buf);
404 void CPcWindowMain::WinKeyL(const TKeyEvent &aKey,const TTime &)
416 CPcWindowChild::CPcWindowChild(TPointerCaptureTest *aTest) : CPcWindowBase(aTest)
418 iBack=TRgb::Gray256(85);
421 TPointerCheckRet CPcWindowChild::PointerDown()
423 switch(iTest->State())
425 case ECaptureDisabled:
428 switch(iTest->SubState())
440 TPointerCheckRet CPcWindowChild::DragDrop()
442 switch(iTest->State())
444 case EDragDropCapture:
445 case EDragDropCaptureAllGroups:
446 switch(iTest->SubState())
460 void CPcWindowChild::Draw()
463 if (iTest->State()!=ECaptureDisabled)
465 switch(iTest->SubState())
468 buf.Copy(_L("Click on me"));
474 CPcWindowBase::Draw(buf);
479 CPcWindowNickFocusGroup::CPcWindowNickFocusGroup(TPointerCaptureTest *aTest, CTClient *aClient) : CTWindowGroup(aClient), iTest(aTest)
483 void CPcWindowNickFocusGroup::KeyL(const TKeyEvent &aKey,const TTime &)
485 if (aKey.iCode==EKeyEscape)
486 iTest->IncSubState(EFalse);
491 CPcWindowAltGroup::CPcWindowAltGroup(TPointerCaptureTest *aTest) : CPcWindowBase(aTest)
493 iBack=TRgb::Gray256(236);
496 TPointerCheckRet CPcWindowAltGroup::PointerDown()
498 switch(iTest->State())
500 case ECaptureDisabled:
501 if (iTest->SubState()==EChildWindow)
505 case EDragDropCapture:
506 case ENormalCaptureWithoutFocus:
507 switch(iTest->SubState())
521 TPointerCheckRet CPcWindowAltGroup::DragDrop()
523 switch(iTest->State())
525 case EDragDropCapture:
526 case EDragDropCaptureAllGroups:
527 switch(iTest->SubState())
541 void CPcWindowAltGroup::Draw()
544 if (iTest->State()==ECaptureDisabled)
546 switch(iTest->SubState())
551 buf.Copy(_L("Click on me"));
557 switch(iTest->SubState())
560 buf.Copy(_L("Click on me"));
566 CPcWindowBase::Draw(buf);
571 CPcWindowAltConnection::CPcWindowAltConnection(TPointerCaptureTest *aTest) : CPcWindowBase(aTest)
573 iBack=TRgb::Gray256(236);
576 TPointerCheckRet CPcWindowAltConnection::PointerDown()
578 switch(iTest->State())
580 case ECaptureDisabled:
581 if (iTest->SubState()==EChildWindow)
585 case EDragDropCapture:
586 case ENormalCaptureWithoutFocus:
587 switch(iTest->SubState())
601 TPointerCheckRet CPcWindowAltConnection::DragDrop()
603 switch(iTest->State())
605 case EDragDropCapture:
606 case EDragDropCaptureAllGroups:
607 switch(iTest->SubState())
621 void CPcWindowAltConnection::Draw()
624 if (iTest->State()!=ECaptureDisabled)
626 switch(iTest->SubState())
629 buf.Copy(_L("Click on me"));
635 CPcWindowBase::Draw(buf);
640 TPointerCaptureTest::TPointerCaptureTest() : CTestBase(_L("Pointer Capture"))
643 TPointerCaptureTest::~TPointerCaptureTest()
645 delete iNickFocusBlankWin;
646 delete iNickFocusGroup;
647 delete iAltConnectionWin;
648 delete iAltConnection;
656 void TPointerCaptureTest::TestFailed()
658 __ASSERT_DEBUG(iFailed==EFalse,TManPanic(ETManPanicPcFailed));
660 Client()->iGroup->GroupWin()->SetOrdinalPosition(0,10); // Put error dialog on top of test windows
662 TRAPD(err,dRet=doTestFailedL());
663 Client()->iGroup->GroupWin()->SetOrdinalPosition(0,0);
670 TRAP(err,TestL(EFalse));
675 TInt TPointerCaptureTest::doTestFailedL()
677 CTDialog *dialog=new(ELeave) CTDialog();
678 dialog->SetTitle(_L("Pointer capture test failed"));
679 dialog->SetNumButtons(2);
680 dialog->SetButtonText(0,_L("Retest"));
681 dialog->SetButtonText(1,_L("Fail"));
682 dialog->ConstructLD(*Client()->iGroup,*Client()->iGc);
683 return dialog->Display();
686 TInt TPointerCaptureTest::State() const
691 TInt TPointerCaptureTest::SubState() const
696 void TPointerCaptureTest::doIncSubState()
702 case ECaptureDisabled:
708 case ECaptureAllGroups:
711 case EDragDropCapture:
714 case EDragDropCaptureAllGroups:
717 case ENormalCaptureWithoutFocus:
726 void TPointerCaptureTest::GotDD()
728 if (iDDState==DDStateWaiting)
734 void TPointerCaptureTest::IncSubState(TBool aNeedsDD)
738 if (iDDState!=DDStateNull)
743 else if (iDDState==DDStateGot)
746 iDDState=DDStateWaiting;
749 void TPointerCaptureTest::StateChanged()
751 iDDState=DDStateNull;
752 iChildWin->SubStateChanged();
753 iMainWin->SubStateChanged();
754 iAltGroupWin->SubStateChanged();
755 iAltConnectionWin->SubStateChanged();
758 void TPointerCaptureTest::AbortTests()
764 void TPointerCaptureTest::NextTest()
770 void TPointerCaptureTest::RestartTest()
775 void TPointerCaptureTest::ConstructL()
777 TSize size(Client()->iGroup->Size());
778 TInt winWidth2=size.iWidth/2-EWinBorderSize*2;
779 TInt winWidth4=size.iWidth/4-EWinBorderSize*2;
780 TInt winHeight=size.iHeight/2-EWinBorderSize*2;
782 iMainGroup=new(ELeave) CTWindowGroup(Client());
783 iMainGroup->ConstructL();
784 iMainGroup->GroupWin()->SetOrdinalPosition(0,1);
785 iMainWin=new(ELeave) CPcWindowMain(this);
786 iMainWin->SetUpL(TPoint(EWinBorderSize,EWinBorderSize) ,TSize(winWidth2,winHeight) ,iMainGroup);
787 iMainGroup->SetCurrentWindow(iMainWin);
788 iChildWin=new(ELeave) CPcWindowChild(this);
789 iChildWin->SetUpL(TPoint(0,winHeight/2) ,TSize(winWidth2,winHeight/2) ,iMainWin);
791 iAltGroup=new(ELeave) CTWindowGroup(Client());
792 iAltGroup->ConstructL();
793 iAltGroup->GroupWin()->SetOrdinalPosition(0,1);
794 iAltGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
795 iAltGroupWin=new(ELeave) CPcWindowAltGroup(this);
796 iAltGroupWin->SetUpL(TPoint(size.iWidth/2+EWinBorderSize,EWinBorderSize) ,TSize(winWidth4,winHeight) ,iAltGroup);
798 iAltConnection=new(ELeave) CPcConnection(this);
799 iAltConnection->ConstructL();
800 iAltConnectionWin=new(ELeave) CPcWindowAltConnection(this);
801 iAltConnectionWin->SetUpL(TPoint(size.iWidth/4*3+EWinBorderSize,EWinBorderSize) ,TSize(winWidth4,winHeight),iAltConnection->iGroup,*iAltConnection->iGc);
804 void TPointerCaptureTest::NickFocusL()
806 iNickFocusGroup=new(ELeave) CPcWindowNickFocusGroup(this,Client());
807 iNickFocusGroup->ConstructL();
808 iNickFocusGroup->GroupWin()->SetOrdinalPosition(0,2);
809 iNickFocusBlankWin=new(ELeave) CTBlankWindow();
810 iNickFocusBlankWin->ConstructL(*iNickFocusGroup);
811 iNickFocusBlankWin->SetSize(TSize(1,1));
812 iNickFocusBlankWin->Activate();
815 void TPointerCaptureTest::SetCapture(TInt aCaptureFlags)
817 iMainWin->Win()->SetPointerCapture(aCaptureFlags);
820 TestState TPointerCaptureTest::DoTestL()
827 case ECaptureDisabled:
828 LogSubTest(_L("No capture"),1);
829 SetCapture(RWindowBase::TCaptureDisabled);
832 LogSubTest(_L("Normal capture"),1);
833 SetCapture(RWindowBase::TCaptureEnabled);
835 case ECaptureAllGroups:
836 LogSubTest(_L("All groups"),1);
837 SetCapture(RWindowBase::TCaptureEnabled|RWindowBase::TCaptureFlagAllGroups);
839 case EDragDropCapture:
840 LogSubTest(_L("Drag & Drop"),1);
841 SetCapture(RWindowBase::TCaptureDragDrop&~RWindowBase::TCaptureFlagAllGroups);
843 case EDragDropCaptureAllGroups:
844 LogSubTest(_L("Drag & Drop All groups"),1);
845 SetCapture(RWindowBase::TCaptureDragDrop);
847 case ENormalCaptureWithoutFocus:
848 LogSubTest(_L("Without focus"),1);
850 SetCapture(RWindowBase::TCaptureEnabled);