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 multiple connections to the window server
21 #include "../tlib/testbase.h"
24 const TInt EMaxSubState=3;
29 class CMcConnectionBase : public CTClient
32 CMcConnectionBase(TMultiConTest *aTest);
34 virtual void ConstructL();
35 void SubStateChanged();
42 class CMcConnection : public CMcConnectionBase // Sets AutoForeground off
45 CMcConnection(TMultiConTest *aTest);
49 class CMcWindowGroupAf : public CTWindowGroup
52 CMcWindowGroupAf(CTClient *aClient);
53 void KeyL(const TKeyEvent &aKey, const TTime &aTime);
56 class CMcConnectionAf : public CMcConnectionBase // Sets AutoForeground on
59 CMcConnectionAf(TMultiConTest *aTest);
61 void KeyL(const TKeyEvent &aKey);
64 class CMcConnectionDef : public CMcConnectionBase // Leaves AutoForeground as the default value
67 CMcConnectionDef(TMultiConTest *aTest);
71 class CMcWindowBase : public CTWin
74 CMcWindowBase(TMultiConTest *aTest);
75 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
76 virtual void Draw()=0;
77 virtual void PointerL(const TPointerEvent &pointer,const TTime &)=0;
83 class CMcWindow : public CMcWindowBase
86 CMcWindow(TMultiConTest *aTest);
88 virtual void PointerL(const TPointerEvent &pointer,const TTime &);
91 class CMcWindowAf : public CMcWindowBase
94 CMcWindowAf(TMultiConTest *aTest);
96 virtual void PointerL(const TPointerEvent &pointer,const TTime &);
100 class CMcWindowDef : public CMcWindowBase
103 CMcWindowDef(TMultiConTest *aTest);
105 virtual void PointerL(const TPointerEvent &pointer,const TTime &);
108 class TMultiConTest : public CTestBase
115 void EndAutoForegroundTest();
116 TInt SubState() const;
119 CMcConnectionAf *iConn1;
120 CMcConnection *iConn2;
121 CMcConnectionDef *iConn3;
127 GLDEF_C CTestBase *CreateMultiConTest()
129 return(new(ELeave) TMultiConTest());
132 TMultiConTest::TMultiConTest() : CTestBase(_L("MultiCon"))
135 TMultiConTest::~TMultiConTest()
142 void TMultiConTest::EndAutoForegroundTest()
144 iConn1->iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
145 iConn2->iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
146 iConn3->iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
150 void TMultiConTest::ConstructL()
152 iConn3=new(ELeave) CMcConnectionDef(this);
153 iConn3->ConstructL();
154 iConn2=new(ELeave) CMcConnection(this);
155 iConn2->ConstructL();
156 iConn1=new(ELeave) CMcConnectionAf(this);
157 iConn1->ConstructL();
163 CMcConnectionBase::CMcConnectionBase(TMultiConTest *aTest) : iTest(aTest)
167 CMcConnectionBase::~CMcConnectionBase()
173 void CMcConnectionBase::SubStateChanged()
179 void CMcConnectionBase::ConstructL()
181 CTClient::ConstructL();
182 User::LeaveIfError(iScreen->CreateContext(iGc));
185 CMcConnection::CMcConnection(TMultiConTest *aTest) : CMcConnectionBase(aTest)
189 void CMcConnection::ConstructL()
191 CMcConnectionBase::ConstructL();
192 iGroup=new(ELeave) CTWindowGroup(this);
193 iGroup->ConstructL();
194 TSize screenSize=iGroup->Size();
195 TInt winWidth=screenSize.iWidth/3;
196 TInt winHeight=screenSize.iHeight/2-10;
197 iGroup->GroupWin()->AutoForeground(EFalse);
198 CMcWindow *win=new(ELeave) CMcWindow(iTest);
199 win->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),iGroup,*iGc);
204 CMcConnectionAf::CMcConnectionAf(TMultiConTest *aTest) : CMcConnectionBase(aTest)
208 void CMcConnectionAf::ConstructL()
210 CMcConnectionBase::ConstructL();
211 iGroup=new(ELeave) CMcWindowGroupAf(this);
212 iGroup->ConstructL();
213 TSize screenSize=iGroup->Size();
214 TInt winWidth=screenSize.iWidth/3;
215 TInt winHeight=screenSize.iHeight/2-10;
216 iGroup->GroupWin()->AutoForeground(ETrue);
217 CMcWindowAf *win=new(ELeave) CMcWindowAf(iTest);
218 win->SetUpL(TPoint(winWidth,5),TSize(winWidth,winHeight),iGroup,*iGc);
223 void CMcConnectionAf::KeyL(const TKeyEvent &aKey)
228 if (iTest->SubState()==0)
230 iTest->TestL(iGroup->GroupWin()->OrdinalPosition()==0);
231 iTest->IncSubState();
235 iTest->EndAutoForegroundTest();
240 CMcConnectionDef::CMcConnectionDef(TMultiConTest *aTest) : CMcConnectionBase(aTest)
244 void CMcConnectionDef::ConstructL()
246 CMcConnectionBase::ConstructL();
247 iGroup=new(ELeave) CTWindowGroup(this);
248 iGroup->ConstructL();
249 iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
250 TSize screenSize=iGroup->Size();
251 TInt winWidth=screenSize.iWidth/3-10;
252 TInt winHeight=(screenSize.iHeight/2)-10;
253 CMcWindowDef *win=new(ELeave) CMcWindowDef(iTest);
254 win->SetUpL(TPoint(5+winWidth/2,screenSize.iHeight/2),TSize(winWidth,winHeight),iGroup,*iGc);
260 // CMcWindow, base class //
263 CMcWindowBase::CMcWindowBase(TMultiConTest *aTest) : CTWin(), iTest(aTest)
267 void CMcWindowBase::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
269 ConstructExtLD(*parent,pos,size);
270 iWin.SetBackgroundColor(iBack);
276 // CMcWindow, window used to test multiple connections //
279 CMcWindow::CMcWindow(TMultiConTest *aTest) : CMcWindowBase(aTest)
281 iBack=TRgb::Gray256(221);
284 void CMcWindow::PointerL(const TPointerEvent &pointer,const TTime &)
286 if (pointer.iType==TPointerEvent::EButton1Down)
288 switch(iTest->SubState())
291 iTest->TestL(Client()->iGroup->GroupWin()->OrdinalPosition()==1);
292 iTest->IncSubState();
298 void CMcWindow::Draw()
302 switch(iTest->SubState())
305 buf.Copy(_L("Click on me"));
313 buf.Copy(_L("ERROR"));
315 iGc->DrawText(buf, TPoint(10,20));
319 // CMcWindowAf, Auto foreground version of CMcWindow //
322 CMcWindowAf::CMcWindowAf(TMultiConTest *aTest) : CMcWindowBase(aTest)
324 iBack=TRgb::Gray256(150);
327 void CMcWindowAf::PointerL(const TPointerEvent &pointer,const TTime &)
329 if (pointer.iType==TPointerEvent::EButton1Down)
331 switch(iTest->SubState())
334 iTest->TestL(Client()->iGroup->GroupWin()->OrdinalPosition()==0);
335 iTest->IncSubState();
341 void CMcWindowAf::Draw()
345 switch(iTest->SubState())
351 buf.Copy(_L("Press <Space>"));
354 buf.Copy(_L("Click on me"));
357 buf.Copy(_L("ERROR"));
359 iGc->DrawText(buf, TPoint(10,20));
364 CMcWindowGroupAf::CMcWindowGroupAf(CTClient *aClient) : CTWindowGroup(aClient)
367 void CMcWindowGroupAf::KeyL(const TKeyEvent &aKey, const TTime &)
369 ((CMcConnectionAf *)iClient)->KeyL(aKey);
373 // CMcWindowDef, Default auto foreground version of CMcWindow //
376 CMcWindowDef::CMcWindowDef(TMultiConTest *aTest) : CMcWindowBase(aTest)
378 iBack=TRgb::Gray256(236);
381 void CMcWindowDef::PointerL(const TPointerEvent &pointer,const TTime &)
383 if (pointer.iType==TPointerEvent::EButton1Down)
385 switch(iTest->SubState())
388 iTest->TestL(Client()->iGroup->GroupWin()->OrdinalPosition()==0);
389 iTest->IncSubState();
395 void CMcWindowDef::Draw()
399 switch(iTest->SubState())
406 buf.Copy(_L("Click on me"));
409 buf.Copy(_L("ERROR"));
411 iGc->DrawText(buf, TPoint(10,20));
416 TInt TMultiConTest::SubState() const
421 void TMultiConTest::IncSubState()
423 if (iSubState==EMaxSubState)
424 EndAutoForegroundTest();
428 iConn1->SubStateChanged();
429 iConn2->SubStateChanged();
430 iConn3->SubStateChanged();
434 TestState TMultiConTest::DoTestL()
439 LogSubTest(_L("MultiCon 1"),1);