os/graphics/windowing/windowserver/nonnga/SERVER/pointer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// WsPointer and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __POINTER_H__
sl@0
    19
#define __POINTER_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
sl@0
    23
class CWsPointerTimer : public CTimer
sl@0
    24
	{
sl@0
    25
public:
sl@0
    26
	CWsPointerTimer();
sl@0
    27
	void ConstructL();
sl@0
    28
private:
sl@0
    29
	void RunL();
sl@0
    30
	};
sl@0
    31
sl@0
    32
class WsPointer
sl@0
    33
	{
sl@0
    34
	enum {EPointerUpdateGapInMicroSeconds=50000};
sl@0
    35
public:
sl@0
    36
	static void InitStaticsL();
sl@0
    37
	static void DeleteStatics();
sl@0
    38
	static inline TPointerCursorMode PointerCursorMode();
sl@0
    39
	static inline void SetPointerCursorMode(TPointerCursorMode aMode);
sl@0
    40
	static inline TPoint PointerCursorPos();
sl@0
    41
	static void SetPointerCursorPos(TPoint aPos);
sl@0
    42
	static void ReLogCurrentWindow();
sl@0
    43
	static void ReLogCurrentWindow(TPoint &aPos, TPoint &aParentPos, const CWsWindowGroup *aForceInGroup);
sl@0
    44
	static void ReLogWindow(const CWsWindow *aWin);
sl@0
    45
	static void WindowDisconected(const CWsWindow *deletedWindow);
sl@0
    46
	static void ClaimGrab(const CWsWindow *aWindow, TBool aSendUpEvent);
sl@0
    47
#if defined(__WINS__)
sl@0
    48
	static TBool PreProcessEvent(TRawEvent &aRawEvent,TBool aFromHardware=EFalse);
sl@0
    49
#else
sl@0
    50
	static TBool PreProcessEvent(TRawEvent &aRawEvent);
sl@0
    51
#endif
sl@0
    52
	static void ProcessEvent(TPointerEvent::TType type, const TPoint &aPos, TUint aModifiers
sl@0
    53
																				,const CWsWindowGroup *aForceInGroup,TBool aNatural);
sl@0
    54
	static void GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aTime, TInt &aDistance);
sl@0
    55
	static void SetDoubleClick(const TTimeIntervalMicroSeconds32 &aTime, TInt aDistance);
sl@0
    56
	static void UpdatePointerCursor();
sl@0
    57
	static void RequestPointerRepeatEvent(CWsWindow *aWindow, TTimeIntervalMicroSeconds32 aTime,const TRect &aRect);
sl@0
    58
	static void CancelPointerRepeatEventRequest();
sl@0
    59
	static void RepeatTimerCompleted();
sl@0
    60
	static TEventQueueWalkRet PointerRepeatPurgeCheck(const TWsEvent *aEvent);
sl@0
    61
	static void UnmatchedDownPurged(TPointerEvent::TType aPointerType, TUint aHandle);
sl@0
    62
	static void TimerExpired();
sl@0
    63
	static inline TBool XyInput();
sl@0
    64
#if defined(__WINS__)
sl@0
    65
	static void SetXyInputType(TXYInputType aXyInputType);
sl@0
    66
#endif
sl@0
    67
private:
sl@0
    68
	static void PointerCursorUpdateCheck();
sl@0
    69
	static void ProcessForegroundCheck();
sl@0
    70
	static void RestrictPos(TPoint& aPos,TBool aWithinDrawableArea=ETrue);
sl@0
    71
	static void ProcessEvent(TWsEvent& aEvent);
sl@0
    72
	static TBool PointerEventRepeatCheck(const TWsEvent *aEvent, TUint32 aHandle);
sl@0
    73
	static void SendEnterExitEvent(TEventCode aType);
sl@0
    74
	static void SetCurrentWindow(const CWsWindow *aWin);
sl@0
    75
	static void ProcessPointerEvent(TWsEvent& aEvent);
sl@0
    76
	static TBool QueuePointerEvent(const CWsWindow *aWindow, TWsEvent &event);
sl@0
    77
	static TBool CheckDownEventPurged(TPointerEvent::TType aType);
sl@0
    78
	static void UpdatePointerCursorTo(CWsPointerCursor* aNewCursor);
sl@0
    79
	static CWsPointerCursor* CalculatePointerCursor();
sl@0
    80
	static inline TBool MovesAvailable();
sl@0
    81
	static inline TBool DeltaMouse();
sl@0
    82
private:	
sl@0
    83
	static TPoint iCurrentPos;
sl@0
    84
	static TBool iPointerDown;	// Maps onto button1 down on multi button systems
sl@0
    85
	static TXYInputType iXyInputType;
sl@0
    86
	static const CWsWindow *iCurrentWindow;
sl@0
    87
	static const CWsWindow *iGrabWindow;
sl@0
    88
	static const CWsWindow *iActualWinPointerIsOver;
sl@0
    89
	static const CWsWindow *iPrevClickWindow;
sl@0
    90
	static TPoint iPrevClickPos;
sl@0
    91
	static TTime iPrevClickTime;
sl@0
    92
	static TPointerEvent::TType iPrevClickEventType;
sl@0
    93
	static TTimeIntervalMicroSeconds32 iDoubleClickMaxInterval;
sl@0
    94
	static TInt iDoubleClickMaxDistance;
sl@0
    95
	static CWsPointerCursor *iCursorSprite;
sl@0
    96
	static CWsPointerTimer *iRepeatTimer;
sl@0
    97
	static TPointerCursorMode iPointerCursorMode;
sl@0
    98
	static CWsWindow *iRepeatWindow;
sl@0
    99
	static TRect iRepeatRect;
sl@0
   100
	static TUint iLastUnmatchedDown1;
sl@0
   101
	static TUint iLastUnmatchedDown2;
sl@0
   102
	static TUint iLastUnmatchedDown3;
sl@0
   103
	static TBool iTimerQueued;
sl@0
   104
	static TBool iUpdateRequired;
sl@0
   105
	static CPeriodic *iPeriodicTimer;
sl@0
   106
	static CWsRootWindow* iRootWindow;	// uses
sl@0
   107
	};
sl@0
   108
sl@0
   109
class CWsPointerBuffer : public CBase
sl@0
   110
	{
sl@0
   111
public:
sl@0
   112
	~CWsPointerBuffer();
sl@0
   113
	static void ConnectL(CWsClientWindow *aWindow, TInt aMaxPoints, TUint aFlags);
sl@0
   114
	static void Disconnect(CWsClientWindow *aWindow);
sl@0
   115
	static void PointerEvent(CWsClientWindow *aWindow,const TPoint &aPoint);
sl@0
   116
	static void RetrievePointerMoveBuffer(CWsClientWindow *aWindow,TInt aMaxPoints);
sl@0
   117
	static void DiscardPointerMoveBuffer(CWsClientWindow *aWindow);
sl@0
   118
	static void DiscardPointerMoveBuffer(TUint aHandle);
sl@0
   119
private:
sl@0
   120
	static void AdjustMaxSizeL();
sl@0
   121
	static void Reset();
sl@0
   122
	static void SignalBufferReady();
sl@0
   123
private:
sl@0
   124
	CWsClientWindow *iWindow;
sl@0
   125
	TInt iMaxPoints;
sl@0
   126
	TInt iFlags;
sl@0
   127
	TSglQueLink iQue;
sl@0
   128
	static TBool iSignalled;
sl@0
   129
	static CWsPointerBuffer *iCurrentBuffer;
sl@0
   130
	static CCirBuf<TPoint> *iPointerBuffer;
sl@0
   131
	static TSglQue<CWsPointerBuffer> iList;
sl@0
   132
	};
sl@0
   133
sl@0
   134
sl@0
   135
inline void WsPointer::SetPointerCursorMode(TPointerCursorMode aMode)
sl@0
   136
	{
sl@0
   137
	iPointerCursorMode=aMode;
sl@0
   138
	}
sl@0
   139
	
sl@0
   140
inline TPointerCursorMode WsPointer::PointerCursorMode()
sl@0
   141
	{
sl@0
   142
	return iPointerCursorMode;
sl@0
   143
	}
sl@0
   144
	
sl@0
   145
inline TPoint WsPointer::PointerCursorPos()
sl@0
   146
	{
sl@0
   147
	return iCurrentPos;
sl@0
   148
	}
sl@0
   149
sl@0
   150
inline TBool WsPointer::XyInput()
sl@0
   151
	{
sl@0
   152
	return iXyInputType!=EXYInputNone;
sl@0
   153
	}
sl@0
   154
sl@0
   155
inline TBool WsPointer::MovesAvailable()
sl@0
   156
	{
sl@0
   157
	return (iXyInputType!=EXYInputNone && iXyInputType!=EXYInputPointer);
sl@0
   158
	}
sl@0
   159
sl@0
   160
inline TBool WsPointer::DeltaMouse()
sl@0
   161
	{
sl@0
   162
	return (iXyInputType==EXYInputDeltaMouse);
sl@0
   163
	}
sl@0
   164
sl@0
   165
#endif