Update contrib.
1 // Copyright (c) 2001-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 Key Click Plug-In DLL
21 #include <graphics/pointereventdata.h>
29 GLREF_D struct TSharedMemory GSharedMemory;
34 virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0;
35 virtual void PointerEvent(const TPointerEvent& aEvent)=0;
36 virtual void OtherEvent(TInt aType,TAny* aParam)=0;
52 NONSHARABLE_CLASS(TLogClicks) : public MClickMaker
56 inline TBool IsLogging() {return iLogging;}
57 //Pure virtual functions from MClickMaker
58 void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
59 void PointerEvent(const TPointerEvent& aEvent);
60 void OtherEvent(TInt aType,TAny* aParam=NULL);
65 NONSHARABLE_CLASS(CEventClicks) : public CBase, public MClickMaker
69 EMaxGroupWinClients=6,
74 TInt Add(TWsEvent* aEvent);
75 inline TInt Failed() {return iFailed;}
76 inline TInt Events() {return iEventsTested;}
78 void ExtendedPointerEvent(const TPointerEventData& aPointerEvent);
79 void ExpectNewWindowGroup(TInt aClient);
80 void NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen);
81 void CheckGpWinId(TInt aId);
82 void ExpectCloseWindowGroup(TInt aId);
83 void CloseWindowGroup(TInt aId);
84 void ExpectCloseWindow(TWindowCloseData& aCloseWin);
85 void CloseWindow(TWindowCloseData& aCloseWin);
86 void PointerEventInfo(TPointerEventInfo& aPointerEventInfo);
87 //Pure virtual functions from MClickMaker
88 void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
89 void PointerEvent(const TPointerEvent& aEvent);
90 void OtherEvent(TInt aType,TAny* aParam=NULL);
92 TBool GetEvent(TWsEvent& aEvent);
94 void AddGroupWindowId(TInt aClient,TInt aGpWinId);
95 void RemoveGroupWindowId(TInt aGpWinId);
97 CCirBuf<TWsEvent> iEventBuffer;
101 TGpWinInfo iGroupWins[EMaxGroupWinClients];
102 TGpWinIdData iGroupWinIds[EMaxGroupWinIdData];
104 TInt iExpectedEventData;
105 TInt iExpectedHandle;
106 TPointerEventInfo iExpectedPointerEventInfo;
107 TInt iLastNewGpWinId;
108 TAdvancedPointerEvent iLastPointerEvent;
109 TBool iExpectingExtendedPointer;
112 NONSHARABLE_CLASS(CMyClickMaker) : public CClickMaker
117 //Virtual function from CClickMaker
118 void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
119 void PointerEvent(const TPointerEvent& aEvent);
120 void OtherEvent(TInt aType,TAny* aParam);
121 TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
125 TClickOutputModes iMode;
126 MClickMaker* iCurrentClick;
127 TLogClicks iLogClicks;
128 CEventClicks* iEventClicks;
134 void TLogClicks::StartLoggingL()
136 #if defined(__WINS__)
139 CreateLogWinThreadL();
143 User::Leave(KErrNotSupported);
147 void TLogClicks::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
149 _LIT(KKeyDown, "KEY DOWN ");
150 _LIT(KKeyUp, "KEY UP ");
151 _LIT(KKeyEvent, "KEY EVENT ");
152 _LIT(KKeyRepeat, "KEY REPEAT ");
153 _LIT(KKeyUnknown, "KEY Unknown");
154 _LIT(KKeyDataFormatChar,"'%c',");
155 _LIT(KKeyDataFormatCode," Code=%u,");
156 _LIT(KKeyDataFormatScan," Scan=%d,");
157 _LIT(KKeyDataFormatModRep," Mod=0x%x, Rep=%d");
158 TBuf<bufSize> bufPlusZero;
162 bufPlusZero.Copy(KKeyEvent);
165 bufPlusZero.Copy(KKeyUp);
168 bufPlusZero.Copy(KKeyDown);
170 case EEventKeyRepeat:
171 bufPlusZero.Copy(KKeyRepeat);
174 bufPlusZero.Copy(KKeyUnknown);
177 bufPlusZero.AppendFormat(KKeyDataFormatCode,aEvent.iCode);
179 bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iCode);
180 bufPlusZero.AppendFormat(KKeyDataFormatScan,aEvent.iScanCode);
181 if (aEvent.iScanCode!=0)
182 bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iScanCode);
183 bufPlusZero.AppendFormat(KKeyDataFormatModRep,aEvent.iModifiers,aEvent.iRepeats);
184 bufPlusZero.ZeroTerminate();
185 #if defined(__WINS__)
187 SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
192 void TLogClicks::PointerEvent(const TPointerEvent& aEvent)
194 _LIT(KButtonDown, "POINTER DOWN ");
195 _LIT(KButtonUp, "POINTER UP ");
196 _LIT(KButton2Down, "BUTTON 2 DOWN");
197 _LIT(KButton2Up, "BUTTON 2 UP ");
198 _LIT(KButton3Down, "BUTTON 3 DOWN");
199 _LIT(KButton3Up, "BUTTON 3 UP ");
200 _LIT(KButtonDrag, "POINTER DRAG ");
201 _LIT(KButtonMove, "POINTER MOVE ");
202 _LIT(KButtonRepeat, "BUTTON REPEAT");
203 _LIT(KSwitchOn, "POINTER ON ");
204 _LIT(KUnknown, "PTR Unknown ");
205 //_LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Modifiers=%x");
206 _LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Mod=%x");
207 TBuf<bufSize> bufPlusZero;
208 switch (aEvent.iType)
210 case TPointerEvent::EButton1Down:
211 bufPlusZero.Copy(KButtonDown);
213 case TPointerEvent::EButton1Up:
214 bufPlusZero.Copy(KButtonUp);
216 case TPointerEvent::EButton2Down:
217 bufPlusZero.Copy(KButton2Down);
219 case TPointerEvent::EButton2Up:
220 bufPlusZero.Copy(KButton2Up);
222 case TPointerEvent::EButton3Down:
223 bufPlusZero.Copy(KButton3Down);
225 case TPointerEvent::EButton3Up:
226 bufPlusZero.Copy(KButton3Up);
228 case TPointerEvent::EDrag:
229 bufPlusZero.Copy(KButtonDrag);
231 case TPointerEvent::EMove:
232 bufPlusZero.Copy(KButtonMove);
234 case TPointerEvent::EButtonRepeat:
235 bufPlusZero.Copy(KButtonRepeat);
237 case TPointerEvent::ESwitchOn:
238 bufPlusZero.Copy(KSwitchOn);
241 bufPlusZero.Copy(KUnknown);
244 bufPlusZero.AppendFormat(KPtrDataFormat,aEvent.iPosition.iX,aEvent.iPosition.iY
245 ,aEvent.iParentPosition.iX,aEvent.iParentPosition.iY,aEvent.iModifiers);
246 bufPlusZero.ZeroTerminate();
247 #if defined(__WINS__)
249 SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
254 void TLogClicks::OtherEvent(TInt aType,TAny* aParam)
256 _LIT(KPointer,"POINTER EVENT Ver=%d, ScrPos=(%d,%d), WinClientHandle=0x%x, WinOrigin=%d, WinGpId=%d");
257 _LIT(KScreenDeviceChanged,"SCREEN DEVICE CHANGED EVENT, Mode=%d");
258 _LIT(KGroupWindowOpen,"GROUP WINDOW OPEN EVENT WinGpId=%d, Client=%d, NumWinGps=%d");
259 _LIT(KGroupWindowClose,"GROUP WINDOW CLOSE EVENT WinGpId=%d");
260 _LIT(KWindowClose,"WINDOW CLOSE EVENT Client=%d, WinGpId=%d");
261 _LIT(KEventUnknown, "EVENT Unknown");
262 TBuf<bufSize> bufPlusZero;
267 TPointerEventData& data=*static_cast<TPointerEventData*>(aParam);
268 bufPlusZero.Format(KPointer,data.iVersion,data.iCurrentPos.iX,data.iCurrentPos.iY,data.iClientHandle
269 ,data.iWindowOrigin.iX,data.iWindowOrigin.iY,data.iWindowGroupId);
272 case EEventScreenDeviceChanged:
274 TClickMakerData& data=*static_cast<TClickMakerData*>(aParam);
275 bufPlusZero.Format(KScreenDeviceChanged,data.screenDeviceMode);
278 case EEventGroupWindowOpen:
280 TGroupWindowOpenData& data=*static_cast<TGroupWindowOpenData*>(aParam);
281 bufPlusZero.Format(KGroupWindowOpen,data.iIdentifier,data.iClient,data.iNumClientWindowGroups);
284 case EEventGroupWindowClose:
285 bufPlusZero.Format(KGroupWindowClose,reinterpret_cast<TInt&>(aParam));
287 case EEventWindowClose:
289 TWindowCloseData& data=*static_cast<TWindowCloseData*>(aParam);
290 bufPlusZero.Format(KWindowClose,data.iClientHandle,data.iWindowGroupId);
294 bufPlusZero.Copy(KEventUnknown);
297 bufPlusZero.ZeroTerminate();
298 #if defined(__WINS__)
300 SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
307 void CEventClicks::ConstructL()
309 iEventBuffer.SetLengthL(EEventBufferSize);
312 TInt CEventClicks::Add(TWsEvent* aEvent)
314 return (iEventBuffer.Add(aEvent) ? KErrNone:KErrOverflow);
317 void CEventClicks::Reset()
325 void CEventClicks::ExtendedPointerEvent(const TPointerEventData& aPointerEvent)
327 if (!iExpectingExtendedPointer)
332 iExpectingExtendedPointer=EFalse;
334 if (0!=aPointerEvent.iVersion)
336 if (iLastPointerEvent.iType!=aPointerEvent.iPointerEvent.iType)
338 if (iLastPointerEvent.iModifiers!=aPointerEvent.iPointerEvent.iModifiers)
340 if (iLastPointerEvent.iPosition!=aPointerEvent.iPointerEvent.iPosition)
342 if (iLastPointerEvent.iParentPosition!=aPointerEvent.iCurrentPos)
344 if (TPointerEventData::EUnspecified!=aPointerEvent.iSource)
346 if (iExpectedPointerEventInfo.iClientHandle && iExpectedPointerEventInfo.iWinGpId>0)
348 if (iLastPointerEvent.iParentPosition-iExpectedPointerEventInfo.iParentOrigin
349 !=aPointerEvent.iPointerEvent.iParentPosition)
351 if (iExpectedPointerEventInfo.iParentOrigin+iExpectedPointerEventInfo.iWinOrigin
352 !=aPointerEvent.iWindowOrigin)
354 if (iExpectedPointerEventInfo.iClientHandle!=aPointerEvent.iClientHandle)
356 if (iExpectedPointerEventInfo.iWinGpId!=aPointerEvent.iWindowGroupId)
363 void CEventClicks::ExpectNewWindowGroup(TInt aClient)
365 if (iExpectedEvent>0)
367 iExpectedEvent=EEventGroupWindowOpen;
368 iExpectedEventData=aClient;
371 void CEventClicks::NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen)
373 iLastNewGpWinId=aGpWinOpen.iIdentifier;
374 if (iExpectedEvent!=EEventGroupWindowOpen)
380 if (iExpectedEventData>=EMaxGroupWinClients)
382 AddGroupWindowId(iExpectedEventData,iLastNewGpWinId);
383 TGpWinInfo& gpWinInfo=iGroupWins[iExpectedEventData];
384 if (gpWinInfo.iInUse)
386 if (aGpWinOpen.iClient!=gpWinInfo.iServerValue)
390 if (aGpWinOpen.iNumClientWindowGroups!=gpWinInfo.iNumGroups)
392 ++gpWinInfo.iNumGroups;
397 gpWinInfo.iInUse=ETrue;
398 gpWinInfo.iServerValue=aGpWinOpen.iClient;
399 gpWinInfo.iNumGroups=aGpWinOpen.iNumClientWindowGroups+1;
403 void CEventClicks::CheckGpWinId(TInt aId)
405 if (iLastNewGpWinId!=aId)
409 void CEventClicks::ExpectCloseWindowGroup(TInt aId)
411 if (iExpectedEvent>0)
413 iExpectedEvent=EEventGroupWindowClose;
414 iExpectedEventData=aId;
417 void CEventClicks::CloseWindowGroup(TInt aId)
419 if (iExpectedEvent!=EEventGroupWindowClose || iExpectedEventData!=aId)
421 if (iExpectedEvent==EEventGroupWindowClose)
423 RemoveGroupWindowId(aId);
426 void CEventClicks::ExpectCloseWindow(TWindowCloseData& aCloseWin)
428 if (iExpectedEvent>0)
430 iExpectedEvent=EEventWindowClose;
431 iExpectedEventData=aCloseWin.iWindowGroupId;
432 iExpectedHandle=aCloseWin.iClientHandle;
435 void CEventClicks::CloseWindow(TWindowCloseData& aCloseWin)
437 if (iExpectedEvent!=EEventWindowClose || iExpectedEventData!=aCloseWin.iWindowGroupId || iExpectedHandle!=aCloseWin.iClientHandle)
439 if (iExpectedEvent==EEventWindowClose)
443 void CEventClicks::PointerEventInfo(TPointerEventInfo& aPointerEventInfo)
445 iExpectedPointerEventInfo=aPointerEventInfo;
448 TBool CEventClicks::GetEvent(TWsEvent& aEvent)
451 if (iEventBuffer.Remove(&aEvent)<1)
459 void CEventClicks::Fail()
463 iFailed=iEventsTested;
467 void CEventClicks::AddGroupWindowId(TInt aClient,TInt aGpWinId)
470 while (ii<EMaxGroupWinIdData && iGroupWinIds[ii].iId>0)
472 if (ii<EMaxGroupWinIdData)
474 iGroupWinIds[ii].iId=aGpWinId;
475 iGroupWinIds[ii].iClient=aClient;
479 void CEventClicks::RemoveGroupWindowId(TInt aGpWinId)
482 while (ii<EMaxGroupWinIdData && iGroupWinIds[ii].iId!=aGpWinId)
484 if (ii<EMaxGroupWinIdData)
486 --iGroupWins[iGroupWinIds[ii].iClient].iNumGroups;
487 iGroupWinIds[ii].iId=0;
491 #define MODIFIER_FLAGS_TO_IGNOR EModifierNumLock
492 #pragma warning(disable : 4245) //'initializing' : conversion from 'int' to 'unsigned int', signed/unsigned mismatch
493 void CEventClicks::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
496 TEventCode eType=aType;
500 pass=(aEvent.iRepeats==0);
504 pass=(aEvent.iCode==0) && (aEvent.iRepeats==0);
506 case EEventKeyRepeat:
507 pass=(aEvent.iRepeats>0);
519 if (GetEvent(eEvent))
521 if (eEvent.Type()!=eType)
526 TKeyEvent keyEvent=*eEvent.Key();
527 TUint mask=~(EModifierAutorepeatable|MODIFIER_FLAGS_TO_IGNOR);
528 if (keyEvent.iCode!=aEvent.iCode || (keyEvent.iModifiers&mask)!=(aEvent.iModifiers&mask) || keyEvent.iScanCode!=aEvent.iScanCode
529 || (keyEvent.iRepeats==0)!=(aEvent.iRepeats==0))
536 void CEventClicks::PointerEvent(const TPointerEvent& aEvent)
538 // Click events are now all advanced events so in order to test the modifier bits
539 // appropriately we need to copy them as TAdvancedPointerEvent not TPointerEvent
540 if(!aEvent.IsAdvancedPointerEvent())
545 iLastPointerEvent=*aEvent.AdvancedPointerEvent();
547 if (iExpectingExtendedPointer)
550 iExpectingExtendedPointer=ETrue;
552 if (GetEvent(eEvent))
554 TAdvancedPointerEvent pEvent=*eEvent.Pointer();
555 TUint mask=~(MODIFIER_FLAGS_TO_IGNOR);
556 if (pEvent.iType!=aEvent.iType || (pEvent.iModifiers&mask)!=(aEvent.iModifiers&mask)
557 || pEvent.iPosition!=aEvent.iPosition || pEvent.iParentPosition!=aEvent.iParentPosition)
564 void CEventClicks::OtherEvent(TInt aType,TAny* aParam)
567 if (aType!=EEventPointer)
572 ExtendedPointerEvent(*static_cast<TPointerEventData*>(aParam));
574 case EEventScreenDeviceChanged:
576 case EEventGroupWindowOpen:
577 NewWindowGroup(*static_cast<TGroupWindowOpenData*>(aParam));
579 case EEventGroupWindowClose:
580 CloseWindowGroup(reinterpret_cast<TInt>(aParam));
582 case EEventWindowClose:
583 CloseWindow(*static_cast<TWindowCloseData*>(aParam));
590 //GetEvent() is not call here because CWsGroupWindow::EnableScreenChangeEvents() could not be
591 //been called.This mean that no EEventScreenDeviceChanged will be put in the client queue.
592 //Instead this event will be always passed to the click plugin if this is present.
594 #pragma warning(default : 4245)
599 CMyClickMaker::~CMyClickMaker()
604 void CMyClickMaker::ConstructL()
607 iEventClicks=new(ELeave) CEventClicks();
608 iEventClicks->ConstructL();
611 void CMyClickMaker::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
614 iCurrentClick->KeyEvent(aType,aEvent);
617 void CMyClickMaker::PointerEvent(const TPointerEvent& aEvent)
620 iCurrentClick->PointerEvent(aEvent);
623 void CMyClickMaker::OtherEvent(TInt aType,TAny* aParam)
626 iCurrentClick->OtherEvent(aType,aParam);
629 TInt CMyClickMaker::CommandReplyL(TInt aOpcode,TAny* aArgs)
633 case EClickCommandToggleOutput:
646 case EClickCommandSetOutput:
647 iMode=*STATIC_CAST(TClickOutputModes*,aArgs);
654 iCurrentClick=iEventClicks;
655 iEventClicks->Reset();
663 return iEventClicks->Add(STATIC_CAST(TWsEvent*,aArgs));
665 return iEventClicks->Failed();
667 return iEventClicks->Events();
669 iEventClicks->Reset();
671 case EClickCreateGroupWin:
672 iEventClicks->ExpectNewWindowGroup(*static_cast<TInt*>(aArgs));
674 case EClickCheckGpWinId:
675 iEventClicks->CheckGpWinId(*static_cast<TInt*>(aArgs));
677 case EClickCloseGroupWin:
678 iEventClicks->ExpectCloseWindowGroup(*static_cast<TInt*>(aArgs));
681 iEventClicks->ExpectCloseWindow(*static_cast<TWindowCloseData*>(aArgs));
683 case EClickPointerEvent:
684 iEventClicks->PointerEventInfo(*static_cast<TPointerEventInfo*>(aArgs));
691 void CMyClickMaker::LogToWindowL()
695 iLogClicks.StartLoggingL();
696 iMode=EClickToWindow;
697 iCurrentClick=&iLogClicks;
701 EXPORT_C CClickMaker* CreateClickMakerL()
703 CMyClickMaker* plugIn=new(ELeave) CMyClickMaker;
704 CleanupStack::PushL(plugIn);
705 plugIn->ConstructL();
706 CleanupStack::Pop(plugIn);