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: // sl@0: sl@0: #ifndef POINTEREVENT_H sl@0: #define POINTEREVENT_H sl@0: sl@0: class TAdvancedPointerEvent; sl@0: sl@0: /** Pointer event details. sl@0: sl@0: The function TWsEvent::Pointer() is used to get this structure for a pointer sl@0: event. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: struct TPointerEvent sl@0: { sl@0: /** Pointer event types. sl@0: sl@0: Note that the user actions that cause these events will vary according to sl@0: the type of pointing device used. */ sl@0: enum TType sl@0: { sl@0: /** Button 1 or pen down. */ sl@0: EButton1Down, sl@0: /** Button 1 or pen up. */ sl@0: EButton1Up, sl@0: /** Button 2 down. sl@0: sl@0: This is the middle button of a 3 button mouse. */ sl@0: EButton2Down, sl@0: /** Button 2 up. sl@0: sl@0: This is the middle button of a 3 button mouse. */ sl@0: EButton2Up, sl@0: /** Button 3 down. */ sl@0: EButton3Down, sl@0: /** Button 3 up. */ sl@0: EButton3Up, sl@0: /** Drag event. sl@0: sl@0: These events are only received when button 1 is down. */ sl@0: EDrag, sl@0: /** Move event. sl@0: sl@0: These events are only received when button 1 is up and the XY input mode is sl@0: not pen. */ sl@0: EMove, sl@0: /** Button repeat event. */ sl@0: EButtonRepeat, sl@0: /** Switch on event caused by a screen tap. */ sl@0: ESwitchOn, sl@0: /** Out Of Range event caused by 3D pointer leaving the detection volume. sl@0: It implies that the pointer cannot be tracked any more by device's sensors sl@0: and that from now the pointer number of this pointer may be used for identifying sl@0: another physical pointer (for example another finger). sl@0: As EOutOfRange event is generated when pointer's position is unknown, sl@0: it contains last known coordinates of the pointer and is delivered to the sl@0: window based on these coordinates. sl@0: @see TAdvancedPointerEvent::PointerNumber() sl@0: @publishedAll sl@0: @released */ sl@0: EOutOfRange, sl@0: /** Caused by a 3D pointer getting close to the screen. sl@0: It is fired when a pointer's Z coordinate crosses the threshold for EEnterCloseProximity sl@0: from the OutOfRange state or from the Up/OutOfCloseProximity state. sl@0: Please refer to the system documentation for an explanation of pointer states. sl@0: @see RWsSession::SetCloseProximityThresholds sl@0: @see RWsSession::GetEnterCloseProximityThreshold sl@0: @publishedAll sl@0: @released */ sl@0: EEnterCloseProximity, sl@0: /** Caused by a 3D pointer moving away from the screen. sl@0: It is generally fired when a pointer's Z coordinate crosses the threshold for EExitCloseProximity sl@0: from the Up/InCloseProximity state. sl@0: Please refer to the system documentation for an explanation of pointer states. sl@0: @see RWsSession::SetCloseProximityThresholds sl@0: @see RWsSession::GetExitCloseProximityThreshold sl@0: @publishedAll sl@0: @released */ sl@0: EExitCloseProximity, sl@0: /** Caused by a 3D pointer pressing the screen. sl@0: It is generally fired when a pointer's Z coordinate crosses the threshold for EEnterHighPressure sl@0: from the Down/OutOfHighPressure state. sl@0: Please refer to the system documentation for an explanation of pointer states. sl@0: @see RWsSession::SetHighPressureThresholds sl@0: @see RWsSession::GetEnterHighPressureThreshold sl@0: @publishedAll sl@0: @released */ sl@0: EEnterHighPressure, sl@0: /** Caused by s 3D pointer pressing the screen with reducing force. sl@0: It is fired when a pointer's Z coordinate crosses the threshold for EExitHighPressure sl@0: from the Down/InHighPressure state. sl@0: Please refer to the system documentation for an explanation of pointer states. sl@0: @see RWsSession::SetHighPressureThresholds sl@0: @see RWsSession::GetExitHighPressureThreshold sl@0: @publishedAll sl@0: @released */ sl@0: EExitHighPressure, sl@0: /** WSERV will never generate TPointerEvent with this type. sl@0: sl@0: WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: ENullType = -1 sl@0: }; sl@0: sl@0: inline TPointerEvent(); sl@0: inline TPointerEvent(const TPointerEvent& aPointerEvent); sl@0: inline TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition); sl@0: inline TPointerEvent& operator=(const TPointerEvent& aPointerEvent); sl@0: sl@0: inline void Copy(const TPointerEvent& aPointerEvent); sl@0: inline TBool IsAdvancedPointerEvent() const; sl@0: inline const TAdvancedPointerEvent* AdvancedPointerEvent() const; sl@0: /** The type of pointer event. */ sl@0: TType iType; sl@0: /** The state of the modifier keys, defined in TEventModifier. */ sl@0: TUint iModifiers; // State of pointing device and associated buttons sl@0: /** Co-ordinates of the pointer event relative to the origin of the window it occurred sl@0: in. sl@0: sl@0: Positive co-ordinates indicate a position to the right of and down from sl@0: the window's origin, negative co-ordinates indicate a position to the left sl@0: and up. */ sl@0: TPoint iPosition; sl@0: /** Co-ordinates of the pointer event relative to the parent window of the window sl@0: it occurred in. sl@0: sl@0: Positive co-ordinates indicate a position to the right of and down from the window's sl@0: origin, negative co-ordinates indicate a position to the left and up. */ sl@0: TPoint iParentPosition; sl@0: }; sl@0: sl@0: inline TBool TPointerEvent::IsAdvancedPointerEvent() const sl@0: /** Check if this pointer event is an instance of TAdvancedPointerEvent sl@0: containing pointer number, proximity and pressure. sl@0: sl@0: @return ETrue if this pointer event is an instance of TAdvancedPointerEvent; sl@0: EFalse otherwise. sl@0: @see TPointerEvent::AdvancedPointerEvent() sl@0: @see RWindowBase::EnableAdvancedPointers() sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: return ((iModifiers&EModifierAdvancedPointerEvent)!=0); sl@0: } sl@0: sl@0: /** Default Constructor sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: inline TPointerEvent::TPointerEvent() {} sl@0: sl@0: /** Copy Constructor sl@0: sl@0: @param aPointerEvent the pointer event to copy sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: inline TPointerEvent::TPointerEvent(const TPointerEvent& aPointerEvent) // Copy Constructor sl@0: { sl@0: Copy(aPointerEvent); sl@0: } sl@0: sl@0: /* TPointerEvent Constructor sl@0: sl@0: @param aType The pointer event type sl@0: @param aModifiers The event modifiers sl@0: @param aPosition The pointer position sl@0: @param aParentPosition The pointer position relative to the parent window sl@0: */ sl@0: inline TPointerEvent::TPointerEvent(TType aType, TUint aModifiers, const TPoint &aPosition, const TPoint &aParentPosition) sl@0: : iType(aType), iModifiers(aModifiers), iPosition(aPosition), iParentPosition(aParentPosition) sl@0: {} sl@0: sl@0: /** Operator= override sl@0: sl@0: @param aPointerEvent the pointer event to copy sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: inline TPointerEvent& TPointerEvent::operator=(const TPointerEvent& aPointerEvent) // Operator = overload sl@0: { sl@0: if(this != &aPointerEvent) sl@0: { sl@0: Copy(aPointerEvent); sl@0: } sl@0: return *this; sl@0: } sl@0: sl@0: /** Copies from a TPointerEvent object sl@0: sl@0: @param aPointerEvent the pointer event to copy sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: inline void TPointerEvent::Copy(const TPointerEvent& aPointerEvent) sl@0: { sl@0: iType=aPointerEvent.iType; sl@0: iModifiers=(aPointerEvent.iModifiers&~EModifierAdvancedPointerEvent); // Clear the advanced pointer flag sl@0: iPosition=aPointerEvent.iPosition; sl@0: iParentPosition=aPointerEvent.iParentPosition; sl@0: } sl@0: sl@0: #endif /* POINTEREVENT_H */