1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/KEYBEMUL.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,69 @@
1.4 +// Copyright (c) 1996-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 +// Emulte key presses on pointer events
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <e32hal.h>
1.23 +#include "server.h"
1.24 +#include "EVENT.H"
1.25 +
1.26 +TInt WsKeyboardEmulator::iCurrentKeyDown;
1.27 +TBool WsKeyboardEmulator::iKeyIsDown=EFalse;
1.28 +
1.29 +void WsKeyboardEmulator::RawKeyEvent(TRawEvent::TType aType)
1.30 + {
1.31 + if (aType==TRawEvent::EKeyUp)
1.32 + iKeyIsDown=EFalse;
1.33 + else
1.34 + iKeyIsDown=ETrue;
1.35 + TRawEvent rawEvent;
1.36 + rawEvent.Set(aType,iCurrentKeyDown);
1.37 + TWindowServerEvent::ProcessRawEvent(rawEvent);
1.38 + }
1.39 +
1.40 +TBool WsKeyboardEmulator::PointerEvent(TPointerEvent::TType aPointerEventType,const TPoint &aPoint, TDblQue<TPointerKeyList> *aKeyList)
1.41 + {
1.42 + if (iKeyIsDown && (aPointerEventType==TPointerEvent::EButton1Up))
1.43 + RawKeyEvent(TRawEvent::EKeyUp);
1.44 + else if (!aKeyList)
1.45 + return(EFalse);
1.46 + else
1.47 + {
1.48 + TPointerKeyList *pkl=NULL;
1.49 + for(TDblQueIter<TPointerKeyList> iter(*aKeyList);(pkl=iter++)!=NULL;)
1.50 + if (pkl->iRect.Contains(aPoint))
1.51 + break;
1.52 + if (iKeyIsDown && aPointerEventType==TPointerEvent::EDrag && (!pkl || iCurrentKeyDown!=pkl->iScanCode))
1.53 + RawKeyEvent(TRawEvent::EKeyUp);
1.54 + else if (pkl)
1.55 + {
1.56 + if (aPointerEventType==TPointerEvent::EButton1Down ||
1.57 + (aPointerEventType==TPointerEvent::ESwitchOn && pkl->iActivatedByPointerSwitchOn))
1.58 + {
1.59 + if (iKeyIsDown)
1.60 + RawKeyEvent(TRawEvent::EKeyUp);
1.61 + iCurrentKeyDown=pkl->iScanCode;
1.62 + RawKeyEvent(TRawEvent::EKeyDown);
1.63 + if (aPointerEventType==TPointerEvent::ESwitchOn)
1.64 + RawKeyEvent(TRawEvent::EKeyUp);
1.65 + }
1.66 + }
1.67 + else
1.68 + return(EFalse);
1.69 + }
1.70 + return(ETrue);
1.71 + }
1.72 +