sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Key Event Routing Plug-in API
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef WSKEYROUTER_H
|
sl@0
|
23 |
#define WSKEYROUTER_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
Interface Uid
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
const TUid KKeyRouterPluginUid = { 0x102872e1 };
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Key Capture Type
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
enum TKeyCaptureType
|
sl@0
|
37 |
{
|
sl@0
|
38 |
ECaptureTypeKey = 0,
|
sl@0
|
39 |
ECaptureTypeLongKey = 1,
|
sl@0
|
40 |
ECaptureTypeKeyUpDown = 2
|
sl@0
|
41 |
};
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Key Capture Request
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
struct TKeyCaptureRequest
|
sl@0
|
47 |
{
|
sl@0
|
48 |
/** Capture type */
|
sl@0
|
49 |
TKeyCaptureType iType;
|
sl@0
|
50 |
|
sl@0
|
51 |
/** Keycode or scancode to be captured */
|
sl@0
|
52 |
TUint iInputCode;
|
sl@0
|
53 |
|
sl@0
|
54 |
/** Output keycode or scancode. When iInputCode is captured, RouteKey()
|
sl@0
|
55 |
places iOutputCode in TKeyEventRouterOutput.iKeyEvent */
|
sl@0
|
56 |
TUint iOutputCode;
|
sl@0
|
57 |
|
sl@0
|
58 |
/** Bitmask of modifier keys of interest. Key events are captured only
|
sl@0
|
59 |
when the modifier keys specified by iModifierMask are in the states
|
sl@0
|
60 |
specified by iModifiers */
|
sl@0
|
61 |
TUint iModifierMask;
|
sl@0
|
62 |
|
sl@0
|
63 |
/** Bitmask of modifier key states */
|
sl@0
|
64 |
TUint iModifiers;
|
sl@0
|
65 |
|
sl@0
|
66 |
/** Opaque handle for this request */
|
sl@0
|
67 |
TAny* iHandle;
|
sl@0
|
68 |
|
sl@0
|
69 |
/** Opaque handle to window group through which request was made */
|
sl@0
|
70 |
TAny* iWindowGroup;
|
sl@0
|
71 |
|
sl@0
|
72 |
/** Identifier of the window group through which request was made */
|
sl@0
|
73 |
TInt iWindowGroupId;
|
sl@0
|
74 |
|
sl@0
|
75 |
/** UID of application that made the capture request */
|
sl@0
|
76 |
TUid iAppUid;
|
sl@0
|
77 |
|
sl@0
|
78 |
/** Capture priority for this request. If more than one window group has
|
sl@0
|
79 |
requested capture for the same key event, the one with the highest
|
sl@0
|
80 |
priority will capture it (unless overridden by application specific
|
sl@0
|
81 |
rules). */
|
sl@0
|
82 |
TInt iPriority;
|
sl@0
|
83 |
|
sl@0
|
84 |
/** Reserved for future use */
|
sl@0
|
85 |
TInt iReserved[2];
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
Input parameters for RouteKey()
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
struct TKeyEventRouterInput
|
sl@0
|
92 |
{
|
sl@0
|
93 |
inline TKeyEventRouterInput(TKeyCaptureType aType, const TKeyEvent& aKeyEvent, TAny* aFocusWindowGroup, TUid aFocusAppUid);
|
sl@0
|
94 |
|
sl@0
|
95 |
/** Capture type */
|
sl@0
|
96 |
TKeyCaptureType iType;
|
sl@0
|
97 |
|
sl@0
|
98 |
/** Input key event */
|
sl@0
|
99 |
TKeyEvent iKeyEvent;
|
sl@0
|
100 |
|
sl@0
|
101 |
/** Opaque handle to current focussed window group */
|
sl@0
|
102 |
TAny* iFocusWindowGroup;
|
sl@0
|
103 |
|
sl@0
|
104 |
/** UID of client application with current focussed window group */
|
sl@0
|
105 |
TUid iFocusAppUid;
|
sl@0
|
106 |
|
sl@0
|
107 |
/** Reserved for future use */
|
sl@0
|
108 |
TInt iReserved[2];
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
Result codes for RouteKey()
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
enum TKeyEventRouterResult
|
sl@0
|
115 |
{
|
sl@0
|
116 |
/** Key routed, no capture */
|
sl@0
|
117 |
ERouted = 0,
|
sl@0
|
118 |
|
sl@0
|
119 |
/** Key captured and routed */
|
sl@0
|
120 |
ECaptured = 1,
|
sl@0
|
121 |
|
sl@0
|
122 |
/** Key consumed, do not deliver event */
|
sl@0
|
123 |
EConsumed = 2
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
Output parameters for RouteKey()
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
struct TKeyEventRouterOutput
|
sl@0
|
130 |
{
|
sl@0
|
131 |
/** Result code */
|
sl@0
|
132 |
TKeyEventRouterResult iResult;
|
sl@0
|
133 |
|
sl@0
|
134 |
/** Output key event as translated by plug-in. Key code may be set by
|
sl@0
|
135 |
RWindowGroup::CaptureLongKey() via TKeyCaptureRequest.iOutputCode **/
|
sl@0
|
136 |
TKeyEvent iKeyEvent;
|
sl@0
|
137 |
|
sl@0
|
138 |
/** Opaque handle to destination window group or NULL if captured by WServ
|
sl@0
|
139 |
(hotkey). Plug-in must set this to either the window group from the
|
sl@0
|
140 |
matching capture request or to TKeyEventRouterInput.iFocusWindowGroup */
|
sl@0
|
141 |
TAny* iWindowGroup;
|
sl@0
|
142 |
|
sl@0
|
143 |
/** Opaque handle from matching capture request or NULL if none */
|
sl@0
|
144 |
TAny* iCaptureHandle;
|
sl@0
|
145 |
|
sl@0
|
146 |
/** Reserved for future use */
|
sl@0
|
147 |
TInt iReserved[2];
|
sl@0
|
148 |
};
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
Key Event Router Interface
|
sl@0
|
152 |
|
sl@0
|
153 |
This class is implemented by a plug-in DLL in order to perform customised
|
sl@0
|
154 |
routing of window server key events.
|
sl@0
|
155 |
|
sl@0
|
156 |
The Key Event Routing plug-in is a polymorphic DLL that implements the
|
sl@0
|
157 |
CKeyEventRouter interface. Its UID1 and UID2 must be KDynamicLibraryUid and
|
sl@0
|
158 |
KKeyRouterPluginUid respectively. UID3 identifies a particular implementation
|
sl@0
|
159 |
of the plug-in. The first and only exported function should create and return
|
sl@0
|
160 |
an object of the CKeyEventRouter sub-class.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
class CKeyEventRouter : public CBase
|
sl@0
|
163 |
{
|
sl@0
|
164 |
public:
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
Create and return an instance of CKeyEventRouter
|
sl@0
|
167 |
|
sl@0
|
168 |
@return Pointer to new router instance
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
IMPORT_C static CKeyEventRouter* NewL();
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
Add a new key capture request
|
sl@0
|
174 |
|
sl@0
|
175 |
@param aRequest Capture request details
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
virtual void AddCaptureKeyL(const TKeyCaptureRequest& aRequest) = 0;
|
sl@0
|
178 |
|
sl@0
|
179 |
/**
|
sl@0
|
180 |
Update an existing key capture request
|
sl@0
|
181 |
|
sl@0
|
182 |
@param aRequest Updated capture request details
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
virtual void UpdateCaptureKeyL(const TKeyCaptureRequest& aRequest) = 0;
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
Cancel a key capture request
|
sl@0
|
188 |
|
sl@0
|
189 |
@param aType Capture type
|
sl@0
|
190 |
@param aHandle Opaque handle of request to be cancelled
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
virtual void CancelCaptureKey(TKeyCaptureType aType, TAny* aHandle) = 0;
|
sl@0
|
193 |
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
Route the key event described by aInput and return its destination
|
sl@0
|
196 |
in iOutput.
|
sl@0
|
197 |
|
sl@0
|
198 |
@param aInput Input data with key event to be routed
|
sl@0
|
199 |
@param aOutput Output key event and routing results
|
sl@0
|
200 |
*/
|
sl@0
|
201 |
virtual void RouteKey(const TKeyEventRouterInput& aInput,
|
sl@0
|
202 |
TKeyEventRouterOutput& aOutput) = 0;
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
Reserved for future use
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
private:
|
sl@0
|
208 |
virtual void Reserved1() {};
|
sl@0
|
209 |
virtual void Reserved2() {};
|
sl@0
|
210 |
};
|
sl@0
|
211 |
|
sl@0
|
212 |
inline TKeyEventRouterInput::TKeyEventRouterInput(TKeyCaptureType aType, const TKeyEvent& aKeyEvent, TAny* aFocusWindowGroup, TUid aFocusAppUid) : iType(aType), iKeyEvent(aKeyEvent), iFocusWindowGroup(aFocusWindowGroup), iFocusAppUid(aFocusAppUid)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
#endif // WSKEYROUTER_H
|