sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Test Key Click Plug-In DLL sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include "W32CLICK.H" sl@0: #include "CLICK.H" sl@0: #include sl@0: #if defined(__WINS__) sl@0: #include sl@0: #include "LOGWIN.H" sl@0: #endif sl@0: sl@0: #define bufSize 64 sl@0: sl@0: GLREF_D struct TSharedMemory GSharedMemory; sl@0: sl@0: class MClickMaker sl@0: { sl@0: public: sl@0: virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0; sl@0: virtual void PointerEvent(const TPointerEvent& aEvent)=0; sl@0: virtual void OtherEvent(TInt aType,TAny* aParam)=0; sl@0: }; sl@0: sl@0: struct TGpWinInfo sl@0: { sl@0: TBool iInUse; sl@0: TInt iServerValue; sl@0: TInt iNumGroups; sl@0: }; sl@0: sl@0: struct TGpWinIdData sl@0: { sl@0: TInt iId; sl@0: TInt iClient; sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(TLogClicks) : public MClickMaker sl@0: { sl@0: public: sl@0: void StartLoggingL(); sl@0: inline TBool IsLogging() {return iLogging;} sl@0: //Pure virtual functions from MClickMaker sl@0: void KeyEvent(TEventCode aType,const TKeyEvent& aEvent); sl@0: void PointerEvent(const TPointerEvent& aEvent); sl@0: void OtherEvent(TInt aType,TAny* aParam=NULL); sl@0: private: sl@0: TBool iLogging; sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CEventClicks) : public CBase, public MClickMaker sl@0: { sl@0: enum { sl@0: EEventBufferSize=32, sl@0: EMaxGroupWinClients=6, sl@0: EMaxGroupWinIdData=12 sl@0: }; sl@0: public: sl@0: void ConstructL(); sl@0: TInt Add(TWsEvent* aEvent); sl@0: inline TInt Failed() {return iFailed;} sl@0: inline TInt Events() {return iEventsTested;} sl@0: void Reset(); sl@0: void ExtendedPointerEvent(const TPointerEventData& aPointerEvent); sl@0: void ExpectNewWindowGroup(TInt aClient); sl@0: void NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen); sl@0: void CheckGpWinId(TInt aId); sl@0: void ExpectCloseWindowGroup(TInt aId); sl@0: void CloseWindowGroup(TInt aId); sl@0: void ExpectCloseWindow(TWindowCloseData& aCloseWin); sl@0: void CloseWindow(TWindowCloseData& aCloseWin); sl@0: void PointerEventInfo(TPointerEventInfo& aPointerEventInfo); sl@0: //Pure virtual functions from MClickMaker sl@0: void KeyEvent(TEventCode aType,const TKeyEvent& aEvent); sl@0: void PointerEvent(const TPointerEvent& aEvent); sl@0: void OtherEvent(TInt aType,TAny* aParam=NULL); sl@0: private: sl@0: TBool GetEvent(TWsEvent& aEvent); sl@0: void Fail(); sl@0: void AddGroupWindowId(TInt aClient,TInt aGpWinId); sl@0: void RemoveGroupWindowId(TInt aGpWinId); sl@0: private: sl@0: CCirBuf iEventBuffer; sl@0: TInt iFailed; sl@0: TInt iEventsTested; sl@0: TInt iFailedAt; sl@0: TGpWinInfo iGroupWins[EMaxGroupWinClients]; sl@0: TGpWinIdData iGroupWinIds[EMaxGroupWinIdData]; sl@0: TInt iExpectedEvent; sl@0: TInt iExpectedEventData; sl@0: TInt iExpectedHandle; sl@0: TPointerEventInfo iExpectedPointerEventInfo; sl@0: TInt iLastNewGpWinId; sl@0: TAdvancedPointerEvent iLastPointerEvent; sl@0: TBool iExpectingExtendedPointer; sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CMyClickMaker) : public CClickMaker sl@0: { sl@0: public: sl@0: ~CMyClickMaker(); sl@0: void ConstructL(); sl@0: //Virtual function from CClickMaker sl@0: void KeyEvent(TEventCode aType,const TKeyEvent& aEvent); sl@0: void PointerEvent(const TPointerEvent& aEvent); sl@0: void OtherEvent(TInt aType,TAny* aParam); sl@0: TInt CommandReplyL(TInt aOpcode, TAny *aArgs); sl@0: private: sl@0: void LogToWindowL(); sl@0: private: sl@0: TClickOutputModes iMode; sl@0: MClickMaker* iCurrentClick; sl@0: TLogClicks iLogClicks; sl@0: CEventClicks* iEventClicks; sl@0: }; sl@0: sl@0: sl@0: /*TLogClicks*/ sl@0: sl@0: void TLogClicks::StartLoggingL() sl@0: { sl@0: #if defined(__WINS__) sl@0: if (!IsLogging()) sl@0: { sl@0: CreateLogWinThreadL(); sl@0: iLogging=ETrue; sl@0: } sl@0: #else sl@0: User::Leave(KErrNotSupported); sl@0: #endif sl@0: } sl@0: sl@0: void TLogClicks::KeyEvent(TEventCode aType,const TKeyEvent& aEvent) sl@0: { sl@0: _LIT(KKeyDown, "KEY DOWN "); sl@0: _LIT(KKeyUp, "KEY UP "); sl@0: _LIT(KKeyEvent, "KEY EVENT "); sl@0: _LIT(KKeyRepeat, "KEY REPEAT "); sl@0: _LIT(KKeyUnknown, "KEY Unknown"); sl@0: _LIT(KKeyDataFormatChar,"'%c',"); sl@0: _LIT(KKeyDataFormatCode," Code=%u,"); sl@0: _LIT(KKeyDataFormatScan," Scan=%d,"); sl@0: _LIT(KKeyDataFormatModRep," Mod=0x%x, Rep=%d"); sl@0: TBuf bufPlusZero; sl@0: switch (aType) sl@0: { sl@0: case EEventKey: sl@0: bufPlusZero.Copy(KKeyEvent); sl@0: break; sl@0: case EEventKeyUp: sl@0: bufPlusZero.Copy(KKeyUp); sl@0: break; sl@0: case EEventKeyDown: sl@0: bufPlusZero.Copy(KKeyDown); sl@0: break; sl@0: case EEventKeyRepeat: sl@0: bufPlusZero.Copy(KKeyRepeat); sl@0: break; sl@0: default: sl@0: bufPlusZero.Copy(KKeyUnknown); sl@0: break; sl@0: } sl@0: bufPlusZero.AppendFormat(KKeyDataFormatCode,aEvent.iCode); sl@0: if (aEvent.iCode!=0) sl@0: bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iCode); sl@0: bufPlusZero.AppendFormat(KKeyDataFormatScan,aEvent.iScanCode); sl@0: if (aEvent.iScanCode!=0) sl@0: bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iScanCode); sl@0: bufPlusZero.AppendFormat(KKeyDataFormatModRep,aEvent.iModifiers,aEvent.iRepeats); sl@0: bufPlusZero.ZeroTerminate(); sl@0: #if defined(__WINS__) sl@0: Emulator::Escape(); sl@0: SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr())); sl@0: Emulator::Reenter(); sl@0: #endif sl@0: } sl@0: sl@0: void TLogClicks::PointerEvent(const TPointerEvent& aEvent) sl@0: { sl@0: _LIT(KButtonDown, "POINTER DOWN "); sl@0: _LIT(KButtonUp, "POINTER UP "); sl@0: _LIT(KButton2Down, "BUTTON 2 DOWN"); sl@0: _LIT(KButton2Up, "BUTTON 2 UP "); sl@0: _LIT(KButton3Down, "BUTTON 3 DOWN"); sl@0: _LIT(KButton3Up, "BUTTON 3 UP "); sl@0: _LIT(KButtonDrag, "POINTER DRAG "); sl@0: _LIT(KButtonMove, "POINTER MOVE "); sl@0: _LIT(KButtonRepeat, "BUTTON REPEAT"); sl@0: _LIT(KSwitchOn, "POINTER ON "); sl@0: _LIT(KUnknown, "PTR Unknown "); sl@0: //_LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Modifiers=%x"); sl@0: _LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Mod=%x"); sl@0: TBuf bufPlusZero; sl@0: switch (aEvent.iType) sl@0: { sl@0: case TPointerEvent::EButton1Down: sl@0: bufPlusZero.Copy(KButtonDown); sl@0: break; sl@0: case TPointerEvent::EButton1Up: sl@0: bufPlusZero.Copy(KButtonUp); sl@0: break; sl@0: case TPointerEvent::EButton2Down: sl@0: bufPlusZero.Copy(KButton2Down); sl@0: break; sl@0: case TPointerEvent::EButton2Up: sl@0: bufPlusZero.Copy(KButton2Up); sl@0: break; sl@0: case TPointerEvent::EButton3Down: sl@0: bufPlusZero.Copy(KButton3Down); sl@0: break; sl@0: case TPointerEvent::EButton3Up: sl@0: bufPlusZero.Copy(KButton3Up); sl@0: break; sl@0: case TPointerEvent::EDrag: sl@0: bufPlusZero.Copy(KButtonDrag); sl@0: break; sl@0: case TPointerEvent::EMove: sl@0: bufPlusZero.Copy(KButtonMove); sl@0: break; sl@0: case TPointerEvent::EButtonRepeat: sl@0: bufPlusZero.Copy(KButtonRepeat); sl@0: break; sl@0: case TPointerEvent::ESwitchOn: sl@0: bufPlusZero.Copy(KSwitchOn); sl@0: break; sl@0: default: sl@0: bufPlusZero.Copy(KUnknown); sl@0: break; sl@0: } sl@0: bufPlusZero.AppendFormat(KPtrDataFormat,aEvent.iPosition.iX,aEvent.iPosition.iY sl@0: ,aEvent.iParentPosition.iX,aEvent.iParentPosition.iY,aEvent.iModifiers); sl@0: bufPlusZero.ZeroTerminate(); sl@0: #if defined(__WINS__) sl@0: Emulator::Escape(); sl@0: SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr())); sl@0: Emulator::Reenter(); sl@0: #endif sl@0: } sl@0: sl@0: void TLogClicks::OtherEvent(TInt aType,TAny* aParam) sl@0: { sl@0: _LIT(KPointer,"POINTER EVENT Ver=%d, ScrPos=(%d,%d), WinClientHandle=0x%x, WinOrigin=%d, WinGpId=%d"); sl@0: _LIT(KScreenDeviceChanged,"SCREEN DEVICE CHANGED EVENT, Mode=%d"); sl@0: _LIT(KGroupWindowOpen,"GROUP WINDOW OPEN EVENT WinGpId=%d, Client=%d, NumWinGps=%d"); sl@0: _LIT(KGroupWindowClose,"GROUP WINDOW CLOSE EVENT WinGpId=%d"); sl@0: _LIT(KWindowClose,"WINDOW CLOSE EVENT Client=%d, WinGpId=%d"); sl@0: _LIT(KEventUnknown, "EVENT Unknown"); sl@0: TBuf bufPlusZero; sl@0: switch (aType) sl@0: { sl@0: case EEventPointer: sl@0: { sl@0: TPointerEventData& data=*static_cast(aParam); sl@0: bufPlusZero.Format(KPointer,data.iVersion,data.iCurrentPos.iX,data.iCurrentPos.iY,data.iClientHandle sl@0: ,data.iWindowOrigin.iX,data.iWindowOrigin.iY,data.iWindowGroupId); sl@0: } sl@0: break; sl@0: case EEventScreenDeviceChanged: sl@0: { sl@0: TClickMakerData& data=*static_cast(aParam); sl@0: bufPlusZero.Format(KScreenDeviceChanged,data.screenDeviceMode); sl@0: } sl@0: break; sl@0: case EEventGroupWindowOpen: sl@0: { sl@0: TGroupWindowOpenData& data=*static_cast(aParam); sl@0: bufPlusZero.Format(KGroupWindowOpen,data.iIdentifier,data.iClient,data.iNumClientWindowGroups); sl@0: } sl@0: break; sl@0: case EEventGroupWindowClose: sl@0: bufPlusZero.Format(KGroupWindowClose,reinterpret_cast(aParam)); sl@0: break; sl@0: case EEventWindowClose: sl@0: { sl@0: TWindowCloseData& data=*static_cast(aParam); sl@0: bufPlusZero.Format(KWindowClose,data.iClientHandle,data.iWindowGroupId); sl@0: } sl@0: break; sl@0: default: sl@0: bufPlusZero.Copy(KEventUnknown); sl@0: break; sl@0: } sl@0: bufPlusZero.ZeroTerminate(); sl@0: #if defined(__WINS__) sl@0: Emulator::Escape(); sl@0: SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr())); sl@0: Emulator::Reenter(); sl@0: #endif sl@0: } sl@0: sl@0: /*CEventClicks*/ sl@0: sl@0: void CEventClicks::ConstructL() sl@0: { sl@0: iEventBuffer.SetLengthL(EEventBufferSize); sl@0: } sl@0: sl@0: TInt CEventClicks::Add(TWsEvent* aEvent) sl@0: { sl@0: return (iEventBuffer.Add(aEvent) ? KErrNone:KErrOverflow); sl@0: } sl@0: sl@0: void CEventClicks::Reset() sl@0: { sl@0: iFailed=EFalse; sl@0: iEventsTested=0; sl@0: iExpectedEvent=0; sl@0: iLastNewGpWinId=0; sl@0: } sl@0: sl@0: void CEventClicks::ExtendedPointerEvent(const TPointerEventData& aPointerEvent) sl@0: { sl@0: if (!iExpectingExtendedPointer) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: iExpectingExtendedPointer=EFalse; sl@0: TBool match=ETrue; sl@0: if (0!=aPointerEvent.iVersion) sl@0: match=EFalse; sl@0: if (iLastPointerEvent.iType!=aPointerEvent.iPointerEvent.iType) sl@0: match=EFalse; sl@0: if (iLastPointerEvent.iModifiers!=aPointerEvent.iPointerEvent.iModifiers) sl@0: match=EFalse; sl@0: if (iLastPointerEvent.iPosition!=aPointerEvent.iPointerEvent.iPosition) sl@0: match=EFalse; sl@0: if (iLastPointerEvent.iParentPosition!=aPointerEvent.iCurrentPos) sl@0: match=EFalse; sl@0: if (TPointerEventData::EUnspecified!=aPointerEvent.iSource) sl@0: match=EFalse; sl@0: if (iExpectedPointerEventInfo.iClientHandle && iExpectedPointerEventInfo.iWinGpId>0) sl@0: { sl@0: if (iLastPointerEvent.iParentPosition-iExpectedPointerEventInfo.iParentOrigin sl@0: !=aPointerEvent.iPointerEvent.iParentPosition) sl@0: match=EFalse; sl@0: if (iExpectedPointerEventInfo.iParentOrigin+iExpectedPointerEventInfo.iWinOrigin sl@0: !=aPointerEvent.iWindowOrigin) sl@0: match=EFalse; sl@0: if (iExpectedPointerEventInfo.iClientHandle!=aPointerEvent.iClientHandle) sl@0: match=EFalse; sl@0: if (iExpectedPointerEventInfo.iWinGpId!=aPointerEvent.iWindowGroupId) sl@0: match=EFalse; sl@0: } sl@0: if (!match) sl@0: Fail(); sl@0: } sl@0: sl@0: void CEventClicks::ExpectNewWindowGroup(TInt aClient) sl@0: { sl@0: if (iExpectedEvent>0) sl@0: Fail(); sl@0: iExpectedEvent=EEventGroupWindowOpen; sl@0: iExpectedEventData=aClient; sl@0: } sl@0: sl@0: void CEventClicks::NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen) sl@0: { sl@0: iLastNewGpWinId=aGpWinOpen.iIdentifier; sl@0: if (iExpectedEvent!=EEventGroupWindowOpen) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: iExpectedEvent=0; sl@0: if (iExpectedEventData>=EMaxGroupWinClients) sl@0: return; sl@0: AddGroupWindowId(iExpectedEventData,iLastNewGpWinId); sl@0: TGpWinInfo& gpWinInfo=iGroupWins[iExpectedEventData]; sl@0: if (gpWinInfo.iInUse) sl@0: { sl@0: if (aGpWinOpen.iClient!=gpWinInfo.iServerValue) sl@0: Fail(); sl@0: else sl@0: { sl@0: if (aGpWinOpen.iNumClientWindowGroups!=gpWinInfo.iNumGroups) sl@0: Fail(); sl@0: ++gpWinInfo.iNumGroups; sl@0: } sl@0: } sl@0: else sl@0: { sl@0: gpWinInfo.iInUse=ETrue; sl@0: gpWinInfo.iServerValue=aGpWinOpen.iClient; sl@0: gpWinInfo.iNumGroups=aGpWinOpen.iNumClientWindowGroups+1; sl@0: } sl@0: } sl@0: sl@0: void CEventClicks::CheckGpWinId(TInt aId) sl@0: { sl@0: if (iLastNewGpWinId!=aId) sl@0: Fail(); sl@0: } sl@0: sl@0: void CEventClicks::ExpectCloseWindowGroup(TInt aId) sl@0: { sl@0: if (iExpectedEvent>0) sl@0: Fail(); sl@0: iExpectedEvent=EEventGroupWindowClose; sl@0: iExpectedEventData=aId; sl@0: } sl@0: sl@0: void CEventClicks::CloseWindowGroup(TInt aId) sl@0: { sl@0: if (iExpectedEvent!=EEventGroupWindowClose || iExpectedEventData!=aId) sl@0: Fail(); sl@0: if (iExpectedEvent==EEventGroupWindowClose) sl@0: iExpectedEvent=0; sl@0: RemoveGroupWindowId(aId); sl@0: } sl@0: sl@0: void CEventClicks::ExpectCloseWindow(TWindowCloseData& aCloseWin) sl@0: { sl@0: if (iExpectedEvent>0) sl@0: Fail(); sl@0: iExpectedEvent=EEventWindowClose; sl@0: iExpectedEventData=aCloseWin.iWindowGroupId; sl@0: iExpectedHandle=aCloseWin.iClientHandle; sl@0: } sl@0: sl@0: void CEventClicks::CloseWindow(TWindowCloseData& aCloseWin) sl@0: { sl@0: if (iExpectedEvent!=EEventWindowClose || iExpectedEventData!=aCloseWin.iWindowGroupId || iExpectedHandle!=aCloseWin.iClientHandle) sl@0: Fail(); sl@0: if (iExpectedEvent==EEventWindowClose) sl@0: iExpectedEvent=0; sl@0: } sl@0: sl@0: void CEventClicks::PointerEventInfo(TPointerEventInfo& aPointerEventInfo) sl@0: { sl@0: iExpectedPointerEventInfo=aPointerEventInfo; sl@0: } sl@0: sl@0: TBool CEventClicks::GetEvent(TWsEvent& aEvent) sl@0: { sl@0: ++iEventsTested; sl@0: if (iEventBuffer.Remove(&aEvent)<1) sl@0: { sl@0: Fail(); sl@0: return ETrue; sl@0: } sl@0: return EFalse; sl@0: } sl@0: sl@0: void CEventClicks::Fail() sl@0: { sl@0: if (!iFailed) sl@0: { sl@0: iFailed=iEventsTested; sl@0: } sl@0: } sl@0: sl@0: void CEventClicks::AddGroupWindowId(TInt aClient,TInt aGpWinId) sl@0: { sl@0: TInt ii=0; sl@0: while (ii0) sl@0: ++ii; sl@0: if (ii0); sl@0: eType=EEventKey; sl@0: break; sl@0: default: sl@0: pass=EFalse; sl@0: } sl@0: if (!pass) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: TWsEvent eEvent; sl@0: if (GetEvent(eEvent)) sl@0: return; sl@0: if (eEvent.Type()!=eType) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: TKeyEvent keyEvent=*eEvent.Key(); sl@0: TUint mask=~(EModifierAutorepeatable|MODIFIER_FLAGS_TO_IGNOR); sl@0: if (keyEvent.iCode!=aEvent.iCode || (keyEvent.iModifiers&mask)!=(aEvent.iModifiers&mask) || keyEvent.iScanCode!=aEvent.iScanCode sl@0: || (keyEvent.iRepeats==0)!=(aEvent.iRepeats==0)) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: } sl@0: sl@0: void CEventClicks::PointerEvent(const TPointerEvent& aEvent) sl@0: { sl@0: // Click events are now all advanced events so in order to test the modifier bits sl@0: // appropriately we need to copy them as TAdvancedPointerEvent not TPointerEvent sl@0: if(!aEvent.IsAdvancedPointerEvent()) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: iLastPointerEvent=*aEvent.AdvancedPointerEvent(); sl@0: sl@0: if (iExpectingExtendedPointer) sl@0: Fail(); sl@0: else sl@0: iExpectingExtendedPointer=ETrue; sl@0: TWsEvent eEvent; sl@0: if (GetEvent(eEvent)) sl@0: return; sl@0: TAdvancedPointerEvent pEvent=*eEvent.Pointer(); sl@0: TUint mask=~(MODIFIER_FLAGS_TO_IGNOR); sl@0: if (pEvent.iType!=aEvent.iType || (pEvent.iModifiers&mask)!=(aEvent.iModifiers&mask) sl@0: || pEvent.iPosition!=aEvent.iPosition || pEvent.iParentPosition!=aEvent.iParentPosition) sl@0: { sl@0: Fail(); sl@0: return; sl@0: } sl@0: } sl@0: sl@0: void CEventClicks::OtherEvent(TInt aType,TAny* aParam) sl@0: { sl@0: TBool pass=ETrue; sl@0: if (aType!=EEventPointer) sl@0: ++iEventsTested; sl@0: switch (aType) sl@0: { sl@0: case EEventPointer: sl@0: ExtendedPointerEvent(*static_cast(aParam)); sl@0: break; sl@0: case EEventScreenDeviceChanged: sl@0: break; sl@0: case EEventGroupWindowOpen: sl@0: NewWindowGroup(*static_cast(aParam)); sl@0: break; sl@0: case EEventGroupWindowClose: sl@0: CloseWindowGroup(reinterpret_cast(aParam)); sl@0: break; sl@0: case EEventWindowClose: sl@0: CloseWindow(*static_cast(aParam)); sl@0: break; sl@0: default: sl@0: pass=EFalse; sl@0: } sl@0: if (!pass) sl@0: Fail(); sl@0: //GetEvent() is not call here because CWsGroupWindow::EnableScreenChangeEvents() could not be sl@0: //been called.This mean that no EEventScreenDeviceChanged will be put in the client queue. sl@0: //Instead this event will be always passed to the click plugin if this is present. sl@0: } sl@0: #pragma warning(default : 4245) sl@0: sl@0: sl@0: /*CMyClickMaker*/ sl@0: sl@0: CMyClickMaker::~CMyClickMaker() sl@0: { sl@0: delete iEventClicks; sl@0: } sl@0: sl@0: void CMyClickMaker::ConstructL() sl@0: { sl@0: iMode=EClickNone; sl@0: iEventClicks=new(ELeave) CEventClicks(); sl@0: iEventClicks->ConstructL(); sl@0: } sl@0: sl@0: void CMyClickMaker::KeyEvent(TEventCode aType,const TKeyEvent& aEvent) sl@0: { sl@0: if (iCurrentClick) sl@0: iCurrentClick->KeyEvent(aType,aEvent); sl@0: } sl@0: sl@0: void CMyClickMaker::PointerEvent(const TPointerEvent& aEvent) sl@0: { sl@0: if (iCurrentClick) sl@0: iCurrentClick->PointerEvent(aEvent); sl@0: } sl@0: sl@0: void CMyClickMaker::OtherEvent(TInt aType,TAny* aParam) sl@0: { sl@0: if (iCurrentClick) sl@0: iCurrentClick->OtherEvent(aType,aParam); sl@0: } sl@0: sl@0: TInt CMyClickMaker::CommandReplyL(TInt aOpcode,TAny* aArgs) sl@0: { sl@0: switch (aOpcode) sl@0: { sl@0: case EClickCommandToggleOutput: sl@0: switch (iMode) sl@0: { sl@0: case EClickNone: sl@0: LogToWindowL(); sl@0: break; sl@0: case EClickCheck: sl@0: case EClickToWindow: sl@0: iMode=EClickNone; sl@0: iCurrentClick=NULL; sl@0: break; sl@0: } sl@0: break; sl@0: case EClickCommandSetOutput: sl@0: iMode=*STATIC_CAST(TClickOutputModes*,aArgs); sl@0: switch (iMode) sl@0: { sl@0: case EClickNone: sl@0: iCurrentClick=NULL; sl@0: break; sl@0: case EClickCheck: sl@0: iCurrentClick=iEventClicks; sl@0: iEventClicks->Reset(); sl@0: break; sl@0: case EClickToWindow: sl@0: LogToWindowL(); sl@0: break; sl@0: } sl@0: break; sl@0: case EClickEventAdd: sl@0: return iEventClicks->Add(STATIC_CAST(TWsEvent*,aArgs)); sl@0: case EClickFailed: sl@0: return iEventClicks->Failed(); sl@0: case EClickEvents: sl@0: return iEventClicks->Events(); sl@0: case EClickReset: sl@0: iEventClicks->Reset(); sl@0: break; sl@0: case EClickCreateGroupWin: sl@0: iEventClicks->ExpectNewWindowGroup(*static_cast(aArgs)); sl@0: break; sl@0: case EClickCheckGpWinId: sl@0: iEventClicks->CheckGpWinId(*static_cast(aArgs)); sl@0: break; sl@0: case EClickCloseGroupWin: sl@0: iEventClicks->ExpectCloseWindowGroup(*static_cast(aArgs)); sl@0: break; sl@0: case EClickCloseWin: sl@0: iEventClicks->ExpectCloseWindow(*static_cast(aArgs)); sl@0: break; sl@0: case EClickPointerEvent: sl@0: iEventClicks->PointerEventInfo(*static_cast(aArgs)); sl@0: break; sl@0: default:; sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: void CMyClickMaker::LogToWindowL() sl@0: { sl@0: iMode=EClickNone; sl@0: iCurrentClick=NULL; sl@0: iLogClicks.StartLoggingL(); sl@0: iMode=EClickToWindow; sl@0: iCurrentClick=&iLogClicks; sl@0: } sl@0: sl@0: sl@0: EXPORT_C CClickMaker* CreateClickMakerL() sl@0: { sl@0: CMyClickMaker* plugIn=new(ELeave) CMyClickMaker; sl@0: CleanupStack::PushL(plugIn); sl@0: plugIn->ConstructL(); sl@0: CleanupStack::Pop(plugIn); sl@0: return plugIn; sl@0: }