sl@0
|
1 |
// Copyright (c) 1994-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 "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 |
// Data passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
|
sl@0
|
15 |
// aType value is EEventPointer.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef POINTEREVENTDATA_H
|
sl@0
|
19 |
#define POINTEREVENTDATA_H
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
|
sl@0
|
23 |
aType value is EEventPointer.
|
sl@0
|
24 |
This includes information about the window the pointer event will be sent to.
|
sl@0
|
25 |
This is the normally the window being clicked on by the user, but pointer capturing
|
sl@0
|
26 |
and grabbing may affect this.
|
sl@0
|
27 |
|
sl@0
|
28 |
@publishedPartner
|
sl@0
|
29 |
@released
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
class TPointerEventData
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
enum TSource
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
A list of locations that WSERV receives events from
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
{
|
sl@0
|
39 |
/** The source is not specified. */
|
sl@0
|
40 |
EUnspecified,
|
sl@0
|
41 |
/** The event came from the kernel. */
|
sl@0
|
42 |
EKernel,
|
sl@0
|
43 |
/** The event came from a client API. */
|
sl@0
|
44 |
EClient,
|
sl@0
|
45 |
/** The event came from an Anim DLL. */
|
sl@0
|
46 |
EAnimDLL,
|
sl@0
|
47 |
};
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
The version number of the data passed with EEventPointer, current always 0.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
TInt iVersion;
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
The screen position of pointer event.
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
TPoint iCurrentPos;
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
The full pointer event data previously passed to the CClickMaker::PointerEvent function,
|
sl@0
|
59 |
except that the iParentPosition will be the actual parent position, when previously passed
|
sl@0
|
60 |
to the plug-in this value was the screen position.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
TAdvancedPointerEvent iPointerEvent;
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
The client handle of the window or zero if the window is not a client window.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
TUint32 iClientHandle;
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
The current top left of the window on the screen.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
TPoint iWindowOrigin;
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
The Window Group Identifier of the window group that is a parent (or grand parent etc.)
|
sl@0
|
73 |
of the window the event is sent to or zero if the window is not a client window.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
TInt iWindowGroupId;
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
The source that WSERV recieves the event from,
|
sl@0
|
78 |
currently set to EUnspecified as this is for future expansion.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
TSource iSource;
|
sl@0
|
81 |
};
|
sl@0
|
82 |
|
sl@0
|
83 |
#endif // POINTEREVENTDATA_H
|