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.
16 #ifndef POINTEREVENT_H
17 #define POINTEREVENT_H
19 class TAdvancedPointerEvent;
21 /** Pointer event details.
23 The function TWsEvent::Pointer() is used to get this structure for a pointer
30 /** Pointer event types.
32 Note that the user actions that cause these events will vary according to
33 the type of pointing device used. */
36 /** Button 1 or pen down. */
38 /** Button 1 or pen up. */
42 This is the middle button of a 3 button mouse. */
46 This is the middle button of a 3 button mouse. */
54 These events are only received when button 1 is down. */
58 These events are only received when button 1 is up and the XY input mode is
61 /** Button repeat event. */
63 /** Switch on event caused by a screen tap. */
65 /** Out Of Range event caused by 3D pointer leaving the detection volume.
66 It implies that the pointer cannot be tracked any more by device's sensors
67 and that from now the pointer number of this pointer may be used for identifying
68 another physical pointer (for example another finger).
69 As EOutOfRange event is generated when pointer's position is unknown,
70 it contains last known coordinates of the pointer and is delivered to the
71 window based on these coordinates.
72 @see TAdvancedPointerEvent::PointerNumber()
76 /** Caused by a 3D pointer getting close to the screen.
77 It is fired when a pointer's Z coordinate crosses the threshold for EEnterCloseProximity
78 from the OutOfRange state or from the Up/OutOfCloseProximity state.
79 Please refer to the system documentation for an explanation of pointer states.
80 @see RWsSession::SetCloseProximityThresholds
81 @see RWsSession::GetEnterCloseProximityThreshold
85 /** Caused by a 3D pointer moving away from the screen.
86 It is generally fired when a pointer's Z coordinate crosses the threshold for EExitCloseProximity
87 from the Up/InCloseProximity state.
88 Please refer to the system documentation for an explanation of pointer states.
89 @see RWsSession::SetCloseProximityThresholds
90 @see RWsSession::GetExitCloseProximityThreshold
94 /** Caused by a 3D pointer pressing the screen.
95 It is generally fired when a pointer's Z coordinate crosses the threshold for EEnterHighPressure
96 from the Down/OutOfHighPressure state.
97 Please refer to the system documentation for an explanation of pointer states.
98 @see RWsSession::SetHighPressureThresholds
99 @see RWsSession::GetEnterHighPressureThreshold
103 /** Caused by s 3D pointer pressing the screen with reducing force.
104 It is fired when a pointer's Z coordinate crosses the threshold for EExitHighPressure
105 from the Down/InHighPressure state.
106 Please refer to the system documentation for an explanation of pointer states.
107 @see RWsSession::SetHighPressureThresholds
108 @see RWsSession::GetExitHighPressureThreshold
112 /** WSERV will never generate TPointerEvent with this type.
114 WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases. */
118 inline TPointerEvent();
119 inline TPointerEvent(const TPointerEvent& aPointerEvent);
120 inline TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition);
121 inline TPointerEvent& operator=(const TPointerEvent& aPointerEvent);
123 inline void Copy(const TPointerEvent& aPointerEvent);
124 inline TBool IsAdvancedPointerEvent() const;
125 inline const TAdvancedPointerEvent* AdvancedPointerEvent() const;
126 /** The type of pointer event. */
128 /** The state of the modifier keys, defined in TEventModifier. */
129 TUint iModifiers; // State of pointing device and associated buttons
130 /** Co-ordinates of the pointer event relative to the origin of the window it occurred
133 Positive co-ordinates indicate a position to the right of and down from
134 the window's origin, negative co-ordinates indicate a position to the left
137 /** Co-ordinates of the pointer event relative to the parent window of the window
140 Positive co-ordinates indicate a position to the right of and down from the window's
141 origin, negative co-ordinates indicate a position to the left and up. */
142 TPoint iParentPosition;
145 inline TBool TPointerEvent::IsAdvancedPointerEvent() const
146 /** Check if this pointer event is an instance of TAdvancedPointerEvent
147 containing pointer number, proximity and pressure.
149 @return ETrue if this pointer event is an instance of TAdvancedPointerEvent;
151 @see TPointerEvent::AdvancedPointerEvent()
152 @see RWindowBase::EnableAdvancedPointers()
156 return ((iModifiers&EModifierAdvancedPointerEvent)!=0);
159 /** Default Constructor
163 inline TPointerEvent::TPointerEvent() {}
167 @param aPointerEvent the pointer event to copy
171 inline TPointerEvent::TPointerEvent(const TPointerEvent& aPointerEvent) // Copy Constructor
176 /* TPointerEvent Constructor
178 @param aType The pointer event type
179 @param aModifiers The event modifiers
180 @param aPosition The pointer position
181 @param aParentPosition The pointer position relative to the parent window
183 inline TPointerEvent::TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition)
184 : iType(aType), iModifiers(aModifiers), iPosition(aPosition), iParentPosition(aParentPosition)
187 /** Operator= override
189 @param aPointerEvent the pointer event to copy
193 inline TPointerEvent& TPointerEvent::operator=(const TPointerEvent& aPointerEvent) // Operator = overload
195 if(this != &aPointerEvent)
202 /** Copies from a TPointerEvent object
204 @param aPointerEvent the pointer event to copy
208 inline void TPointerEvent::Copy(const TPointerEvent& aPointerEvent)
210 iType=aPointerEvent.iType;
211 iModifiers=(aPointerEvent.iModifiers&~EModifierAdvancedPointerEvent); // Clear the advanced pointer flag
212 iPosition=aPointerEvent.iPosition;
213 iParentPosition=aPointerEvent.iParentPosition;
216 #endif /* POINTEREVENT_H */