os/graphics/windowing/windowserver/inc/pointerevent.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
//
sl@0
    15
sl@0
    16
#ifndef POINTEREVENT_H
sl@0
    17
#define POINTEREVENT_H
sl@0
    18
sl@0
    19
class TAdvancedPointerEvent;
sl@0
    20
sl@0
    21
/** Pointer event details.
sl@0
    22
sl@0
    23
The function TWsEvent::Pointer() is used to get this structure for a pointer
sl@0
    24
event.
sl@0
    25
sl@0
    26
@publishedAll
sl@0
    27
@released */
sl@0
    28
struct TPointerEvent
sl@0
    29
	{
sl@0
    30
	/** Pointer event types.
sl@0
    31
	
sl@0
    32
	Note that the user actions that cause these events will vary according to
sl@0
    33
	the type of pointing device used. */
sl@0
    34
	enum TType
sl@0
    35
		{
sl@0
    36
		/** Button 1 or pen down. */
sl@0
    37
		EButton1Down,
sl@0
    38
		/** Button 1 or pen up. */
sl@0
    39
		EButton1Up,
sl@0
    40
		/** Button 2 down.
sl@0
    41
sl@0
    42
		This is the middle button of a 3 button mouse. */
sl@0
    43
		EButton2Down,
sl@0
    44
		/** Button 2 up.
sl@0
    45
sl@0
    46
		This is the middle button of a 3 button mouse. */
sl@0
    47
		EButton2Up,
sl@0
    48
		/** Button 3 down. */
sl@0
    49
		EButton3Down,
sl@0
    50
		/** Button 3 up. */
sl@0
    51
		EButton3Up,
sl@0
    52
		/** Drag event.
sl@0
    53
sl@0
    54
		These events are only received when button 1 is down. */
sl@0
    55
		EDrag,
sl@0
    56
		/** Move event.
sl@0
    57
sl@0
    58
		These events are only received when button 1 is up and the XY input mode is
sl@0
    59
		not pen. */
sl@0
    60
		EMove,
sl@0
    61
		/** Button repeat event. */
sl@0
    62
		EButtonRepeat,
sl@0
    63
		/** Switch on event caused by a screen tap. */
sl@0
    64
		ESwitchOn,
sl@0
    65
		/** Out Of Range event caused by 3D pointer leaving the detection volume.
sl@0
    66
		It implies that the pointer cannot be tracked any more by device's sensors
sl@0
    67
		and that from now the pointer number of this pointer may be used for identifying
sl@0
    68
		another physical pointer (for example another finger).
sl@0
    69
		As EOutOfRange event is generated when pointer's position is unknown,
sl@0
    70
		it contains last known coordinates of the pointer and is delivered to the
sl@0
    71
		window based on these coordinates.
sl@0
    72
		@see TAdvancedPointerEvent::PointerNumber()
sl@0
    73
 		@publishedAll
sl@0
    74
 		@released */
sl@0
    75
		EOutOfRange,
sl@0
    76
		/**	Caused by a 3D pointer getting close to the screen. 
sl@0
    77
		It is fired when a pointer's Z coordinate crosses the threshold for EEnterCloseProximity 
sl@0
    78
		from the OutOfRange state or from the Up/OutOfCloseProximity state.
sl@0
    79
		Please refer to the system documentation for an explanation of pointer states.  
sl@0
    80
		@see RWsSession::SetCloseProximityThresholds
sl@0
    81
		@see RWsSession::GetEnterCloseProximityThreshold 
sl@0
    82
 		@publishedAll
sl@0
    83
 		@released */
sl@0
    84
		EEnterCloseProximity,
sl@0
    85
		/**	Caused by a 3D pointer moving away from the screen. 
sl@0
    86
		It is generally fired when a pointer's Z coordinate crosses the threshold for EExitCloseProximity 
sl@0
    87
		from the Up/InCloseProximity state.
sl@0
    88
		Please refer to the system documentation for an explanation of pointer states.  
sl@0
    89
		@see RWsSession::SetCloseProximityThresholds
sl@0
    90
		@see RWsSession::GetExitCloseProximityThreshold 
sl@0
    91
 		@publishedAll
sl@0
    92
 		@released */
sl@0
    93
		EExitCloseProximity,
sl@0
    94
		/**	Caused by a 3D pointer pressing the screen. 
sl@0
    95
		It is generally fired when a pointer's Z coordinate crosses the threshold for EEnterHighPressure 
sl@0
    96
		from the Down/OutOfHighPressure state.
sl@0
    97
		Please refer to the system documentation for an explanation of pointer states.  
sl@0
    98
		@see RWsSession::SetHighPressureThresholds
sl@0
    99
		@see RWsSession::GetEnterHighPressureThreshold 
sl@0
   100
 		@publishedAll
sl@0
   101
 		@released */
sl@0
   102
		EEnterHighPressure,
sl@0
   103
		/**	Caused by s 3D pointer pressing the screen with reducing force. 
sl@0
   104
		It is fired when a pointer's Z coordinate crosses the threshold for EExitHighPressure 
sl@0
   105
		from the Down/InHighPressure state.
sl@0
   106
		Please refer to the system documentation for an explanation of pointer states.  
sl@0
   107
		@see RWsSession::SetHighPressureThresholds
sl@0
   108
		@see RWsSession::GetExitHighPressureThreshold 
sl@0
   109
 		@publishedAll
sl@0
   110
 		@released */
sl@0
   111
		EExitHighPressure,
sl@0
   112
		/** WSERV will never generate TPointerEvent with this type.
sl@0
   113
		    
sl@0
   114
		    WARNING: Enum for internal use ONLY.  Compatibility is not guaranteed in future releases. */
sl@0
   115
		ENullType = -1
sl@0
   116
		};
sl@0
   117
sl@0
   118
	inline TPointerEvent();
sl@0
   119
	inline TPointerEvent(const TPointerEvent& aPointerEvent);
sl@0
   120
	inline TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition);	
sl@0
   121
	inline TPointerEvent& operator=(const TPointerEvent& aPointerEvent);
sl@0
   122
	
sl@0
   123
	inline void Copy(const TPointerEvent& aPointerEvent);
sl@0
   124
	inline TBool IsAdvancedPointerEvent() const;
sl@0
   125
	inline const TAdvancedPointerEvent* AdvancedPointerEvent() const;
sl@0
   126
	/** The type of pointer event. */
sl@0
   127
	TType iType;
sl@0
   128
	/** The state of the modifier keys, defined in TEventModifier. */
sl@0
   129
	TUint iModifiers;	// State of pointing device and associated buttons
sl@0
   130
	/** Co-ordinates of the pointer event relative to the origin of the window it occurred
sl@0
   131
	in.
sl@0
   132
sl@0
   133
	Positive co-ordinates indicate a position to the right of and down from
sl@0
   134
	the window's origin, negative co-ordinates indicate a position to the left
sl@0
   135
	and up. */
sl@0
   136
	TPoint iPosition;
sl@0
   137
	/** Co-ordinates of the pointer event relative to the parent window of the window
sl@0
   138
	it occurred in.
sl@0
   139
sl@0
   140
	Positive co-ordinates indicate a position to the right of and down from the window's
sl@0
   141
	origin, negative co-ordinates indicate a position to the left and up. */
sl@0
   142
	TPoint iParentPosition;
sl@0
   143
	};
sl@0
   144
sl@0
   145
inline TBool TPointerEvent::IsAdvancedPointerEvent() const
sl@0
   146
/** Check if this pointer event is an instance of TAdvancedPointerEvent
sl@0
   147
    containing pointer number, proximity and pressure.
sl@0
   148
    
sl@0
   149
    @return ETrue if this pointer event is an instance of TAdvancedPointerEvent;
sl@0
   150
            EFalse otherwise.
sl@0
   151
    @see TPointerEvent::AdvancedPointerEvent()
sl@0
   152
    @see RWindowBase::EnableAdvancedPointers()
sl@0
   153
 	@publishedAll
sl@0
   154
 	@released */
sl@0
   155
	{
sl@0
   156
	return ((iModifiers&EModifierAdvancedPointerEvent)!=0);
sl@0
   157
	}
sl@0
   158
sl@0
   159
/** Default Constructor
sl@0
   160
sl@0
   161
 	@publishedAll
sl@0
   162
 	@released */
sl@0
   163
inline TPointerEvent::TPointerEvent() {}
sl@0
   164
sl@0
   165
/** Copy Constructor
sl@0
   166
sl@0
   167
	@param aPointerEvent the pointer event to copy
sl@0
   168
sl@0
   169
 	@publishedAll
sl@0
   170
 	@released */
sl@0
   171
inline TPointerEvent::TPointerEvent(const TPointerEvent& aPointerEvent) // Copy Constructor
sl@0
   172
	{
sl@0
   173
	Copy(aPointerEvent);
sl@0
   174
	}
sl@0
   175
sl@0
   176
/* TPointerEvent Constructor
sl@0
   177
sl@0
   178
	@param aType The pointer event type
sl@0
   179
	@param aModifiers The event modifiers
sl@0
   180
	@param aPosition The pointer position
sl@0
   181
	@param aParentPosition The pointer position relative to the parent window
sl@0
   182
*/
sl@0
   183
inline TPointerEvent::TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition)
sl@0
   184
: iType(aType), iModifiers(aModifiers), iPosition(aPosition), iParentPosition(aParentPosition)  
sl@0
   185
	{}
sl@0
   186
sl@0
   187
/** Operator= override
sl@0
   188
sl@0
   189
	@param aPointerEvent the pointer event to copy
sl@0
   190
sl@0
   191
 	@publishedAll
sl@0
   192
 	@released */
sl@0
   193
inline TPointerEvent& TPointerEvent::operator=(const TPointerEvent& aPointerEvent) // Operator = overload
sl@0
   194
	{
sl@0
   195
	if(this != &aPointerEvent)
sl@0
   196
		{
sl@0
   197
		Copy(aPointerEvent);
sl@0
   198
		}
sl@0
   199
	return *this;
sl@0
   200
	}
sl@0
   201
sl@0
   202
/** Copies from a TPointerEvent object
sl@0
   203
sl@0
   204
	@param aPointerEvent the pointer event to copy
sl@0
   205
sl@0
   206
 	@publishedAll
sl@0
   207
 	@released */
sl@0
   208
inline void TPointerEvent::Copy(const TPointerEvent& aPointerEvent)
sl@0
   209
	{
sl@0
   210
	iType=aPointerEvent.iType;
sl@0
   211
	iModifiers=(aPointerEvent.iModifiers&~EModifierAdvancedPointerEvent); // Clear the advanced pointer flag
sl@0
   212
	iPosition=aPointerEvent.iPosition;
sl@0
   213
	iParentPosition=aPointerEvent.iParentPosition;
sl@0
   214
	}
sl@0
   215
sl@0
   216
#endif /* POINTEREVENT_H */