os/graphics/windowing/windowserver/inc/Graphics/pointereventdata.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/inc/Graphics/pointereventdata.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,83 @@
     1.4 +// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Data passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the 
    1.18 +// aType value is EEventPointer.
    1.19 +//
    1.20 +
    1.21 +#ifndef POINTEREVENTDATA_H
    1.22 +#define POINTEREVENTDATA_H
    1.23 +
    1.24 +/**
    1.25 +Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the 
    1.26 +aType value is EEventPointer.
    1.27 +This includes information about the window the pointer event will be sent to.
    1.28 +This is the normally the window being clicked on by the user, but pointer capturing 
    1.29 +and grabbing may affect this.
    1.30 +
    1.31 +@publishedPartner
    1.32 +@released 
    1.33 +*/
    1.34 +class TPointerEventData
    1.35 +	{
    1.36 +public:
    1.37 +	enum TSource
    1.38 +		/**
    1.39 +		A list of locations that WSERV receives events from
    1.40 +		*/
    1.41 +		{
    1.42 +		/** The source is not specified. */
    1.43 +		EUnspecified,
    1.44 +		/** The event came from the kernel. */
    1.45 +		EKernel,
    1.46 +		/** The event came from a client API. */
    1.47 +		EClient,
    1.48 +		/** The event came from an Anim DLL. */
    1.49 +		EAnimDLL,
    1.50 +		};
    1.51 +public:
    1.52 +	/**
    1.53 +	The version number of the data passed with EEventPointer, current always 0.
    1.54 +	*/
    1.55 +	TInt iVersion;
    1.56 +	/**
    1.57 +	The screen position of pointer event.
    1.58 +	*/
    1.59 +	TPoint iCurrentPos;
    1.60 +	/**
    1.61 +	The full pointer event data previously passed to the CClickMaker::PointerEvent function,
    1.62 +	except that the iParentPosition will be the actual parent position, when previously passed
    1.63 +	to the plug-in this value was the screen position.
    1.64 +	*/
    1.65 +	TAdvancedPointerEvent iPointerEvent;
    1.66 +	/**
    1.67 +	The client handle of the window or zero if the window is not a client window.
    1.68 +	*/
    1.69 +	TUint32 iClientHandle;
    1.70 +	/**
    1.71 +	The current top left of the window on the screen.
    1.72 +	*/
    1.73 +	TPoint iWindowOrigin;
    1.74 +	/**
    1.75 +	The Window Group Identifier of the window group that is a parent (or grand parent etc.)
    1.76 +	of the window the event is sent to or zero if the window is not a client window.
    1.77 +	*/
    1.78 +	TInt iWindowGroupId;
    1.79 +	/**
    1.80 +	The source that WSERV recieves the event from,
    1.81 +	currently set to EUnspecified as this is for future expansion.
    1.82 +	*/
    1.83 +	TSource iSource;
    1.84 +	};
    1.85 +
    1.86 +#endif // POINTEREVENTDATA_H