sl@0
|
1 |
// Copyright (c) 1995-2009 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 the License "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 |
// e32\include\e32event.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __E32EVENT_H__
|
sl@0
|
19 |
#define __E32EVENT_H__
|
sl@0
|
20 |
#include <e32cmn.h>
|
sl@0
|
21 |
#ifdef BTRACE_TRAWEVENT
|
sl@0
|
22 |
#include <e32btrace.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@publishedAll
|
sl@0
|
27 |
@released
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
const TInt KUndefinedDeviceNumber = -1;
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
@publishedAll
|
sl@0
|
33 |
@released
|
sl@0
|
34 |
|
sl@0
|
35 |
Represents a raw hardware event as generated by hardware drivers of
|
sl@0
|
36 |
a pointer device, a keyboard etc.
|
sl@0
|
37 |
|
sl@0
|
38 |
Raw hardware events are added to the kernel's event queue.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class TRawEvent
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
Defines the event type.
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
enum TType
|
sl@0
|
48 |
{
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
Represents an uninitialised event object.
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
ENone,
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
A pointer device (e.g. a pen) has moved. Only changes in Cartesian coordinates are tracked.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
EPointerMove,
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
A switch on event caused by a screen tap using a pointer device.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
EPointerSwitchOn,
|
sl@0
|
64 |
|
sl@0
|
65 |
/**
|
sl@0
|
66 |
Represents a keyboard key down event.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
EKeyDown,
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
Represents a keyboard key up event.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
EKeyUp,
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
Represents a redraw event.
|
sl@0
|
77 |
|
sl@0
|
78 |
Typically generated in an emulator environment in response
|
sl@0
|
79 |
to a host OS redraw event.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
ERedraw,
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Represents a device switch on event.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
ESwitchOn,
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
EActive,
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
EInactive,
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
Represents a modifier key being pressed.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
EUpdateModifiers,
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
Represents a button down event.
|
sl@0
|
103 |
|
sl@0
|
104 |
This is typically used to represent a pointing device
|
sl@0
|
105 |
coming into contact with a touch sensitive screen.
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
EButton1Down,
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
Represents a button up event.
|
sl@0
|
111 |
|
sl@0
|
112 |
This is typically used to represent a pointing device
|
sl@0
|
113 |
being lifted away from a touch sensitive screen.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
EButton1Up,
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
Represents a button down event.
|
sl@0
|
119 |
|
sl@0
|
120 |
This is typically used to represent a pointing device
|
sl@0
|
121 |
coming into contact with a touch sensitive screen.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
EButton2Down,
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
Represents a button up event.
|
sl@0
|
127 |
|
sl@0
|
128 |
This is typically used to represent a pointing device
|
sl@0
|
129 |
being lifted away from a touch sensitive screen.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
EButton2Up,
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
Represents a button down event.
|
sl@0
|
135 |
|
sl@0
|
136 |
This is typically used to represent a pointing device
|
sl@0
|
137 |
coming into contact with a touch sensitive screen.
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
EButton3Down,
|
sl@0
|
140 |
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
Represents a button up event.
|
sl@0
|
143 |
|
sl@0
|
144 |
This is typically used to represent a pointing device
|
sl@0
|
145 |
being lifted away from a touch sensitive screen.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
EButton3Up,
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
Represents a device switch off event.
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
ESwitchOff,
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
Represents a key being continually pressed event.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
EKeyRepeat,
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
Represents a case open event.
|
sl@0
|
161 |
|
sl@0
|
162 |
The meaning of a case is hardware specific.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
ECaseOpen,
|
sl@0
|
165 |
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
Represents a case close event.
|
sl@0
|
168 |
|
sl@0
|
169 |
The meaning of a case is hardware specific.
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
ECaseClose,
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
@prototype
|
sl@0
|
175 |
Represents a 3D pointer entering the detection volume event.
|
sl@0
|
176 |
|
sl@0
|
177 |
This is typically used to represent a pointing device
|
sl@0
|
178 |
coming into detection range of a sensitive screen.
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
EPointer3DInRange,
|
sl@0
|
181 |
|
sl@0
|
182 |
/**
|
sl@0
|
183 |
@prototype
|
sl@0
|
184 |
Represents a 3D pointer leaving the detection volume event.
|
sl@0
|
185 |
|
sl@0
|
186 |
This is typically used to represent a pointing device
|
sl@0
|
187 |
leaving the detection range of a sensitive screen.
|
sl@0
|
188 |
*/
|
sl@0
|
189 |
EPointer3DOutOfRange,
|
sl@0
|
190 |
|
sl@0
|
191 |
/**
|
sl@0
|
192 |
@prototype
|
sl@0
|
193 |
Represents a 3D pointer tilt changes only event.
|
sl@0
|
194 |
|
sl@0
|
195 |
This is typically sent by a 3D pointer driver when it detects
|
sl@0
|
196 |
a change in the pointer's polar coordinates (Theta or Phi).
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
EPointer3DTilt,
|
sl@0
|
199 |
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
@prototype
|
sl@0
|
202 |
Represents a 3D pointer rotation only event.
|
sl@0
|
203 |
|
sl@0
|
204 |
This is typically sent by a 3D pointer driver when it detects
|
sl@0
|
205 |
a rotation of the pointing device (along ist main axis).
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
EPointer3DRotation,
|
sl@0
|
208 |
|
sl@0
|
209 |
/**
|
sl@0
|
210 |
@prototype
|
sl@0
|
211 |
Represents a general 3D pointer changes event.
|
sl@0
|
212 |
|
sl@0
|
213 |
This is typically sent by a 3D pointer driver when it detects
|
sl@0
|
214 |
a change in the pointer's linear and/or polar coordinates and/or rotation.
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
EPointer3DTiltAndMove,
|
sl@0
|
217 |
|
sl@0
|
218 |
/**
|
sl@0
|
219 |
@prototype
|
sl@0
|
220 |
Reserved for a 3D pointing device button down event.
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
EButton4Down,
|
sl@0
|
223 |
|
sl@0
|
224 |
/**
|
sl@0
|
225 |
@prototype
|
sl@0
|
226 |
Reserved for a 3D pointing device button up event.
|
sl@0
|
227 |
*/
|
sl@0
|
228 |
EButton4Up,
|
sl@0
|
229 |
|
sl@0
|
230 |
/**
|
sl@0
|
231 |
@prototype
|
sl@0
|
232 |
Reserved for a 3D pointing device button down event.
|
sl@0
|
233 |
*/
|
sl@0
|
234 |
EButton5Down,
|
sl@0
|
235 |
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
@prototype
|
sl@0
|
238 |
Reserved for a 3D pointing device button up event.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
EButton5Up,
|
sl@0
|
241 |
|
sl@0
|
242 |
/**
|
sl@0
|
243 |
@prototype
|
sl@0
|
244 |
Reserved for a 3D pointing device button down event.
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
EButton6Down,
|
sl@0
|
247 |
|
sl@0
|
248 |
/**
|
sl@0
|
249 |
@prototype
|
sl@0
|
250 |
Reserved for a 3D pointing device button up event.
|
sl@0
|
251 |
*/
|
sl@0
|
252 |
EButton6Up,
|
sl@0
|
253 |
|
sl@0
|
254 |
/**
|
sl@0
|
255 |
Represents a device restart event.
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
ERestartSystem
|
sl@0
|
258 |
};
|
sl@0
|
259 |
public:
|
sl@0
|
260 |
|
sl@0
|
261 |
/**
|
sl@0
|
262 |
Default constructor
|
sl@0
|
263 |
*/
|
sl@0
|
264 |
inline TRawEvent()
|
sl@0
|
265 |
{ *(TInt*)&iType=0; }
|
sl@0
|
266 |
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
Gets the event type
|
sl@0
|
269 |
|
sl@0
|
270 |
@return The event type.
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
inline TType Type() const
|
sl@0
|
273 |
{return TType(iType);}
|
sl@0
|
274 |
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
Gets the device number (eg. screen number)
|
sl@0
|
277 |
|
sl@0
|
278 |
@return The device number.
|
sl@0
|
279 |
*/
|
sl@0
|
280 |
inline TInt DeviceNumber() const
|
sl@0
|
281 |
{return TInt(iDeviceNumber-1);}
|
sl@0
|
282 |
|
sl@0
|
283 |
/**
|
sl@0
|
284 |
Sets the device number (eg. screen number)
|
sl@0
|
285 |
|
sl@0
|
286 |
@param aDeviceNumber The device number
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
inline void SetDeviceNumber(TInt aDeviceNumber)
|
sl@0
|
289 |
{iDeviceNumber = TUint8(aDeviceNumber+1);}
|
sl@0
|
290 |
|
sl@0
|
291 |
IMPORT_C TPoint Pos() const;
|
sl@0
|
292 |
IMPORT_C TInt ScanCode() const;
|
sl@0
|
293 |
IMPORT_C TInt Modifiers() const;
|
sl@0
|
294 |
IMPORT_C TInt Repeats() const;
|
sl@0
|
295 |
|
sl@0
|
296 |
/**
|
sl@0
|
297 |
Gets the Cartesian coordinates of the 3D pointer end that is closer to the screen.
|
sl@0
|
298 |
|
sl@0
|
299 |
@return The Cartesian coordinates of the point defined by the end of the 3D pointing device that is closer to the screen.
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
IMPORT_C TPoint3D Pos3D() const;
|
sl@0
|
302 |
|
sl@0
|
303 |
|
sl@0
|
304 |
/**
|
sl@0
|
305 |
Gets the angular spherical polar coordinates of the 3D pointer end that is closer to the screen.
|
sl@0
|
306 |
|
sl@0
|
307 |
@return The angular spherical polar coordinates of the point defined by the end of the 3D pointing device that is closer to the screen.
|
sl@0
|
308 |
@see TAngle3D
|
sl@0
|
309 |
*/
|
sl@0
|
310 |
IMPORT_C TAngle3D Tilt() const;
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
Gets the rotation angle of 3D pointing device.
|
sl@0
|
314 |
|
sl@0
|
315 |
Some 3D pointing devices support information regarding the angle formed between the physical and magnetical poles,
|
sl@0
|
316 |
as obtaining when rotating the pen along its main axis.
|
sl@0
|
317 |
|
sl@0
|
318 |
@return The rotation angle of the 3D pointing device.
|
sl@0
|
319 |
*/
|
sl@0
|
320 |
IMPORT_C TInt Rotation() const;
|
sl@0
|
321 |
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
Gets the tick count value associated with the event.
|
sl@0
|
324 |
|
sl@0
|
325 |
Note that the interval between tick counts is
|
sl@0
|
326 |
hardware dependent.
|
sl@0
|
327 |
|
sl@0
|
328 |
@return The tick count value
|
sl@0
|
329 |
*/
|
sl@0
|
330 |
inline TUint Ticks() const
|
sl@0
|
331 |
{return iTicks;}
|
sl@0
|
332 |
/**
|
sl@0
|
333 |
Gets the information on which end of the pointing device is closer to the screen
|
sl@0
|
334 |
|
sl@0
|
335 |
@return A Boolean indicating which end of the pointing device is closer to the screen.
|
sl@0
|
336 |
*/
|
sl@0
|
337 |
inline TBool IsTip() const
|
sl@0
|
338 |
{return TBool(iTip);}
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
Sets the information on which end of the pointing device is closer to the screen
|
sl@0
|
342 |
|
sl@0
|
343 |
@param aTip A Boolean indicating which end of the pointing device is closer to the screen.
|
sl@0
|
344 |
*/
|
sl@0
|
345 |
inline void SetTip(TBool aTip)
|
sl@0
|
346 |
{iTip = TUint8(aTip);
|
sl@0
|
347 |
#ifdef BTRACE_TRAWEVENT
|
sl@0
|
348 |
BTraceContext4(BTrace::ERawEvent, BTrace::ESetTipEvent,(TUint32)aTip);
|
sl@0
|
349 |
#endif
|
sl@0
|
350 |
}
|
sl@0
|
351 |
|
sl@0
|
352 |
IMPORT_C void Set(TType aType,TInt aScanCode);
|
sl@0
|
353 |
IMPORT_C void Set(TType aType,TInt aX,TInt aY);
|
sl@0
|
354 |
IMPORT_C void Set(TType aType);
|
sl@0
|
355 |
|
sl@0
|
356 |
IMPORT_C void Set(TType aType,TInt aX,TInt aY,TInt aZ);
|
sl@0
|
357 |
IMPORT_C void Set(TType aType,TInt aX,TInt aY,TInt aZ,TInt aPhi,TInt aTheta,TInt aAlpha);
|
sl@0
|
358 |
|
sl@0
|
359 |
IMPORT_C void SetTilt(TType aType,TInt aPhi,TInt aTheta);
|
sl@0
|
360 |
IMPORT_C void SetRotation(TType aType,TInt aAlpha);
|
sl@0
|
361 |
IMPORT_C void SetRepeat(TType aType,TInt aScanCode,TInt aRepeats);
|
sl@0
|
362 |
|
sl@0
|
363 |
/**
|
sl@0
|
364 |
@return the pointer number of the the event
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
inline TUint8 PointerNumber() const
|
sl@0
|
367 |
{
|
sl@0
|
368 |
return iPointerNumber;
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
|
sl@0
|
372 |
/**
|
sl@0
|
373 |
The pointer number for the event is set
|
sl@0
|
374 |
The pointer number should be more or equal 0 and should be less than HALData::EPointerMaxPointers,
|
sl@0
|
375 |
otherwise WSERV would ignore the event,ie 0 <= aPointerNumber < HALData::EPointerMaxPointers
|
sl@0
|
376 |
@param aPointerNumber
|
sl@0
|
377 |
Error conditions: None.
|
sl@0
|
378 |
*/
|
sl@0
|
379 |
inline void SetPointerNumber(const TUint8 aPointerNumber)
|
sl@0
|
380 |
{
|
sl@0
|
381 |
iPointerNumber=aPointerNumber;
|
sl@0
|
382 |
#ifdef BTRACE_TRAWEVENT
|
sl@0
|
383 |
BTraceContext4(BTrace::ERawEvent, BTrace::ESetPointerNumberEvent,(TUint32)aPointerNumber);
|
sl@0
|
384 |
#endif
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
/**
|
sl@0
|
388 |
Initialises the event with the supplied information
|
sl@0
|
389 |
@param aType The event type.
|
sl@0
|
390 |
@param aX The X position.
|
sl@0
|
391 |
@param aY The Y position.
|
sl@0
|
392 |
@param aZ The Z position.
|
sl@0
|
393 |
@param aPointerNumber The pointer number for the event
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
IMPORT_C void Set (TType aType, TInt aX, TInt aY, TInt aZ, TUint8 aPointerNumber);
|
sl@0
|
396 |
|
sl@0
|
397 |
protected:
|
sl@0
|
398 |
TUint8 iType;
|
sl@0
|
399 |
TUint8 iTip; /**< Indicates whether the tip or head of pointing device is closer to screen.*/
|
sl@0
|
400 |
TUint8 iPointerNumber; //
|
sl@0
|
401 |
TUint8 iDeviceNumber;
|
sl@0
|
402 |
TUint iTicks;
|
sl@0
|
403 |
union
|
sl@0
|
404 |
{
|
sl@0
|
405 |
struct {TInt x;TInt y;} pos;
|
sl@0
|
406 |
struct {TInt x;TInt y;TInt z;TInt phi;TInt theta;TInt alpha;} pos3D;
|
sl@0
|
407 |
struct {TInt scanCode;TInt repeats;} key;
|
sl@0
|
408 |
TInt modifiers;
|
sl@0
|
409 |
} iU;
|
sl@0
|
410 |
};
|
sl@0
|
411 |
|
sl@0
|
412 |
|
sl@0
|
413 |
|
sl@0
|
414 |
|
sl@0
|
415 |
/**
|
sl@0
|
416 |
@publishedAll
|
sl@0
|
417 |
@released
|
sl@0
|
418 |
|
sl@0
|
419 |
Encapsulates a hardware event object as a descriptor (package buffer) for
|
sl@0
|
420 |
the purpose of data transfer.
|
sl@0
|
421 |
*/
|
sl@0
|
422 |
class TRawEventBuf : public TPckgBuf<TRawEvent>
|
sl@0
|
423 |
{
|
sl@0
|
424 |
public:
|
sl@0
|
425 |
|
sl@0
|
426 |
/**
|
sl@0
|
427 |
Gets the hardware event object from the package buffer.
|
sl@0
|
428 |
|
sl@0
|
429 |
@return The hardware event object.
|
sl@0
|
430 |
*/
|
sl@0
|
431 |
inline TRawEvent &Event() const {return(*((TRawEvent *)&iBuf[0]));}
|
sl@0
|
432 |
};
|
sl@0
|
433 |
|
sl@0
|
434 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
435 |
#include <e32event_private.h>
|
sl@0
|
436 |
#endif
|
sl@0
|
437 |
|
sl@0
|
438 |
#endif
|
sl@0
|
439 |
|