sl@0: // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Data passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the sl@0: // aType value is EEventPointer. sl@0: // sl@0: sl@0: #ifndef POINTEREVENTDATA_H sl@0: #define POINTEREVENTDATA_H sl@0: sl@0: /** sl@0: Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the sl@0: aType value is EEventPointer. sl@0: This includes information about the window the pointer event will be sent to. sl@0: This is the normally the window being clicked on by the user, but pointer capturing sl@0: and grabbing may affect this. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class TPointerEventData sl@0: { sl@0: public: sl@0: enum TSource sl@0: /** sl@0: A list of locations that WSERV receives events from sl@0: */ sl@0: { sl@0: /** The source is not specified. */ sl@0: EUnspecified, sl@0: /** The event came from the kernel. */ sl@0: EKernel, sl@0: /** The event came from a client API. */ sl@0: EClient, sl@0: /** The event came from an Anim DLL. */ sl@0: EAnimDLL, sl@0: }; sl@0: public: sl@0: /** sl@0: The version number of the data passed with EEventPointer, current always 0. sl@0: */ sl@0: TInt iVersion; sl@0: /** sl@0: The screen position of pointer event. sl@0: */ sl@0: TPoint iCurrentPos; sl@0: /** sl@0: The full pointer event data previously passed to the CClickMaker::PointerEvent function, sl@0: except that the iParentPosition will be the actual parent position, when previously passed sl@0: to the plug-in this value was the screen position. sl@0: */ sl@0: TAdvancedPointerEvent iPointerEvent; sl@0: /** sl@0: The client handle of the window or zero if the window is not a client window. sl@0: */ sl@0: TUint32 iClientHandle; sl@0: /** sl@0: The current top left of the window on the screen. sl@0: */ sl@0: TPoint iWindowOrigin; sl@0: /** sl@0: The Window Group Identifier of the window group that is a parent (or grand parent etc.) sl@0: of the window the event is sent to or zero if the window is not a client window. sl@0: */ sl@0: TInt iWindowGroupId; sl@0: /** sl@0: The source that WSERV recieves the event from, sl@0: currently set to EUnspecified as this is for future expansion. sl@0: */ sl@0: TSource iSource; sl@0: }; sl@0: sl@0: #endif // POINTEREVENTDATA_H