Update contrib.
1 // Copyright (c) 2010 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 // Key Event Routing Plug-in API
31 const TUid KKeyRouterPluginUid = { 0x102872e1 };
39 ECaptureTypeLongKey = 1,
40 ECaptureTypeKeyUpDown = 2
46 struct TKeyCaptureRequest
49 TKeyCaptureType iType;
51 /** Keycode or scancode to be captured */
54 /** Output keycode or scancode. When iInputCode is captured, RouteKey()
55 places iOutputCode in TKeyEventRouterOutput.iKeyEvent */
58 /** Bitmask of modifier keys of interest. Key events are captured only
59 when the modifier keys specified by iModifierMask are in the states
60 specified by iModifiers */
63 /** Bitmask of modifier key states */
66 /** Opaque handle for this request */
69 /** Opaque handle to window group through which request was made */
72 /** Identifier of the window group through which request was made */
75 /** UID of application that made the capture request */
78 /** Capture priority for this request. If more than one window group has
79 requested capture for the same key event, the one with the highest
80 priority will capture it (unless overridden by application specific
84 /** Reserved for future use */
89 Input parameters for RouteKey()
91 struct TKeyEventRouterInput
93 inline TKeyEventRouterInput(TKeyCaptureType aType, const TKeyEvent& aKeyEvent, TAny* aFocusWindowGroup, TUid aFocusAppUid);
96 TKeyCaptureType iType;
98 /** Input key event */
101 /** Opaque handle to current focussed window group */
102 TAny* iFocusWindowGroup;
104 /** UID of client application with current focussed window group */
107 /** Reserved for future use */
112 Result codes for RouteKey()
114 enum TKeyEventRouterResult
116 /** Key routed, no capture */
119 /** Key captured and routed */
122 /** Key consumed, do not deliver event */
127 Output parameters for RouteKey()
129 struct TKeyEventRouterOutput
132 TKeyEventRouterResult iResult;
134 /** Output key event as translated by plug-in. Key code may be set by
135 RWindowGroup::CaptureLongKey() via TKeyCaptureRequest.iOutputCode **/
138 /** Opaque handle to destination window group or NULL if captured by WServ
139 (hotkey). Plug-in must set this to either the window group from the
140 matching capture request or to TKeyEventRouterInput.iFocusWindowGroup */
143 /** Opaque handle from matching capture request or NULL if none */
144 TAny* iCaptureHandle;
146 /** Reserved for future use */
151 Key Event Router Interface
153 This class is implemented by a plug-in DLL in order to perform customised
154 routing of window server key events.
156 The Key Event Routing plug-in is a polymorphic DLL that implements the
157 CKeyEventRouter interface. Its UID1 and UID2 must be KDynamicLibraryUid and
158 KKeyRouterPluginUid respectively. UID3 identifies a particular implementation
159 of the plug-in. The first and only exported function should create and return
160 an object of the CKeyEventRouter sub-class.
162 class CKeyEventRouter : public CBase
166 Create and return an instance of CKeyEventRouter
168 @return Pointer to new router instance
170 IMPORT_C static CKeyEventRouter* NewL();
173 Add a new key capture request
175 @param aRequest Capture request details
177 virtual void AddCaptureKeyL(const TKeyCaptureRequest& aRequest) = 0;
180 Update an existing key capture request
182 @param aRequest Updated capture request details
184 virtual void UpdateCaptureKeyL(const TKeyCaptureRequest& aRequest) = 0;
187 Cancel a key capture request
189 @param aType Capture type
190 @param aHandle Opaque handle of request to be cancelled
192 virtual void CancelCaptureKey(TKeyCaptureType aType, TAny* aHandle) = 0;
195 Route the key event described by aInput and return its destination
198 @param aInput Input data with key event to be routed
199 @param aOutput Output key event and routing results
201 virtual void RouteKey(const TKeyEventRouterInput& aInput,
202 TKeyEventRouterOutput& aOutput) = 0;
205 Reserved for future use
208 virtual void Reserved1() {};
209 virtual void Reserved2() {};
212 inline TKeyEventRouterInput::TKeyEventRouterInput(TKeyCaptureType aType, const TKeyEvent& aKeyEvent, TAny* aFocusWindowGroup, TUid aFocusAppUid) : iType(aType), iKeyEvent(aKeyEvent), iFocusWindowGroup(aFocusWindowGroup), iFocusAppUid(aFocusAppUid)
216 #endif // WSKEYROUTER_H