1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/TClick/CLICK.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,708 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Test Key Click Plug-In DLL
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include "W32CLICK.H"
1.23 +#include "CLICK.H"
1.24 +#include <graphics/pointereventdata.h>
1.25 +#if defined(__WINS__)
1.26 + #include <emulator.h>
1.27 + #include "LOGWIN.H"
1.28 +#endif
1.29 +
1.30 +#define bufSize 64
1.31 +
1.32 +GLREF_D struct TSharedMemory GSharedMemory;
1.33 +
1.34 +class MClickMaker
1.35 + {
1.36 +public:
1.37 + virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0;
1.38 + virtual void PointerEvent(const TPointerEvent& aEvent)=0;
1.39 + virtual void OtherEvent(TInt aType,TAny* aParam)=0;
1.40 + };
1.41 +
1.42 +struct TGpWinInfo
1.43 + {
1.44 + TBool iInUse;
1.45 + TInt iServerValue;
1.46 + TInt iNumGroups;
1.47 + };
1.48 +
1.49 +struct TGpWinIdData
1.50 + {
1.51 + TInt iId;
1.52 + TInt iClient;
1.53 + };
1.54 +
1.55 +NONSHARABLE_CLASS(TLogClicks) : public MClickMaker
1.56 + {
1.57 +public:
1.58 + void StartLoggingL();
1.59 + inline TBool IsLogging() {return iLogging;}
1.60 + //Pure virtual functions from MClickMaker
1.61 + void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
1.62 + void PointerEvent(const TPointerEvent& aEvent);
1.63 + void OtherEvent(TInt aType,TAny* aParam=NULL);
1.64 +private:
1.65 + TBool iLogging;
1.66 + };
1.67 +
1.68 +NONSHARABLE_CLASS(CEventClicks) : public CBase, public MClickMaker
1.69 + {
1.70 + enum {
1.71 + EEventBufferSize=32,
1.72 + EMaxGroupWinClients=6,
1.73 + EMaxGroupWinIdData=12
1.74 + };
1.75 +public:
1.76 + void ConstructL();
1.77 + TInt Add(TWsEvent* aEvent);
1.78 + inline TInt Failed() {return iFailed;}
1.79 + inline TInt Events() {return iEventsTested;}
1.80 + void Reset();
1.81 + void ExtendedPointerEvent(const TPointerEventData& aPointerEvent);
1.82 + void ExpectNewWindowGroup(TInt aClient);
1.83 + void NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen);
1.84 + void CheckGpWinId(TInt aId);
1.85 + void ExpectCloseWindowGroup(TInt aId);
1.86 + void CloseWindowGroup(TInt aId);
1.87 + void ExpectCloseWindow(TWindowCloseData& aCloseWin);
1.88 + void CloseWindow(TWindowCloseData& aCloseWin);
1.89 + void PointerEventInfo(TPointerEventInfo& aPointerEventInfo);
1.90 + //Pure virtual functions from MClickMaker
1.91 + void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
1.92 + void PointerEvent(const TPointerEvent& aEvent);
1.93 + void OtherEvent(TInt aType,TAny* aParam=NULL);
1.94 +private:
1.95 + TBool GetEvent(TWsEvent& aEvent);
1.96 + void Fail();
1.97 + void AddGroupWindowId(TInt aClient,TInt aGpWinId);
1.98 + void RemoveGroupWindowId(TInt aGpWinId);
1.99 +private:
1.100 + CCirBuf<TWsEvent> iEventBuffer;
1.101 + TInt iFailed;
1.102 + TInt iEventsTested;
1.103 + TInt iFailedAt;
1.104 + TGpWinInfo iGroupWins[EMaxGroupWinClients];
1.105 + TGpWinIdData iGroupWinIds[EMaxGroupWinIdData];
1.106 + TInt iExpectedEvent;
1.107 + TInt iExpectedEventData;
1.108 + TInt iExpectedHandle;
1.109 + TPointerEventInfo iExpectedPointerEventInfo;
1.110 + TInt iLastNewGpWinId;
1.111 + TAdvancedPointerEvent iLastPointerEvent;
1.112 + TBool iExpectingExtendedPointer;
1.113 + };
1.114 +
1.115 +NONSHARABLE_CLASS(CMyClickMaker) : public CClickMaker
1.116 + {
1.117 +public:
1.118 + ~CMyClickMaker();
1.119 + void ConstructL();
1.120 + //Virtual function from CClickMaker
1.121 + void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
1.122 + void PointerEvent(const TPointerEvent& aEvent);
1.123 + void OtherEvent(TInt aType,TAny* aParam);
1.124 + TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
1.125 +private:
1.126 + void LogToWindowL();
1.127 +private:
1.128 + TClickOutputModes iMode;
1.129 + MClickMaker* iCurrentClick;
1.130 + TLogClicks iLogClicks;
1.131 + CEventClicks* iEventClicks;
1.132 + };
1.133 +
1.134 +
1.135 +/*TLogClicks*/
1.136 +
1.137 +void TLogClicks::StartLoggingL()
1.138 + {
1.139 +#if defined(__WINS__)
1.140 + if (!IsLogging())
1.141 + {
1.142 + CreateLogWinThreadL();
1.143 + iLogging=ETrue;
1.144 + }
1.145 +#else
1.146 + User::Leave(KErrNotSupported);
1.147 +#endif
1.148 + }
1.149 +
1.150 +void TLogClicks::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
1.151 + {
1.152 + _LIT(KKeyDown, "KEY DOWN ");
1.153 + _LIT(KKeyUp, "KEY UP ");
1.154 + _LIT(KKeyEvent, "KEY EVENT ");
1.155 + _LIT(KKeyRepeat, "KEY REPEAT ");
1.156 + _LIT(KKeyUnknown, "KEY Unknown");
1.157 + _LIT(KKeyDataFormatChar,"'%c',");
1.158 + _LIT(KKeyDataFormatCode," Code=%u,");
1.159 + _LIT(KKeyDataFormatScan," Scan=%d,");
1.160 + _LIT(KKeyDataFormatModRep," Mod=0x%x, Rep=%d");
1.161 + TBuf<bufSize> bufPlusZero;
1.162 + switch (aType)
1.163 + {
1.164 + case EEventKey:
1.165 + bufPlusZero.Copy(KKeyEvent);
1.166 + break;
1.167 + case EEventKeyUp:
1.168 + bufPlusZero.Copy(KKeyUp);
1.169 + break;
1.170 + case EEventKeyDown:
1.171 + bufPlusZero.Copy(KKeyDown);
1.172 + break;
1.173 + case EEventKeyRepeat:
1.174 + bufPlusZero.Copy(KKeyRepeat);
1.175 + break;
1.176 + default:
1.177 + bufPlusZero.Copy(KKeyUnknown);
1.178 + break;
1.179 + }
1.180 + bufPlusZero.AppendFormat(KKeyDataFormatCode,aEvent.iCode);
1.181 + if (aEvent.iCode!=0)
1.182 + bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iCode);
1.183 + bufPlusZero.AppendFormat(KKeyDataFormatScan,aEvent.iScanCode);
1.184 + if (aEvent.iScanCode!=0)
1.185 + bufPlusZero.AppendFormat(KKeyDataFormatChar,aEvent.iScanCode);
1.186 + bufPlusZero.AppendFormat(KKeyDataFormatModRep,aEvent.iModifiers,aEvent.iRepeats);
1.187 + bufPlusZero.ZeroTerminate();
1.188 +#if defined(__WINS__)
1.189 + Emulator::Escape();
1.190 + SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
1.191 + Emulator::Reenter();
1.192 +#endif
1.193 + }
1.194 +
1.195 +void TLogClicks::PointerEvent(const TPointerEvent& aEvent)
1.196 + {
1.197 + _LIT(KButtonDown, "POINTER DOWN ");
1.198 + _LIT(KButtonUp, "POINTER UP ");
1.199 + _LIT(KButton2Down, "BUTTON 2 DOWN");
1.200 + _LIT(KButton2Up, "BUTTON 2 UP ");
1.201 + _LIT(KButton3Down, "BUTTON 3 DOWN");
1.202 + _LIT(KButton3Up, "BUTTON 3 UP ");
1.203 + _LIT(KButtonDrag, "POINTER DRAG ");
1.204 + _LIT(KButtonMove, "POINTER MOVE ");
1.205 + _LIT(KButtonRepeat, "BUTTON REPEAT");
1.206 + _LIT(KSwitchOn, "POINTER ON ");
1.207 + _LIT(KUnknown, "PTR Unknown ");
1.208 + //_LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Modifiers=%x");
1.209 + _LIT(KPtrDataFormat," Pos=(%d,%d), ScrPos=(%d,%d), Mod=%x");
1.210 + TBuf<bufSize> bufPlusZero;
1.211 + switch (aEvent.iType)
1.212 + {
1.213 + case TPointerEvent::EButton1Down:
1.214 + bufPlusZero.Copy(KButtonDown);
1.215 + break;
1.216 + case TPointerEvent::EButton1Up:
1.217 + bufPlusZero.Copy(KButtonUp);
1.218 + break;
1.219 + case TPointerEvent::EButton2Down:
1.220 + bufPlusZero.Copy(KButton2Down);
1.221 + break;
1.222 + case TPointerEvent::EButton2Up:
1.223 + bufPlusZero.Copy(KButton2Up);
1.224 + break;
1.225 + case TPointerEvent::EButton3Down:
1.226 + bufPlusZero.Copy(KButton3Down);
1.227 + break;
1.228 + case TPointerEvent::EButton3Up:
1.229 + bufPlusZero.Copy(KButton3Up);
1.230 + break;
1.231 + case TPointerEvent::EDrag:
1.232 + bufPlusZero.Copy(KButtonDrag);
1.233 + break;
1.234 + case TPointerEvent::EMove:
1.235 + bufPlusZero.Copy(KButtonMove);
1.236 + break;
1.237 + case TPointerEvent::EButtonRepeat:
1.238 + bufPlusZero.Copy(KButtonRepeat);
1.239 + break;
1.240 + case TPointerEvent::ESwitchOn:
1.241 + bufPlusZero.Copy(KSwitchOn);
1.242 + break;
1.243 + default:
1.244 + bufPlusZero.Copy(KUnknown);
1.245 + break;
1.246 + }
1.247 + bufPlusZero.AppendFormat(KPtrDataFormat,aEvent.iPosition.iX,aEvent.iPosition.iY
1.248 + ,aEvent.iParentPosition.iX,aEvent.iParentPosition.iY,aEvent.iModifiers);
1.249 + bufPlusZero.ZeroTerminate();
1.250 +#if defined(__WINS__)
1.251 + Emulator::Escape();
1.252 + SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
1.253 + Emulator::Reenter();
1.254 +#endif
1.255 + }
1.256 +
1.257 +void TLogClicks::OtherEvent(TInt aType,TAny* aParam)
1.258 + {
1.259 + _LIT(KPointer,"POINTER EVENT Ver=%d, ScrPos=(%d,%d), WinClientHandle=0x%x, WinOrigin=%d, WinGpId=%d");
1.260 + _LIT(KScreenDeviceChanged,"SCREEN DEVICE CHANGED EVENT, Mode=%d");
1.261 + _LIT(KGroupWindowOpen,"GROUP WINDOW OPEN EVENT WinGpId=%d, Client=%d, NumWinGps=%d");
1.262 + _LIT(KGroupWindowClose,"GROUP WINDOW CLOSE EVENT WinGpId=%d");
1.263 + _LIT(KWindowClose,"WINDOW CLOSE EVENT Client=%d, WinGpId=%d");
1.264 + _LIT(KEventUnknown, "EVENT Unknown");
1.265 + TBuf<bufSize> bufPlusZero;
1.266 + switch (aType)
1.267 + {
1.268 + case EEventPointer:
1.269 + {
1.270 + TPointerEventData& data=*static_cast<TPointerEventData*>(aParam);
1.271 + bufPlusZero.Format(KPointer,data.iVersion,data.iCurrentPos.iX,data.iCurrentPos.iY,data.iClientHandle
1.272 + ,data.iWindowOrigin.iX,data.iWindowOrigin.iY,data.iWindowGroupId);
1.273 + }
1.274 + break;
1.275 + case EEventScreenDeviceChanged:
1.276 + {
1.277 + TClickMakerData& data=*static_cast<TClickMakerData*>(aParam);
1.278 + bufPlusZero.Format(KScreenDeviceChanged,data.screenDeviceMode);
1.279 + }
1.280 + break;
1.281 + case EEventGroupWindowOpen:
1.282 + {
1.283 + TGroupWindowOpenData& data=*static_cast<TGroupWindowOpenData*>(aParam);
1.284 + bufPlusZero.Format(KGroupWindowOpen,data.iIdentifier,data.iClient,data.iNumClientWindowGroups);
1.285 + }
1.286 + break;
1.287 + case EEventGroupWindowClose:
1.288 + bufPlusZero.Format(KGroupWindowClose,reinterpret_cast<TInt&>(aParam));
1.289 + break;
1.290 + case EEventWindowClose:
1.291 + {
1.292 + TWindowCloseData& data=*static_cast<TWindowCloseData*>(aParam);
1.293 + bufPlusZero.Format(KWindowClose,data.iClientHandle,data.iWindowGroupId);
1.294 + }
1.295 + break;
1.296 + default:
1.297 + bufPlusZero.Copy(KEventUnknown);
1.298 + break;
1.299 + }
1.300 + bufPlusZero.ZeroTerminate();
1.301 +#if defined(__WINS__)
1.302 + Emulator::Escape();
1.303 + SendMessage(GSharedMemory.iHwnd, WM_USER+EAppendText, (bufPlusZero.Length()+1)*sizeof(TText), (TInt32)(bufPlusZero.Ptr()));
1.304 + Emulator::Reenter();
1.305 +#endif
1.306 + }
1.307 +
1.308 +/*CEventClicks*/
1.309 +
1.310 +void CEventClicks::ConstructL()
1.311 + {
1.312 + iEventBuffer.SetLengthL(EEventBufferSize);
1.313 + }
1.314 +
1.315 +TInt CEventClicks::Add(TWsEvent* aEvent)
1.316 + {
1.317 + return (iEventBuffer.Add(aEvent) ? KErrNone:KErrOverflow);
1.318 + }
1.319 +
1.320 +void CEventClicks::Reset()
1.321 + {
1.322 + iFailed=EFalse;
1.323 + iEventsTested=0;
1.324 + iExpectedEvent=0;
1.325 + iLastNewGpWinId=0;
1.326 + }
1.327 +
1.328 +void CEventClicks::ExtendedPointerEvent(const TPointerEventData& aPointerEvent)
1.329 + {
1.330 + if (!iExpectingExtendedPointer)
1.331 + {
1.332 + Fail();
1.333 + return;
1.334 + }
1.335 + iExpectingExtendedPointer=EFalse;
1.336 + TBool match=ETrue;
1.337 + if (0!=aPointerEvent.iVersion)
1.338 + match=EFalse;
1.339 + if (iLastPointerEvent.iType!=aPointerEvent.iPointerEvent.iType)
1.340 + match=EFalse;
1.341 + if (iLastPointerEvent.iModifiers!=aPointerEvent.iPointerEvent.iModifiers)
1.342 + match=EFalse;
1.343 + if (iLastPointerEvent.iPosition!=aPointerEvent.iPointerEvent.iPosition)
1.344 + match=EFalse;
1.345 + if (iLastPointerEvent.iParentPosition!=aPointerEvent.iCurrentPos)
1.346 + match=EFalse;
1.347 + if (TPointerEventData::EUnspecified!=aPointerEvent.iSource)
1.348 + match=EFalse;
1.349 + if (iExpectedPointerEventInfo.iClientHandle && iExpectedPointerEventInfo.iWinGpId>0)
1.350 + {
1.351 + if (iLastPointerEvent.iParentPosition-iExpectedPointerEventInfo.iParentOrigin
1.352 + !=aPointerEvent.iPointerEvent.iParentPosition)
1.353 + match=EFalse;
1.354 + if (iExpectedPointerEventInfo.iParentOrigin+iExpectedPointerEventInfo.iWinOrigin
1.355 + !=aPointerEvent.iWindowOrigin)
1.356 + match=EFalse;
1.357 + if (iExpectedPointerEventInfo.iClientHandle!=aPointerEvent.iClientHandle)
1.358 + match=EFalse;
1.359 + if (iExpectedPointerEventInfo.iWinGpId!=aPointerEvent.iWindowGroupId)
1.360 + match=EFalse;
1.361 + }
1.362 + if (!match)
1.363 + Fail();
1.364 + }
1.365 +
1.366 +void CEventClicks::ExpectNewWindowGroup(TInt aClient)
1.367 + {
1.368 + if (iExpectedEvent>0)
1.369 + Fail();
1.370 + iExpectedEvent=EEventGroupWindowOpen;
1.371 + iExpectedEventData=aClient;
1.372 + }
1.373 +
1.374 +void CEventClicks::NewWindowGroup(const TGroupWindowOpenData& aGpWinOpen)
1.375 + {
1.376 + iLastNewGpWinId=aGpWinOpen.iIdentifier;
1.377 + if (iExpectedEvent!=EEventGroupWindowOpen)
1.378 + {
1.379 + Fail();
1.380 + return;
1.381 + }
1.382 + iExpectedEvent=0;
1.383 + if (iExpectedEventData>=EMaxGroupWinClients)
1.384 + return;
1.385 + AddGroupWindowId(iExpectedEventData,iLastNewGpWinId);
1.386 + TGpWinInfo& gpWinInfo=iGroupWins[iExpectedEventData];
1.387 + if (gpWinInfo.iInUse)
1.388 + {
1.389 + if (aGpWinOpen.iClient!=gpWinInfo.iServerValue)
1.390 + Fail();
1.391 + else
1.392 + {
1.393 + if (aGpWinOpen.iNumClientWindowGroups!=gpWinInfo.iNumGroups)
1.394 + Fail();
1.395 + ++gpWinInfo.iNumGroups;
1.396 + }
1.397 + }
1.398 + else
1.399 + {
1.400 + gpWinInfo.iInUse=ETrue;
1.401 + gpWinInfo.iServerValue=aGpWinOpen.iClient;
1.402 + gpWinInfo.iNumGroups=aGpWinOpen.iNumClientWindowGroups+1;
1.403 + }
1.404 + }
1.405 +
1.406 +void CEventClicks::CheckGpWinId(TInt aId)
1.407 + {
1.408 + if (iLastNewGpWinId!=aId)
1.409 + Fail();
1.410 + }
1.411 +
1.412 +void CEventClicks::ExpectCloseWindowGroup(TInt aId)
1.413 + {
1.414 + if (iExpectedEvent>0)
1.415 + Fail();
1.416 + iExpectedEvent=EEventGroupWindowClose;
1.417 + iExpectedEventData=aId;
1.418 + }
1.419 +
1.420 +void CEventClicks::CloseWindowGroup(TInt aId)
1.421 + {
1.422 + if (iExpectedEvent!=EEventGroupWindowClose || iExpectedEventData!=aId)
1.423 + Fail();
1.424 + if (iExpectedEvent==EEventGroupWindowClose)
1.425 + iExpectedEvent=0;
1.426 + RemoveGroupWindowId(aId);
1.427 + }
1.428 +
1.429 +void CEventClicks::ExpectCloseWindow(TWindowCloseData& aCloseWin)
1.430 + {
1.431 + if (iExpectedEvent>0)
1.432 + Fail();
1.433 + iExpectedEvent=EEventWindowClose;
1.434 + iExpectedEventData=aCloseWin.iWindowGroupId;
1.435 + iExpectedHandle=aCloseWin.iClientHandle;
1.436 + }
1.437 +
1.438 +void CEventClicks::CloseWindow(TWindowCloseData& aCloseWin)
1.439 + {
1.440 + if (iExpectedEvent!=EEventWindowClose || iExpectedEventData!=aCloseWin.iWindowGroupId || iExpectedHandle!=aCloseWin.iClientHandle)
1.441 + Fail();
1.442 + if (iExpectedEvent==EEventWindowClose)
1.443 + iExpectedEvent=0;
1.444 + }
1.445 +
1.446 +void CEventClicks::PointerEventInfo(TPointerEventInfo& aPointerEventInfo)
1.447 + {
1.448 + iExpectedPointerEventInfo=aPointerEventInfo;
1.449 + }
1.450 +
1.451 +TBool CEventClicks::GetEvent(TWsEvent& aEvent)
1.452 + {
1.453 + ++iEventsTested;
1.454 + if (iEventBuffer.Remove(&aEvent)<1)
1.455 + {
1.456 + Fail();
1.457 + return ETrue;
1.458 + }
1.459 + return EFalse;
1.460 + }
1.461 +
1.462 +void CEventClicks::Fail()
1.463 + {
1.464 + if (!iFailed)
1.465 + {
1.466 + iFailed=iEventsTested;
1.467 + }
1.468 + }
1.469 +
1.470 +void CEventClicks::AddGroupWindowId(TInt aClient,TInt aGpWinId)
1.471 + {
1.472 + TInt ii=0;
1.473 + while (ii<EMaxGroupWinIdData && iGroupWinIds[ii].iId>0)
1.474 + ++ii;
1.475 + if (ii<EMaxGroupWinIdData)
1.476 + {
1.477 + iGroupWinIds[ii].iId=aGpWinId;
1.478 + iGroupWinIds[ii].iClient=aClient;
1.479 + }
1.480 + }
1.481 +
1.482 +void CEventClicks::RemoveGroupWindowId(TInt aGpWinId)
1.483 + {
1.484 + TInt ii=0;
1.485 + while (ii<EMaxGroupWinIdData && iGroupWinIds[ii].iId!=aGpWinId)
1.486 + ++ii;
1.487 + if (ii<EMaxGroupWinIdData)
1.488 + {
1.489 + --iGroupWins[iGroupWinIds[ii].iClient].iNumGroups;
1.490 + iGroupWinIds[ii].iId=0;
1.491 + }
1.492 + }
1.493 +
1.494 +#define MODIFIER_FLAGS_TO_IGNOR EModifierNumLock
1.495 +#pragma warning(disable : 4245) //'initializing' : conversion from 'int' to 'unsigned int', signed/unsigned mismatch
1.496 +void CEventClicks::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
1.497 + {
1.498 + TBool pass;
1.499 + TEventCode eType=aType;
1.500 + switch (aType)
1.501 + {
1.502 + case EEventKey:
1.503 + pass=(aEvent.iRepeats==0);
1.504 + break;
1.505 + case EEventKeyUp:
1.506 + case EEventKeyDown:
1.507 + pass=(aEvent.iCode==0) && (aEvent.iRepeats==0);
1.508 + break;
1.509 + case EEventKeyRepeat:
1.510 + pass=(aEvent.iRepeats>0);
1.511 + eType=EEventKey;
1.512 + break;
1.513 + default:
1.514 + pass=EFalse;
1.515 + }
1.516 + if (!pass)
1.517 + {
1.518 + Fail();
1.519 + return;
1.520 + }
1.521 + TWsEvent eEvent;
1.522 + if (GetEvent(eEvent))
1.523 + return;
1.524 + if (eEvent.Type()!=eType)
1.525 + {
1.526 + Fail();
1.527 + return;
1.528 + }
1.529 + TKeyEvent keyEvent=*eEvent.Key();
1.530 + TUint mask=~(EModifierAutorepeatable|MODIFIER_FLAGS_TO_IGNOR);
1.531 + if (keyEvent.iCode!=aEvent.iCode || (keyEvent.iModifiers&mask)!=(aEvent.iModifiers&mask) || keyEvent.iScanCode!=aEvent.iScanCode
1.532 + || (keyEvent.iRepeats==0)!=(aEvent.iRepeats==0))
1.533 + {
1.534 + Fail();
1.535 + return;
1.536 + }
1.537 + }
1.538 +
1.539 +void CEventClicks::PointerEvent(const TPointerEvent& aEvent)
1.540 + {
1.541 + // Click events are now all advanced events so in order to test the modifier bits
1.542 + // appropriately we need to copy them as TAdvancedPointerEvent not TPointerEvent
1.543 + if(!aEvent.IsAdvancedPointerEvent())
1.544 + {
1.545 + Fail();
1.546 + return;
1.547 + }
1.548 + iLastPointerEvent=*aEvent.AdvancedPointerEvent();
1.549 +
1.550 + if (iExpectingExtendedPointer)
1.551 + Fail();
1.552 + else
1.553 + iExpectingExtendedPointer=ETrue;
1.554 + TWsEvent eEvent;
1.555 + if (GetEvent(eEvent))
1.556 + return;
1.557 + TAdvancedPointerEvent pEvent=*eEvent.Pointer();
1.558 + TUint mask=~(MODIFIER_FLAGS_TO_IGNOR);
1.559 + if (pEvent.iType!=aEvent.iType || (pEvent.iModifiers&mask)!=(aEvent.iModifiers&mask)
1.560 + || pEvent.iPosition!=aEvent.iPosition || pEvent.iParentPosition!=aEvent.iParentPosition)
1.561 + {
1.562 + Fail();
1.563 + return;
1.564 + }
1.565 + }
1.566 +
1.567 +void CEventClicks::OtherEvent(TInt aType,TAny* aParam)
1.568 + {
1.569 + TBool pass=ETrue;
1.570 + if (aType!=EEventPointer)
1.571 + ++iEventsTested;
1.572 + switch (aType)
1.573 + {
1.574 + case EEventPointer:
1.575 + ExtendedPointerEvent(*static_cast<TPointerEventData*>(aParam));
1.576 + break;
1.577 + case EEventScreenDeviceChanged:
1.578 + break;
1.579 + case EEventGroupWindowOpen:
1.580 + NewWindowGroup(*static_cast<TGroupWindowOpenData*>(aParam));
1.581 + break;
1.582 + case EEventGroupWindowClose:
1.583 + CloseWindowGroup(reinterpret_cast<TInt>(aParam));
1.584 + break;
1.585 + case EEventWindowClose:
1.586 + CloseWindow(*static_cast<TWindowCloseData*>(aParam));
1.587 + break;
1.588 + default:
1.589 + pass=EFalse;
1.590 + }
1.591 + if (!pass)
1.592 + Fail();
1.593 + //GetEvent() is not call here because CWsGroupWindow::EnableScreenChangeEvents() could not be
1.594 + //been called.This mean that no EEventScreenDeviceChanged will be put in the client queue.
1.595 + //Instead this event will be always passed to the click plugin if this is present.
1.596 + }
1.597 +#pragma warning(default : 4245)
1.598 +
1.599 +
1.600 +/*CMyClickMaker*/
1.601 +
1.602 +CMyClickMaker::~CMyClickMaker()
1.603 + {
1.604 + delete iEventClicks;
1.605 + }
1.606 +
1.607 +void CMyClickMaker::ConstructL()
1.608 + {
1.609 + iMode=EClickNone;
1.610 + iEventClicks=new(ELeave) CEventClicks();
1.611 + iEventClicks->ConstructL();
1.612 + }
1.613 +
1.614 +void CMyClickMaker::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
1.615 + {
1.616 + if (iCurrentClick)
1.617 + iCurrentClick->KeyEvent(aType,aEvent);
1.618 + }
1.619 +
1.620 +void CMyClickMaker::PointerEvent(const TPointerEvent& aEvent)
1.621 + {
1.622 + if (iCurrentClick)
1.623 + iCurrentClick->PointerEvent(aEvent);
1.624 + }
1.625 +
1.626 +void CMyClickMaker::OtherEvent(TInt aType,TAny* aParam)
1.627 + {
1.628 + if (iCurrentClick)
1.629 + iCurrentClick->OtherEvent(aType,aParam);
1.630 + }
1.631 +
1.632 +TInt CMyClickMaker::CommandReplyL(TInt aOpcode,TAny* aArgs)
1.633 + {
1.634 + switch (aOpcode)
1.635 + {
1.636 + case EClickCommandToggleOutput:
1.637 + switch (iMode)
1.638 + {
1.639 + case EClickNone:
1.640 + LogToWindowL();
1.641 + break;
1.642 + case EClickCheck:
1.643 + case EClickToWindow:
1.644 + iMode=EClickNone;
1.645 + iCurrentClick=NULL;
1.646 + break;
1.647 + }
1.648 + break;
1.649 + case EClickCommandSetOutput:
1.650 + iMode=*STATIC_CAST(TClickOutputModes*,aArgs);
1.651 + switch (iMode)
1.652 + {
1.653 + case EClickNone:
1.654 + iCurrentClick=NULL;
1.655 + break;
1.656 + case EClickCheck:
1.657 + iCurrentClick=iEventClicks;
1.658 + iEventClicks->Reset();
1.659 + break;
1.660 + case EClickToWindow:
1.661 + LogToWindowL();
1.662 + break;
1.663 + }
1.664 + break;
1.665 + case EClickEventAdd:
1.666 + return iEventClicks->Add(STATIC_CAST(TWsEvent*,aArgs));
1.667 + case EClickFailed:
1.668 + return iEventClicks->Failed();
1.669 + case EClickEvents:
1.670 + return iEventClicks->Events();
1.671 + case EClickReset:
1.672 + iEventClicks->Reset();
1.673 + break;
1.674 + case EClickCreateGroupWin:
1.675 + iEventClicks->ExpectNewWindowGroup(*static_cast<TInt*>(aArgs));
1.676 + break;
1.677 + case EClickCheckGpWinId:
1.678 + iEventClicks->CheckGpWinId(*static_cast<TInt*>(aArgs));
1.679 + break;
1.680 + case EClickCloseGroupWin:
1.681 + iEventClicks->ExpectCloseWindowGroup(*static_cast<TInt*>(aArgs));
1.682 + break;
1.683 + case EClickCloseWin:
1.684 + iEventClicks->ExpectCloseWindow(*static_cast<TWindowCloseData*>(aArgs));
1.685 + break;
1.686 + case EClickPointerEvent:
1.687 + iEventClicks->PointerEventInfo(*static_cast<TPointerEventInfo*>(aArgs));
1.688 + break;
1.689 + default:;
1.690 + }
1.691 + return KErrNone;
1.692 + }
1.693 +
1.694 +void CMyClickMaker::LogToWindowL()
1.695 + {
1.696 + iMode=EClickNone;
1.697 + iCurrentClick=NULL;
1.698 + iLogClicks.StartLoggingL();
1.699 + iMode=EClickToWindow;
1.700 + iCurrentClick=&iLogClicks;
1.701 + }
1.702 +
1.703 +
1.704 +EXPORT_C CClickMaker* CreateClickMakerL()
1.705 + {
1.706 + CMyClickMaker* plugIn=new(ELeave) CMyClickMaker;
1.707 + CleanupStack::PushL(plugIn);
1.708 + plugIn->ConstructL();
1.709 + CleanupStack::Pop(plugIn);
1.710 + return plugIn;
1.711 + }