Update contrib.
1 // Copyright (c) 2006-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.
14 // TWsPointer and associated classes definitions
22 #include "advancedpointereventhelper.h"
25 class CWsPointerTimer : public CTimer
28 class MPointerTimerCallback
31 virtual void RepeatTimerCompleted() =0;
34 static CWsPointerTimer* NewL(MPointerTimerCallback& aWsPointer);
36 CWsPointerTimer(MPointerTimerCallback& aPointerTimerCallback);
40 MPointerTimerCallback& iPointerTimerCallback;
43 class TWsPointer : public CWsPointerTimer::MPointerTimerCallback
45 friend class TWindowServerEvent;
46 enum {EPointerUpdateGapInMicroSeconds=50000};
49 EPointerStateOutOfRange=0,
54 static void InitStaticsL();
56 static void DeleteStatics();
57 static inline TPointerCursorMode PointerCursorMode();
58 static inline void SetPointerCursorMode(TPointerCursorMode aMode);
59 static inline TPoint PointerCursorPos();
60 static void SetPointerCursorPos(TPoint aPos);
61 static void ReLogPointersCurrentWindows();
62 static void ReLogWindow(const CWsWindow* aWin);
63 static void WindowDisconnected(const CWsWindow* deletedWindow);
64 static TInt ClaimGrab(const CWsWindow* aWindow,const TWsWinCmdGrabControl& aGrabControl);
66 static TBool PreProcessDriverEvent(TRawEvent &aRawEvent,TBool aFromHardware=EFalse);
68 static TBool PreProcessDriverEvent(TRawEvent &aRawEvent);
70 static void TranslateCoordsOnRotation(TPoint& aPoint);
71 static TBool PreProcessClientEvent(TRawEvent &aRawEvent, TBool aAdvancedPointersEnabled);
72 static TBool IsPointerEventType(TRawEvent::TType aType);
73 static void ProcessWsEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup,TBool aNatural);
74 static void GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aTime, TInt &aDistance);
75 static void SetDoubleClick(const TTimeIntervalMicroSeconds32 &aTime, TInt aDistance);
76 static void UpdatePointerCursor();
77 static TInt RequestPointerRepeatEvent(CWsWindow* aWindow, const TWsWinCmdRequestPointerRepeatEvent& aRequest);
78 static TInt CancelPointerRepeatEventRequest(const TWsWinCmdCancelPointerRepeatEventRequest& aCancel);
79 void RepeatTimerCompleted(); // from CWsPointerTimer::MPointerTimerCallback
80 static TEventQueueWalkRet PointerRepeatPurgeCheck(TWsEvent* aEvent, TUint8 aPointerNumber);
81 static inline void UnmatchedEventPurged(TPointerEvent::TType aPointerType, TWsEvent* aEventPurged);
82 static void TimerExpired();
83 static inline TBool XyInput();
85 static void SetXyInputType(TXYInputType aXyInputType);
87 static void UpdatePrimaryPointer(const TRawEvent& aRawEvent);
88 static inline void RollbackPrimaryPointer();
89 static TInt SetCloseProximityThresholds(TInt aEnterCloseProximityThreshold, TInt aExitCloseProximityThreshold);
90 static TInt GetEnterCloseProximityThreshold();
91 static TInt GetExitCloseProximityThreshold();
92 static TInt SetHighPressureThresholds(TInt aEnterHighPressureThreshold, TInt aExitHighPressureThreshold);
93 static TInt GetEnterHighPressureThreshold();
94 static TInt GetExitHighPressureThreshold();
95 static inline TInt PrimaryPointer();
97 /** Clears all fields to default values, state goes to EPointerStateOutOfRange */
99 void SendEnterExitEvent(TEventCode aType);
100 void SetCurrentWindow(const CWsWindow* aWin);
101 void ReLogCurrentWindow();
102 void ReLogCurrentWindow(TPoint &aPos, TPoint &aParentPos, const CWsWindowGroup* aForceInGroup);
103 void ProcessForegroundCheck();
104 CWsPointerCursor* CalculatePointerCursor();
105 void ProcessEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup,TBool aNatural);
106 void ProcessEvent(TWsEvent& aEvent, TBool aNatural);
107 void ProcessPointerEvent(TWsEvent& aEvent);
108 void ProcessOutOfRangeEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup, TBool aNatural);
109 void UnmatchedEventPurged(TPointerEvent::TType aPointerType, TUint aHandle);
110 TBool CheckMatchingEventPurged(TPointerEvent::TType aType);
111 TBool QueuePointerEvent(const CWsWindow* aWindow, TWsEvent &event);
112 void ClaimGrab(const CWsWindow* aWindow, TBool aSendUpEvent);
113 void PointerCursorUpdateCheck();
114 void NotifyCClick(TAdvancedPointerEvent& aPointerEvent);
116 static void RestrictPos(TPoint& aPos,TBool aWithinDrawableArea=ETrue);
117 void RequestRepeatEvent(CWsWindow* aWindow, const TWsWinCmdRequestPointerRepeatEvent& aRequest);
118 void CancelPointerRepeatEventRequest();
119 TBool PointerEventRepeatCheck(const TWsEvent* aEvent, TUint32 aHandle);
120 static void UpdatePointerCursorTo(CWsPointerCursor* aNewCursor);
121 static inline TBool MovesAvailable();
122 static inline TBool DeltaMouse();
123 static inline CWsWindow*& RepeatWindow(TUint8 aPointerNumber);
124 static inline TRect& RepeatRect(TUint8 aPointerNumber);
125 static inline CWsPointerTimer*& RepeatTimer(TUint8 aPointerNumber);
126 static inline TBool PointerNumberInRange(TUint8 aPointerNumber);
127 static void ShiftYCoordinate(TInt& aY);
129 /** Pointer number used to identify this pointer */
132 /** State of the pointer - Up, Down or OutOfRange */
133 TPointerState iState;
135 /** 2D position of the pointer. Valid if iState != EPointerStateOutOfRange. */
138 /** Combined pressure and proximity values for the pointer */
139 TInt iPressureProximity;
141 /** Where the pointer is 'Logged' taking into account position, grabbing and capturing */
142 const CWsWindow* iCurrentWindow;
144 /** Window under pointer */
145 const CWsWindow* iActualWinPointerIsOver;
147 /** Window that is grabbing this pointer's events (related to Drag events) */
148 const CWsWindow* iGrabWindow;
150 TUint iLastUnmatchedDown1;
151 TUint iLastUnmatchedDown2;
152 TUint iLastUnmatchedDown3;
153 TUint iLastUnmatchedEnterHighPressure;
155 /** Window which received last click, for double click detection */
156 const CWsWindow* iPrevClickWindow;
158 /** Position of last click, for double click detection */
159 TPoint iPrevClickPos;
161 /** Time of last click, for double click detection */
162 TTime iPrevClickTime;
164 /** Which button has been clicked last time, for double click detection */
165 TPointerEvent::TType iPrevClickEventType;
167 /** State upon which firing of EEnterCloseProximity and EExitCloseProximity
169 TBool iInCloseProximity;
171 /** State upon which firing of EEnterHighPressure and EExitHighPressure
173 TBool iInHighPressure;
175 /** Timer for pointer event repeating */
176 CWsPointerTimer* iRepeatTimer;
178 CWsWindow* iRepeatWindow;
182 /** Pointing device's type */
183 static TXYInputType iXyInputType;
185 /** Maximum number of pointers handled at the same time. Always at least 1. */
186 static TInt iMaxPointers;
188 /** Main array of TWsPointer objects, can keep up to iMaxPointers objects */
189 static RArray<TWsPointer> iPointers;
191 /** Index of Primary Pointer in iPointers array. */
192 static TInt iPrimaryPointer;
194 /** Previous primary pointer, before last run of UpdatePrimaryPointer(TRawEvent). */
195 static TInt iPreviousPrimaryPointer;
197 static CWsRootWindow* iRootWindow;
199 /** Global setting for all pointers */
200 static TTimeIntervalMicroSeconds32 iDoubleClickMaxInterval;
202 /** Global setting for all pointers */
203 static TInt iDoubleClickMaxDistance;
205 static CWsPointerCursor* iCursorSprite;
207 static TPointerCursorMode iPointerCursorMode;
209 /** If pointer cursor update is required */
210 static TBool iUpdateRequired;
212 /** Timer for pointer cursor updates */
213 static CPeriodic* iPeriodicTimer;
215 /** For iPeriodicTimer */
216 static TBool iTimerQueued;
218 static TBool iIs3DPointer;
220 /** Threshold upon which firing of EEnterCloseProximity event is based */
221 static TInt iEnterCloseProximityThreshold;
223 /** Threshold upon which firing of EExitCloseProximity event is based */
224 static TInt iExitCloseProximityThreshold;
226 /** Threshold upon which firing of EEnterHighPressure event is based */
227 static TInt iEnterHighPressureThreshold;
229 /** Threshold upon which firing of EExitHighPressure event is based */
230 static TInt iExitHighPressureThreshold;
232 /** Used to offset the y pointer */
233 static TInt iYOffset;
235 #if defined(__WINS__)
236 /** Tell whether to rotate pointer coords in _WINS_ builds */
237 static TBool iEmulatorRotatePointerCoords;
241 class CWsPointerBuffer : public CBase
245 static void ConnectL(CWsClientWindow* aWindow, TInt aMaxPoints, TUint aFlags);
246 static void Disconnect(CWsClientWindow* aWindow);
247 static void PointerEvent(CWsClientWindow* aWindow,const TPoint &aPoint);
248 static void RetrievePointerMoveBuffer(CWsClientWindow* aWindow,TInt aMaxPoints);
249 static void DiscardPointerMoveBuffer(CWsClientWindow* aWindow);
250 static void DiscardPointerMoveBuffer(TUint aHandle);
252 static void AdjustMaxSizeL();
254 static void SignalBufferReady();
256 CWsClientWindow* iWindow;
260 static TBool iSignalled;
261 static CWsPointerBuffer* iCurrentBuffer;
262 static CCirBuf<TPoint>* iPointerBuffer;
263 static TSglQue<CWsPointerBuffer> iList;
267 inline void TWsPointer::SetPointerCursorMode(TPointerCursorMode aMode)
268 {iPointerCursorMode=aMode;}
270 inline TPointerCursorMode TWsPointer::PointerCursorMode()
271 {return iPointerCursorMode;}
273 inline TPoint TWsPointer::PointerCursorPos()
274 {return iPointers[iPrimaryPointer].iPos;}
276 inline void TWsPointer::UnmatchedEventPurged(TPointerEvent::TType aPointerType, TWsEvent* aEventPurged)
277 {iPointers[TAdvancedPointerEventHelper::PointerNumber(*aEventPurged)].UnmatchedEventPurged(aPointerType, aEventPurged->Handle());}
279 inline TBool TWsPointer::XyInput()
280 {return iXyInputType!=EXYInputNone;}
283 EXYInputNone => no pointer, no moves.
284 EXYInputPointer && !iIs3DPointer => drags only, no moves (allows mouse to behave like pen for emulator)
285 EXYInputPointer && iIs3DPointer => drags and moves
286 EXYInputMouse => drags and moves
287 EXYInputDeltaMouse => drags and moves
289 inline TBool TWsPointer::MovesAvailable()
290 {return (iXyInputType!=EXYInputNone && ((iXyInputType!=EXYInputPointer)||iIs3DPointer));}
292 inline TBool TWsPointer::DeltaMouse()
293 {return (iXyInputType==EXYInputDeltaMouse);}
295 inline TInt TWsPointer::PrimaryPointer()
296 {return iPrimaryPointer;}
299 Sets primary pointer to the one which was present before last run of UpdatePrimaryPointer() method.
301 inline void TWsPointer::RollbackPrimaryPointer()
302 {iPrimaryPointer = iPreviousPrimaryPointer;}
304 inline CWsWindow*& TWsPointer::RepeatWindow(TUint8 aPointerNumber)
305 {return iPointers[aPointerNumber].iRepeatWindow;}
307 inline TRect& TWsPointer::RepeatRect(TUint8 aPointerNumber)
308 {return iPointers[aPointerNumber].iRepeatRect;}
310 inline CWsPointerTimer*& TWsPointer::RepeatTimer(TUint8 aPointerNumber)
311 {return iPointers[aPointerNumber].iRepeatTimer;}
313 inline TBool TWsPointer::PointerNumberInRange(TUint8 aPointerNumber)
314 {return (aPointerNumber<iMaxPointers);}