Update contrib.
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 // Emulte key presses on pointer events
23 TInt WsKeyboardEmulator::iCurrentKeyDown;
24 TBool WsKeyboardEmulator::iKeyIsDown=EFalse;
26 void WsKeyboardEmulator::RawKeyEvent(TRawEvent::TType aType)
28 if (aType==TRawEvent::EKeyUp)
33 rawEvent.Set(aType,iCurrentKeyDown);
34 TWindowServerEvent::ProcessRawEvent(rawEvent);
37 TBool WsKeyboardEmulator::PointerEvent(TPointerEvent::TType aPointerEventType,const TPoint &aPoint, TDblQue<TPointerKeyList> *aKeyList)
39 if (iKeyIsDown && (aPointerEventType==TPointerEvent::EButton1Up))
40 RawKeyEvent(TRawEvent::EKeyUp);
45 TPointerKeyList *pkl=NULL;
46 for(TDblQueIter<TPointerKeyList> iter(*aKeyList);(pkl=iter++)!=NULL;)
47 if (pkl->iRect.Contains(aPoint))
49 if (iKeyIsDown && aPointerEventType==TPointerEvent::EDrag && (!pkl || iCurrentKeyDown!=pkl->iScanCode))
50 RawKeyEvent(TRawEvent::EKeyUp);
53 if (aPointerEventType==TPointerEvent::EButton1Down ||
54 (aPointerEventType==TPointerEvent::ESwitchOn && pkl->iActivatedByPointerSwitchOn))
57 RawKeyEvent(TRawEvent::EKeyUp);
58 iCurrentKeyDown=pkl->iScanCode;
59 RawKeyEvent(TRawEvent::EKeyDown);
60 if (aPointerEventType==TPointerEvent::ESwitchOn)
61 RawKeyEvent(TRawEvent::EKeyUp);