Update contrib.
1 // Copyright (c) 1994-2010 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 ADVANCEDPOINTEREVENT_H
17 #define ADVANCEDPOINTEREVENT_H
25 #ifndef POINTEREVENT_H
26 #include <pointerevent.h>
30 /** Subclass of TPointerEvent created in order to maintain binary compatibility while
31 extending TPointerEvent with new data:
32 (1) pointer number of the pointer whose state change is described by the event,
33 (2) proximity of the pointer to the screen's surface,
34 (3) pressure applied by the pointer to the screen.
36 These new attributes will be present only on devices that support them, otherwise
37 they will be set to 0.
40 @see TPointerEvent::AdvancedPointerEvent()
41 @see TPointerEvent::IsAdvancedPointerEvent()
42 @see TWsEvent::Pointer()
45 class TAdvancedPointerEvent : public TPointerEvent
51 The value used by Symbian OS as the default pointer number for pointer-related
52 event objects which do not contain a pointer number member.
54 WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases.
56 EDefaultPointerNumber = 0,
58 Maximum number of pointers that WServ is able to support. On each particular platform,
59 the number of supported pointers must be less than or equal to this value.
61 WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases.
63 EMaximumWServNumberOfPointers = 8
66 // Public API's for WServ Clients
67 inline TAdvancedPointerEvent();
68 inline TInt PointerNumber() const;
69 inline TInt Proximity() const;
70 inline TInt Pressure() const;
71 inline TInt ProximityAndPressure() const;
72 inline TPoint3D Position3D() const;
73 inline TPoint3D Pressure3D() const;
74 inline TPoint3D PositionAndPressure3D() const;
76 IMPORT_C TAdvancedPointerEvent(const TAdvancedPointerEvent& aPointerEvent);
77 IMPORT_C TAdvancedPointerEvent& operator=(const TAdvancedPointerEvent& aPointerEvent);
80 // The methods in this section are internalTechnology and intended for use by TWsEvent
81 // and TAdvancedPointerEventHelper (internal WSERV class).
82 friend class TWsEvent;
83 friend class TAdvancedPointerEventHelper;
88 Value used as return value from PointerNumber API when the object is a TPointerEvent
89 not a TAdvancedPointerEvent (as indicated by the iModifier flags).
91 ENonAdvancedPointerPointerNumber = EDefaultPointerNumber,
96 Value used to distinguish between pressure and proximity Z values by Pressure or
97 Proximity Specific APIs.
99 EPressureProximityCrossover = 0,
101 Value used as return Z value from APIs when the object is a TPointerEvent
102 not a TAdvancedPointerEvent (as indicated by the iModifier flags).
104 ENonAdvancedPointerZCoordinate = EPressureProximityCrossover,
107 // Private API's for external usage, via inlined accessors
108 IMPORT_C TInt DoGetPointerNumber() const;
109 IMPORT_C TInt DoGetProximity() const;
110 IMPORT_C TInt DoGetPressure() const;
111 IMPORT_C TInt DoGetProximityAndPressure() const;
113 // Private API's for internal WSERV usage. It is impossible to inline them into
114 // client's binaries, thus implementation may be changed in the future.
116 inline void Init(const TPointerEvent::TType aType, const TUint aModifiers, const TPoint3D &aPoint3D, const TUint8 aPointerNumber);
117 inline void SetPointerNumber(TUint8 aPointerNumber);
118 inline void SetPointerZ(TInt aZ);
119 inline void Copy(const TAdvancedPointerEvent& aPointerEvent);
121 /** WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
124 struct {TInt iSpare1; TInt iSpare2;} ints; // 8 bytes to fill TWsEvent
125 struct {TInt32 iPosZ; TUint8 iPointerNumber;} multiPos3D;
129 /** Default Constructor for TAdvancedPointerEvent
134 inline TAdvancedPointerEvent::TAdvancedPointerEvent() {}
136 inline const TAdvancedPointerEvent* TPointerEvent::AdvancedPointerEvent() const
137 /** Casts this TPointerEvent to TAdvancedPointerEvent in order to provide access
138 to event's pointer number, pressure and proximity (these attributes are accessible
139 through appropriate getters of TAdvancedPointerEvent class).
141 If this is not an instance of TAdvancedPointerEvent, NULL will be returned.
142 Please note that TAdvancedPointerEvents are delivered only to windows for
143 which they have been enabled using RWindowBase::EnableAdvancedPointers() method.
145 @return A pointer to this object as TAdvancedPointerEvent or NULL if this is not
146 an instance of TAdvancedPointerEvent.
147 @see TPointerEvent::IsAdvancedPointerEvent()
148 @see RWindowBase::EnableAdvancedPointers()
152 return (iModifiers&EModifierAdvancedPointerEvent ? static_cast<const TAdvancedPointerEvent*>(this) : NULL);
155 #include "advancedpointerevent.inl"
157 #endif /* ADVANCEDPOINTEREVENT_H */