os/graphics/windowing/windowserver/nga/SERVER/pointer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // TWsPointer and associated classes definitions
    15 // 
    16 //
    17 
    18 #ifndef __POINTER_H__
    19 #define __POINTER_H__
    20 
    21 #include "server.h"
    22 #include "advancedpointereventhelper.h"
    23 
    24 class TWsPointer;
    25 class CWsPointerTimer : public CTimer
    26 	{
    27 public:
    28 	class MPointerTimerCallback
    29 		{
    30 	public:
    31 		virtual void RepeatTimerCompleted() =0;
    32 		};	
    33 	
    34 	static CWsPointerTimer* NewL(MPointerTimerCallback& aWsPointer);
    35 private:
    36 	CWsPointerTimer(MPointerTimerCallback& aPointerTimerCallback);
    37 	void ConstructL();
    38 	void RunL();
    39 private:
    40 	MPointerTimerCallback& iPointerTimerCallback;
    41 	};
    42 
    43 class TWsPointer : public CWsPointerTimer::MPointerTimerCallback
    44 	{
    45 friend class TWindowServerEvent;
    46 	enum {EPointerUpdateGapInMicroSeconds=50000};
    47 	enum TPointerState
    48 		{
    49 		EPointerStateOutOfRange=0,
    50 		EPointerStateUp,
    51 		EPointerStateDown
    52 		};
    53 public:
    54 	static void InitStaticsL();
    55 	static void Stop();
    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);	
    65 #if defined(__WINS__)
    66 	static TBool PreProcessDriverEvent(TRawEvent &aRawEvent,TBool aFromHardware=EFalse);
    67 #else
    68 	static TBool PreProcessDriverEvent(TRawEvent &aRawEvent);
    69 #endif
    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();
    84 #if defined(__WINS__)
    85 	static void SetXyInputType(TXYInputType aXyInputType);
    86 #endif
    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();
    96 private:
    97 	/** Clears all fields to default values, state goes to EPointerStateOutOfRange */
    98 	void Clear();
    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);
   115 	
   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);
   128 private:
   129 	/** Pointer number used to identify this pointer */
   130 	TUint iNumber;
   131 	
   132 	/** State of the pointer - Up, Down or OutOfRange */
   133 	TPointerState iState;
   134 	
   135 	/** 2D position of the pointer. Valid if iState != EPointerStateOutOfRange. */
   136 	TPoint iPos;
   137 	
   138 	/** Combined pressure and proximity values for the pointer */
   139 	TInt iPressureProximity;
   140 	
   141 	/** Where the pointer is 'Logged' taking into account position, grabbing and capturing */
   142 	const CWsWindow* iCurrentWindow;
   143 	
   144 	/** Window under pointer */
   145 	const CWsWindow* iActualWinPointerIsOver;
   146 	
   147 	/** Window that is grabbing this pointer's events (related to Drag events) */
   148 	const CWsWindow* iGrabWindow;
   149 	
   150 	TUint iLastUnmatchedDown1;
   151 	TUint iLastUnmatchedDown2;
   152 	TUint iLastUnmatchedDown3;
   153 	TUint iLastUnmatchedEnterHighPressure;
   154 	
   155 	/** Window which received last click, for double click detection */
   156 	const CWsWindow* iPrevClickWindow;
   157 	
   158 	/** Position of last click, for double click detection */
   159 	TPoint iPrevClickPos;
   160 	
   161 	/** Time of last click, for double click detection */ 
   162 	TTime iPrevClickTime;
   163 	
   164 	/** Which button has been clicked last time, for double click detection */ 
   165 	TPointerEvent::TType iPrevClickEventType;
   166 	
   167 	/** State upon which firing of EEnterCloseProximity and EExitCloseProximity
   168 	events is based. */
   169 	TBool iInCloseProximity;
   170 	
   171 	/** State upon which firing of EEnterHighPressure and EExitHighPressure
   172 	events is based. */
   173 	TBool iInHighPressure;
   174 	
   175 	/** Timer for pointer event repeating */
   176 	CWsPointerTimer* iRepeatTimer;
   177 	
   178 	CWsWindow* iRepeatWindow;
   179 	
   180 	TRect iRepeatRect;
   181 	
   182 	/** Pointing device's type */
   183 	static TXYInputType iXyInputType;
   184 
   185 	/** Maximum number of pointers handled at the same time. Always at least 1. */ 
   186 	static TInt iMaxPointers;
   187 	
   188 	/** Main array of TWsPointer objects, can keep up to iMaxPointers objects */
   189 	static RArray<TWsPointer> iPointers;
   190 	
   191 	/** Index of Primary Pointer in iPointers array. */
   192 	static TInt iPrimaryPointer;
   193 	
   194 	/** Previous primary pointer, before last run of UpdatePrimaryPointer(TRawEvent). */
   195 	static TInt iPreviousPrimaryPointer;
   196 	
   197 	static CWsRootWindow* iRootWindow;
   198 	
   199 	/** Global setting for all pointers */
   200 	static TTimeIntervalMicroSeconds32 iDoubleClickMaxInterval;
   201 
   202 	/** Global setting for all pointers */
   203 	static TInt iDoubleClickMaxDistance;
   204 	
   205 	static CWsPointerCursor* iCursorSprite;
   206 	
   207 	static TPointerCursorMode iPointerCursorMode;
   208 	
   209 	/** If pointer cursor update is required */
   210 	static TBool iUpdateRequired;
   211 	
   212 	/** Timer for pointer cursor updates */
   213 	static CPeriodic* iPeriodicTimer;
   214 	
   215 	/** For iPeriodicTimer */
   216 	static TBool iTimerQueued;
   217 	
   218 	static TBool iIs3DPointer;
   219 	
   220 	/** Threshold upon which firing of EEnterCloseProximity event is based */
   221 	static TInt iEnterCloseProximityThreshold;
   222 	
   223 	/** Threshold upon which firing of EExitCloseProximity event is based */
   224 	static TInt iExitCloseProximityThreshold;
   225 
   226 	/** Threshold upon which firing of EEnterHighPressure event is based */
   227 	static TInt iEnterHighPressureThreshold;
   228 
   229 	/** Threshold upon which firing of EExitHighPressure event is based */
   230 	static TInt iExitHighPressureThreshold;
   231 	
   232 	/** Used to offset the y pointer */
   233 	static TInt iYOffset;
   234 	
   235 #if defined(__WINS__)
   236 	/** Tell whether to rotate pointer coords in _WINS_ builds */
   237 	static TBool iEmulatorRotatePointerCoords;
   238 #endif
   239 	};
   240 
   241 class CWsPointerBuffer : public CBase
   242 	{
   243 public:
   244 	~CWsPointerBuffer();
   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);
   251 private:
   252 	static void AdjustMaxSizeL();
   253 	static void Reset();
   254 	static void SignalBufferReady();
   255 private:
   256 	CWsClientWindow* iWindow;
   257 	TInt iMaxPoints;
   258 	TInt iFlags;
   259 	TSglQueLink iQue;
   260 	static TBool iSignalled;
   261 	static CWsPointerBuffer* iCurrentBuffer;
   262 	static CCirBuf<TPoint>* iPointerBuffer;
   263 	static TSglQue<CWsPointerBuffer> iList;
   264 	};
   265 
   266 
   267 inline void TWsPointer::SetPointerCursorMode(TPointerCursorMode aMode)
   268 	{iPointerCursorMode=aMode;}
   269 	
   270 inline TPointerCursorMode TWsPointer::PointerCursorMode()
   271 	{return iPointerCursorMode;}
   272 	
   273 inline TPoint TWsPointer::PointerCursorPos()
   274 	{return iPointers[iPrimaryPointer].iPos;}
   275 
   276 inline void TWsPointer::UnmatchedEventPurged(TPointerEvent::TType aPointerType, TWsEvent* aEventPurged)
   277 	{iPointers[TAdvancedPointerEventHelper::PointerNumber(*aEventPurged)].UnmatchedEventPurged(aPointerType, aEventPurged->Handle());}
   278 
   279 inline TBool TWsPointer::XyInput()
   280 	{return iXyInputType!=EXYInputNone;}
   281 
   282 /*
   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
   288 */
   289 inline TBool TWsPointer::MovesAvailable()
   290 	{return (iXyInputType!=EXYInputNone && ((iXyInputType!=EXYInputPointer)||iIs3DPointer));}
   291 
   292 inline TBool TWsPointer::DeltaMouse()
   293 	{return (iXyInputType==EXYInputDeltaMouse);}
   294 
   295 inline TInt TWsPointer::PrimaryPointer()
   296 	{return iPrimaryPointer;}
   297 
   298 /**
   299 Sets primary pointer to the one which was present before last run of UpdatePrimaryPointer() method.
   300 */
   301 inline void TWsPointer::RollbackPrimaryPointer()
   302 	{iPrimaryPointer = iPreviousPrimaryPointer;}
   303 
   304 inline CWsWindow*& TWsPointer::RepeatWindow(TUint8 aPointerNumber)
   305 	{return iPointers[aPointerNumber].iRepeatWindow;}
   306 
   307 inline TRect& TWsPointer::RepeatRect(TUint8 aPointerNumber)
   308 	{return iPointers[aPointerNumber].iRepeatRect;}
   309 
   310 inline CWsPointerTimer*& TWsPointer::RepeatTimer(TUint8 aPointerNumber)
   311 	{return iPointers[aPointerNumber].iRepeatTimer;}
   312 
   313 inline TBool TWsPointer::PointerNumberInRange(TUint8 aPointerNumber)
   314 	{return (aPointerNumber<iMaxPointers);}
   315 
   316 #endif