Update contrib.
1 // Copyright (c) 1994-2009 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 // Data passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
15 // aType value is EEventPointer.
18 #ifndef POINTEREVENTDATA_H
19 #define POINTEREVENTDATA_H
22 Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
23 aType value is EEventPointer.
24 This includes information about the window the pointer event will be sent to.
25 This is the normally the window being clicked on by the user, but pointer capturing
26 and grabbing may affect this.
31 class TPointerEventData
36 A list of locations that WSERV receives events from
39 /** The source is not specified. */
41 /** The event came from the kernel. */
43 /** The event came from a client API. */
45 /** The event came from an Anim DLL. */
50 The version number of the data passed with EEventPointer, current always 0.
54 The screen position of pointer event.
58 The full pointer event data previously passed to the CClickMaker::PointerEvent function,
59 except that the iParentPosition will be the actual parent position, when previously passed
60 to the plug-in this value was the screen position.
62 TAdvancedPointerEvent iPointerEvent;
64 The client handle of the window or zero if the window is not a client window.
66 TUint32 iClientHandle;
68 The current top left of the window on the screen.
72 The Window Group Identifier of the window group that is a parent (or grand parent etc.)
73 of the window the event is sent to or zero if the window is not a client window.
77 The source that WSERV recieves the event from,
78 currently set to EUnspecified as this is for future expansion.
83 #endif // POINTEREVENTDATA_H