os/graphics/windowing/windowserver/nga/SERVER/pointer.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/pointer.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,316 @@
     1.4 +// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// TWsPointer and associated classes definitions
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __POINTER_H__
    1.22 +#define __POINTER_H__
    1.23 +
    1.24 +#include "server.h"
    1.25 +#include "advancedpointereventhelper.h"
    1.26 +
    1.27 +class TWsPointer;
    1.28 +class CWsPointerTimer : public CTimer
    1.29 +	{
    1.30 +public:
    1.31 +	class MPointerTimerCallback
    1.32 +		{
    1.33 +	public:
    1.34 +		virtual void RepeatTimerCompleted() =0;
    1.35 +		};	
    1.36 +	
    1.37 +	static CWsPointerTimer* NewL(MPointerTimerCallback& aWsPointer);
    1.38 +private:
    1.39 +	CWsPointerTimer(MPointerTimerCallback& aPointerTimerCallback);
    1.40 +	void ConstructL();
    1.41 +	void RunL();
    1.42 +private:
    1.43 +	MPointerTimerCallback& iPointerTimerCallback;
    1.44 +	};
    1.45 +
    1.46 +class TWsPointer : public CWsPointerTimer::MPointerTimerCallback
    1.47 +	{
    1.48 +friend class TWindowServerEvent;
    1.49 +	enum {EPointerUpdateGapInMicroSeconds=50000};
    1.50 +	enum TPointerState
    1.51 +		{
    1.52 +		EPointerStateOutOfRange=0,
    1.53 +		EPointerStateUp,
    1.54 +		EPointerStateDown
    1.55 +		};
    1.56 +public:
    1.57 +	static void InitStaticsL();
    1.58 +	static void Stop();
    1.59 +	static void DeleteStatics();
    1.60 +	static inline TPointerCursorMode PointerCursorMode();
    1.61 +	static inline void SetPointerCursorMode(TPointerCursorMode aMode);
    1.62 +	static inline TPoint PointerCursorPos();
    1.63 +	static void SetPointerCursorPos(TPoint aPos);
    1.64 +	static void ReLogPointersCurrentWindows();
    1.65 +	static void ReLogWindow(const CWsWindow* aWin);
    1.66 +	static void WindowDisconnected(const CWsWindow* deletedWindow);
    1.67 +	static TInt ClaimGrab(const CWsWindow* aWindow,const TWsWinCmdGrabControl& aGrabControl);	
    1.68 +#if defined(__WINS__)
    1.69 +	static TBool PreProcessDriverEvent(TRawEvent &aRawEvent,TBool aFromHardware=EFalse);
    1.70 +#else
    1.71 +	static TBool PreProcessDriverEvent(TRawEvent &aRawEvent);
    1.72 +#endif
    1.73 +	static void TranslateCoordsOnRotation(TPoint& aPoint);
    1.74 +	static TBool PreProcessClientEvent(TRawEvent &aRawEvent, TBool aAdvancedPointersEnabled);
    1.75 +	static TBool IsPointerEventType(TRawEvent::TType aType);
    1.76 +	static void ProcessWsEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup,TBool aNatural);	
    1.77 +	static void GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aTime, TInt &aDistance);
    1.78 +	static void SetDoubleClick(const TTimeIntervalMicroSeconds32 &aTime, TInt aDistance);
    1.79 +	static void UpdatePointerCursor();
    1.80 +	static TInt RequestPointerRepeatEvent(CWsWindow* aWindow, const TWsWinCmdRequestPointerRepeatEvent& aRequest);
    1.81 +	static TInt CancelPointerRepeatEventRequest(const TWsWinCmdCancelPointerRepeatEventRequest& aCancel);
    1.82 +	void RepeatTimerCompleted(); // from CWsPointerTimer::MPointerTimerCallback	
    1.83 +	static TEventQueueWalkRet PointerRepeatPurgeCheck(TWsEvent* aEvent, TUint8 aPointerNumber);
    1.84 +	static inline void UnmatchedEventPurged(TPointerEvent::TType aPointerType, TWsEvent* aEventPurged);
    1.85 +	static void TimerExpired();
    1.86 +	static inline TBool XyInput();
    1.87 +#if defined(__WINS__)
    1.88 +	static void SetXyInputType(TXYInputType aXyInputType);
    1.89 +#endif
    1.90 +	static void UpdatePrimaryPointer(const TRawEvent& aRawEvent);
    1.91 +	static inline void RollbackPrimaryPointer();
    1.92 +	static TInt SetCloseProximityThresholds(TInt aEnterCloseProximityThreshold, TInt aExitCloseProximityThreshold);
    1.93 +	static TInt GetEnterCloseProximityThreshold();
    1.94 +	static TInt GetExitCloseProximityThreshold();
    1.95 +	static TInt SetHighPressureThresholds(TInt aEnterHighPressureThreshold, TInt aExitHighPressureThreshold);
    1.96 +	static TInt GetEnterHighPressureThreshold();
    1.97 +	static TInt GetExitHighPressureThreshold();
    1.98 +	static inline TInt PrimaryPointer();
    1.99 +private:
   1.100 +	/** Clears all fields to default values, state goes to EPointerStateOutOfRange */
   1.101 +	void Clear();
   1.102 +	void SendEnterExitEvent(TEventCode aType);
   1.103 +	void SetCurrentWindow(const CWsWindow* aWin);
   1.104 +	void ReLogCurrentWindow();
   1.105 +	void ReLogCurrentWindow(TPoint &aPos, TPoint &aParentPos, const CWsWindowGroup* aForceInGroup);
   1.106 +	void ProcessForegroundCheck();
   1.107 +	CWsPointerCursor* CalculatePointerCursor();
   1.108 +	void ProcessEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup,TBool aNatural);	
   1.109 +	void ProcessEvent(TWsEvent& aEvent, TBool aNatural);
   1.110 +	void ProcessPointerEvent(TWsEvent& aEvent);
   1.111 +	void ProcessOutOfRangeEvent(TWsEvent& aEvent,const CWsWindowGroup* aForceInGroup, TBool aNatural);
   1.112 +	void UnmatchedEventPurged(TPointerEvent::TType aPointerType, TUint aHandle);
   1.113 +	TBool CheckMatchingEventPurged(TPointerEvent::TType aType);
   1.114 +	TBool QueuePointerEvent(const CWsWindow* aWindow, TWsEvent &event);
   1.115 +	void ClaimGrab(const CWsWindow* aWindow, TBool aSendUpEvent);
   1.116 +	void PointerCursorUpdateCheck();
   1.117 +	void NotifyCClick(TAdvancedPointerEvent& aPointerEvent);
   1.118 +	
   1.119 +	static void RestrictPos(TPoint& aPos,TBool aWithinDrawableArea=ETrue);
   1.120 +	void RequestRepeatEvent(CWsWindow* aWindow, const TWsWinCmdRequestPointerRepeatEvent& aRequest);
   1.121 +	void CancelPointerRepeatEventRequest();
   1.122 +	TBool PointerEventRepeatCheck(const TWsEvent* aEvent, TUint32 aHandle);
   1.123 +	static void UpdatePointerCursorTo(CWsPointerCursor* aNewCursor);
   1.124 +	static inline TBool MovesAvailable();
   1.125 +	static inline TBool DeltaMouse();
   1.126 +	static inline CWsWindow*& RepeatWindow(TUint8 aPointerNumber);
   1.127 +	static inline TRect& RepeatRect(TUint8 aPointerNumber);
   1.128 +	static inline CWsPointerTimer*& RepeatTimer(TUint8 aPointerNumber);
   1.129 +	static inline TBool PointerNumberInRange(TUint8 aPointerNumber);
   1.130 +	static void ShiftYCoordinate(TInt& aY);
   1.131 +private:
   1.132 +	/** Pointer number used to identify this pointer */
   1.133 +	TUint iNumber;
   1.134 +	
   1.135 +	/** State of the pointer - Up, Down or OutOfRange */
   1.136 +	TPointerState iState;
   1.137 +	
   1.138 +	/** 2D position of the pointer. Valid if iState != EPointerStateOutOfRange. */
   1.139 +	TPoint iPos;
   1.140 +	
   1.141 +	/** Combined pressure and proximity values for the pointer */
   1.142 +	TInt iPressureProximity;
   1.143 +	
   1.144 +	/** Where the pointer is 'Logged' taking into account position, grabbing and capturing */
   1.145 +	const CWsWindow* iCurrentWindow;
   1.146 +	
   1.147 +	/** Window under pointer */
   1.148 +	const CWsWindow* iActualWinPointerIsOver;
   1.149 +	
   1.150 +	/** Window that is grabbing this pointer's events (related to Drag events) */
   1.151 +	const CWsWindow* iGrabWindow;
   1.152 +	
   1.153 +	TUint iLastUnmatchedDown1;
   1.154 +	TUint iLastUnmatchedDown2;
   1.155 +	TUint iLastUnmatchedDown3;
   1.156 +	TUint iLastUnmatchedEnterHighPressure;
   1.157 +	
   1.158 +	/** Window which received last click, for double click detection */
   1.159 +	const CWsWindow* iPrevClickWindow;
   1.160 +	
   1.161 +	/** Position of last click, for double click detection */
   1.162 +	TPoint iPrevClickPos;
   1.163 +	
   1.164 +	/** Time of last click, for double click detection */ 
   1.165 +	TTime iPrevClickTime;
   1.166 +	
   1.167 +	/** Which button has been clicked last time, for double click detection */ 
   1.168 +	TPointerEvent::TType iPrevClickEventType;
   1.169 +	
   1.170 +	/** State upon which firing of EEnterCloseProximity and EExitCloseProximity
   1.171 +	events is based. */
   1.172 +	TBool iInCloseProximity;
   1.173 +	
   1.174 +	/** State upon which firing of EEnterHighPressure and EExitHighPressure
   1.175 +	events is based. */
   1.176 +	TBool iInHighPressure;
   1.177 +	
   1.178 +	/** Timer for pointer event repeating */
   1.179 +	CWsPointerTimer* iRepeatTimer;
   1.180 +	
   1.181 +	CWsWindow* iRepeatWindow;
   1.182 +	
   1.183 +	TRect iRepeatRect;
   1.184 +	
   1.185 +	/** Pointing device's type */
   1.186 +	static TXYInputType iXyInputType;
   1.187 +
   1.188 +	/** Maximum number of pointers handled at the same time. Always at least 1. */ 
   1.189 +	static TInt iMaxPointers;
   1.190 +	
   1.191 +	/** Main array of TWsPointer objects, can keep up to iMaxPointers objects */
   1.192 +	static RArray<TWsPointer> iPointers;
   1.193 +	
   1.194 +	/** Index of Primary Pointer in iPointers array. */
   1.195 +	static TInt iPrimaryPointer;
   1.196 +	
   1.197 +	/** Previous primary pointer, before last run of UpdatePrimaryPointer(TRawEvent). */
   1.198 +	static TInt iPreviousPrimaryPointer;
   1.199 +	
   1.200 +	static CWsRootWindow* iRootWindow;
   1.201 +	
   1.202 +	/** Global setting for all pointers */
   1.203 +	static TTimeIntervalMicroSeconds32 iDoubleClickMaxInterval;
   1.204 +
   1.205 +	/** Global setting for all pointers */
   1.206 +	static TInt iDoubleClickMaxDistance;
   1.207 +	
   1.208 +	static CWsPointerCursor* iCursorSprite;
   1.209 +	
   1.210 +	static TPointerCursorMode iPointerCursorMode;
   1.211 +	
   1.212 +	/** If pointer cursor update is required */
   1.213 +	static TBool iUpdateRequired;
   1.214 +	
   1.215 +	/** Timer for pointer cursor updates */
   1.216 +	static CPeriodic* iPeriodicTimer;
   1.217 +	
   1.218 +	/** For iPeriodicTimer */
   1.219 +	static TBool iTimerQueued;
   1.220 +	
   1.221 +	static TBool iIs3DPointer;
   1.222 +	
   1.223 +	/** Threshold upon which firing of EEnterCloseProximity event is based */
   1.224 +	static TInt iEnterCloseProximityThreshold;
   1.225 +	
   1.226 +	/** Threshold upon which firing of EExitCloseProximity event is based */
   1.227 +	static TInt iExitCloseProximityThreshold;
   1.228 +
   1.229 +	/** Threshold upon which firing of EEnterHighPressure event is based */
   1.230 +	static TInt iEnterHighPressureThreshold;
   1.231 +
   1.232 +	/** Threshold upon which firing of EExitHighPressure event is based */
   1.233 +	static TInt iExitHighPressureThreshold;
   1.234 +	
   1.235 +	/** Used to offset the y pointer */
   1.236 +	static TInt iYOffset;
   1.237 +	
   1.238 +#if defined(__WINS__)
   1.239 +	/** Tell whether to rotate pointer coords in _WINS_ builds */
   1.240 +	static TBool iEmulatorRotatePointerCoords;
   1.241 +#endif
   1.242 +	};
   1.243 +
   1.244 +class CWsPointerBuffer : public CBase
   1.245 +	{
   1.246 +public:
   1.247 +	~CWsPointerBuffer();
   1.248 +	static void ConnectL(CWsClientWindow* aWindow, TInt aMaxPoints, TUint aFlags);
   1.249 +	static void Disconnect(CWsClientWindow* aWindow);
   1.250 +	static void PointerEvent(CWsClientWindow* aWindow,const TPoint &aPoint);
   1.251 +	static void RetrievePointerMoveBuffer(CWsClientWindow* aWindow,TInt aMaxPoints);
   1.252 +	static void DiscardPointerMoveBuffer(CWsClientWindow* aWindow);
   1.253 +	static void DiscardPointerMoveBuffer(TUint aHandle);
   1.254 +private:
   1.255 +	static void AdjustMaxSizeL();
   1.256 +	static void Reset();
   1.257 +	static void SignalBufferReady();
   1.258 +private:
   1.259 +	CWsClientWindow* iWindow;
   1.260 +	TInt iMaxPoints;
   1.261 +	TInt iFlags;
   1.262 +	TSglQueLink iQue;
   1.263 +	static TBool iSignalled;
   1.264 +	static CWsPointerBuffer* iCurrentBuffer;
   1.265 +	static CCirBuf<TPoint>* iPointerBuffer;
   1.266 +	static TSglQue<CWsPointerBuffer> iList;
   1.267 +	};
   1.268 +
   1.269 +
   1.270 +inline void TWsPointer::SetPointerCursorMode(TPointerCursorMode aMode)
   1.271 +	{iPointerCursorMode=aMode;}
   1.272 +	
   1.273 +inline TPointerCursorMode TWsPointer::PointerCursorMode()
   1.274 +	{return iPointerCursorMode;}
   1.275 +	
   1.276 +inline TPoint TWsPointer::PointerCursorPos()
   1.277 +	{return iPointers[iPrimaryPointer].iPos;}
   1.278 +
   1.279 +inline void TWsPointer::UnmatchedEventPurged(TPointerEvent::TType aPointerType, TWsEvent* aEventPurged)
   1.280 +	{iPointers[TAdvancedPointerEventHelper::PointerNumber(*aEventPurged)].UnmatchedEventPurged(aPointerType, aEventPurged->Handle());}
   1.281 +
   1.282 +inline TBool TWsPointer::XyInput()
   1.283 +	{return iXyInputType!=EXYInputNone;}
   1.284 +
   1.285 +/*
   1.286 +EXYInputNone => no pointer, no moves.
   1.287 +EXYInputPointer && !iIs3DPointer => drags only, no moves (allows mouse to behave like pen for emulator)
   1.288 +EXYInputPointer && iIs3DPointer => drags and moves
   1.289 +EXYInputMouse => drags and moves  
   1.290 +EXYInputDeltaMouse => drags and moves
   1.291 +*/
   1.292 +inline TBool TWsPointer::MovesAvailable()
   1.293 +	{return (iXyInputType!=EXYInputNone && ((iXyInputType!=EXYInputPointer)||iIs3DPointer));}
   1.294 +
   1.295 +inline TBool TWsPointer::DeltaMouse()
   1.296 +	{return (iXyInputType==EXYInputDeltaMouse);}
   1.297 +
   1.298 +inline TInt TWsPointer::PrimaryPointer()
   1.299 +	{return iPrimaryPointer;}
   1.300 +
   1.301 +/**
   1.302 +Sets primary pointer to the one which was present before last run of UpdatePrimaryPointer() method.
   1.303 +*/
   1.304 +inline void TWsPointer::RollbackPrimaryPointer()
   1.305 +	{iPrimaryPointer = iPreviousPrimaryPointer;}
   1.306 +
   1.307 +inline CWsWindow*& TWsPointer::RepeatWindow(TUint8 aPointerNumber)
   1.308 +	{return iPointers[aPointerNumber].iRepeatWindow;}
   1.309 +
   1.310 +inline TRect& TWsPointer::RepeatRect(TUint8 aPointerNumber)
   1.311 +	{return iPointers[aPointerNumber].iRepeatRect;}
   1.312 +
   1.313 +inline CWsPointerTimer*& TWsPointer::RepeatTimer(TUint8 aPointerNumber)
   1.314 +	{return iPointers[aPointerNumber].iRepeatTimer;}
   1.315 +
   1.316 +inline TBool TWsPointer::PointerNumberInRange(TUint8 aPointerNumber)
   1.317 +	{return (aPointerNumber<iMaxPointers);}
   1.318 +
   1.319 +#endif