os/graphics/windowing/windowserver/nga/SERVER/EVENT.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1999-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
// Definition of classes related event handling
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
#ifndef __EVENT_H__
sl@0
    20
#define __EVENT_H__
sl@0
    21
sl@0
    22
#include "EVQUEUE.H"
sl@0
    23
#include <e32std.h>
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <e32svr.h>
sl@0
    26
#include "W32STD.H"
sl@0
    27
#include "w32cmd.h"
sl@0
    28
#include "EVQUEUE.H"
sl@0
    29
#include <w32adll.h>
sl@0
    30
#include "graphics/WSGRAPHICDRAWER.H"
sl@0
    31
#include <graphics/wskeyrouter.h>
sl@0
    32
sl@0
    33
class CWsClient;
sl@0
    34
class CWsWindowBase;
sl@0
    35
class CWsWindowGroup;
sl@0
    36
class MEventHandler;
sl@0
    37
class CWsHotKey;
sl@0
    38
class CWsCaptureLongKey;
sl@0
    39
class CScreen;
sl@0
    40
class DWsScreenDevice;
sl@0
    41
sl@0
    42
const TInt KRetryInitialDelay = 100000; //0.01 second
sl@0
    43
sl@0
    44
struct TEventRequestItem
sl@0
    45
	{
sl@0
    46
	const CWsWindowBase *iWindow;
sl@0
    47
	TInt iParam;
sl@0
    48
	TEventControl iCircumstances;
sl@0
    49
	TSglQueLink iQue;
sl@0
    50
	};
sl@0
    51
sl@0
    52
class TEventRequestQueue
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	TEventRequestQueue();
sl@0
    56
	TEventRequestItem *FindInEventRequestQueueList(const CWsWindowBase &aWindow);
sl@0
    57
	void AddToEventRequestListL(const CWsWindowBase &aWindow, TInt aParam, TEventControl aCircumstances);
sl@0
    58
	void RemoveFromEventRequestListL(const CWsWindowBase &aWindow);
sl@0
    59
	inline TSglQue<TEventRequestItem> &Queue();
sl@0
    60
private:
sl@0
    61
	TSglQue<TEventRequestItem> iQueue;
sl@0
    62
	};
sl@0
    63
sl@0
    64
class CRawEventReceiver : public CActive
sl@0
    65
	{
sl@0
    66
public:
sl@0
    67
	CRawEventReceiver(TInt aPriority);
sl@0
    68
	~CRawEventReceiver();
sl@0
    69
	void ConstructL();
sl@0
    70
	inline TBool IsReadyToRun() const {return IsActive() && iStatus!=KRequestPending;}
sl@0
    71
protected:
sl@0
    72
	void Request();
sl@0
    73
	void DoCancel();
sl@0
    74
	void RunL();
sl@0
    75
private:
sl@0
    76
	TRawEventBuf iEventBuf;
sl@0
    77
	};
sl@0
    78
sl@0
    79
class TRepeatKey
sl@0
    80
	{
sl@0
    81
public:
sl@0
    82
	TKeyEventRouterOutput iOutput;
sl@0
    83
	TInt iInputScanCode;
sl@0
    84
	};
sl@0
    85
sl@0
    86
class CKeyboardRepeat : public CTimer
sl@0
    87
	{
sl@0
    88
public:
sl@0
    89
	CKeyboardRepeat();
sl@0
    90
	static void NewL();
sl@0
    91
	static void Destroy();
sl@0
    92
	static void KeyDown();
sl@0
    93
	static void KeyUp(TInt aScanCode);
sl@0
    94
	static void StartRepeat(TInt aInputScanCode, const TKeyEventRouterOutput& aShortEvent, const TKeyEventRouterOutput* aLongEvent);
sl@0
    95
	static void CancelRepeat(CWsWindowGroup *aRepeatFocus);
sl@0
    96
	static void CancelRepeat(const TAny* aCaptureHandle, TBool aLongCaptureFlag);
sl@0
    97
	static void SetRepeatTime(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime);
sl@0
    98
	static void GetRepeatTime(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime);
sl@0
    99
	static inline TBool IsAreadyActive();
sl@0
   100
private:
sl@0
   101
	enum TRepeatType
sl@0
   102
		{
sl@0
   103
		ERepeatNone,
sl@0
   104
		ERepeatNormal,
sl@0
   105
		ERepeatLong,
sl@0
   106
		ERepeatLongRepeated,
sl@0
   107
		};
sl@0
   108
private:
sl@0
   109
	static void doCancelRepeat();
sl@0
   110
	void RunL();
sl@0
   111
private:
sl@0
   112
	static CKeyboardRepeat *iThis; // Needed as CTimer derived parts can't be static
sl@0
   113
	static TTimeIntervalMicroSeconds32 iInitialTime;
sl@0
   114
	static TTimeIntervalMicroSeconds32 iTime;
sl@0
   115
	static TRepeatType iRepeating;
sl@0
   116
	static TRepeatKey iCurrentRepeat;
sl@0
   117
	static TRepeatKey iAlternateRepeat;
sl@0
   118
	static TRepeatKey iLongRepeat;
sl@0
   119
	static TBool iAlternateRepeatExists;
sl@0
   120
	static CWsCaptureLongKey* iLongCapture;
sl@0
   121
	static TInt iRepeatRollover;
sl@0
   122
	};
sl@0
   123
sl@0
   124
struct SNotificationHandler {CAnim* iAnim; TUint32 iNotifications;};
sl@0
   125
struct TDrawerHandler
sl@0
   126
	{
sl@0
   127
	TDrawerHandler(CWsGraphicDrawer *aDrawer, TUint32 aEvents): iDrawer(aDrawer), iEvents(aEvents) {}
sl@0
   128
	CWsGraphicDrawer* iDrawer;
sl@0
   129
	TUint32 iEvents;
sl@0
   130
	};
sl@0
   131
sl@0
   132
struct TWsEventHandler
sl@0
   133
	{
sl@0
   134
	TWsEventHandler(MWsEventHandler *aHandler, TUint32 aEvents): iHandler(aHandler), iEvents(aEvents) {}
sl@0
   135
	static TBool CompareHandler(const TWsEventHandler& lhs, const TWsEventHandler& rhs) { return lhs.iHandler == rhs.iHandler; }
sl@0
   136
	MWsEventHandler* iHandler;
sl@0
   137
	TUint32 iEvents;
sl@0
   138
	};
sl@0
   139
sl@0
   140
class CEventQueueRetry : public CActive
sl@0
   141
	{
sl@0
   142
public:
sl@0
   143
	static CEventQueueRetry* NewL();
sl@0
   144
	~CEventQueueRetry();
sl@0
   145
	void Init(CScreen *aOwner);
sl@0
   146
	void Retry(TInt aDelay);
sl@0
   147
	void CancelRetry();
sl@0
   148
private:
sl@0
   149
	CEventQueueRetry();
sl@0
   150
	void ConstructL();
sl@0
   151
	// From CActive:
sl@0
   152
	void RunL();
sl@0
   153
	void DoCancel();
sl@0
   154
	
sl@0
   155
private:
sl@0
   156
	RTimer iTimer;
sl@0
   157
	CScreen *iOwner;
sl@0
   158
	TInt iRetrySpinner;
sl@0
   159
	RPointerArray<CWsClient> iClientArray;
sl@0
   160
	};
sl@0
   161
sl@0
   162
class TWindowServerEvent
sl@0
   163
	{
sl@0
   164
	#define EDefaultInitialRepeatTime TTimeIntervalMicroSeconds32(300000)
sl@0
   165
	#define EDefaultRepeatTime TTimeIntervalMicroSeconds32(100000)
sl@0
   166
sl@0
   167
	typedef void (*TSendEventFunc)(TEventRequestItem *aQptr, TInt aParam1, TInt aParam2);
sl@0
   168
public:
sl@0
   169
	enum {ENumHotKeys=21};
sl@0
   170
	enum {EOomEventSecondGap=150};	// Don't resend OOM messages unless at least 150 seconds has passed
sl@0
   171
	enum {ERemovedEventHandlerWhileProcessingRawEvents=0x02};
sl@0
   172
public:
sl@0
   173
	static void InitStaticsL();
sl@0
   174
	static void DeleteStatics();
sl@0
   175
	static CWsHotKey* ClearHotKeysL(TInt aHotKey);
sl@0
   176
	static void ResetDefaultHotKeyL(TInt aHotKey);
sl@0
   177
	static void SetHotKeyL(const TWsClCmdSetHotKey &aHotKey);
sl@0
   178
	static void AddCaptureKeyL(const TKeyCaptureRequest& aRequest);
sl@0
   179
	static void UpdateCaptureKeyL(const TKeyCaptureRequest& aRequest);
sl@0
   180
	static void CancelCaptureKey(TKeyCaptureType aType, TAny* aHandle);
sl@0
   181
	static void ClientDestroyed(CWsClient *aClient);
sl@0
   182
	static inline void AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
sl@0
   183
	static inline void RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow);
sl@0
   184
	static inline void AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
sl@0
   185
	static inline void RemoveFromErrorMessageList(const CWsWindowBase &aWindow);
sl@0
   186
	static inline void AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances);
sl@0
   187
	static inline void RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow);
sl@0
   188
	static inline void AddToGroupChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   189
	static inline void RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   190
	static inline void AddToFocusChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   191
	static inline void RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   192
	static inline void AddToGroupListChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   193
	static inline void RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   194
	static inline void AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   195
	static inline void RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow);
sl@0
   196
	static TInt GetModifierState();
sl@0
   197
	static inline TInt GetStoredModifierState();
sl@0
   198
	static void SetModifierState(TEventModifier aModifier,TModifierState aState);
sl@0
   199
	static void ProcessRawEvent(const TRawEvent& aRawEvent);
sl@0
   200
	static void ProcessKeyEvent(const TKeyEvent& aKeyEvent,TInt aRepeats);
sl@0
   201
	static TBool MousePress(const TRawEvent &aRawEvent, const CWsWindowGroup *aGroupWin);
sl@0
   202
	static void SendGroupChangedEvents();
sl@0
   203
	static void SendFocusChangedEvents();
sl@0
   204
	static void SendGroupListChangedEvents();
sl@0
   205
	static void SendVisibilityChangedEvents(CWsWindowBase* aWin, TUint aFlags);
sl@0
   206
	static TBool SendDisplayChangedEvents(CWsClient *aWsClient, TInt aDisplayNumber, TInt aConfigurationChangeId, TInt aResolutionListChangeId);
sl@0
   207
	static void SendScreenDeviceChangedEvents(CScreen* aScreen);
sl@0
   208
	static void SendScreenDeviceChangedEvent(const CWsWindowBase *aWindow);
sl@0
   209
	static TBool ProcessErrorMessages(TWsErrorMessage::TErrorCategory aCategory, TInt aError);
sl@0
   210
	static void NotifyOom();
sl@0
   211
	static void ProcessKeyPress(const TKeyEvent& aKeyEvent, TBool aCheckRepeat,TInt aRepeats);
sl@0
   212
	static void QueueKeyPress(const TKeyEventRouterOutput& aOutput, TBool aIsRepeat, TInt aRepeats);
sl@0
   213
	static void AddEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled);
sl@0
   214
	static void RemoveEventHandler(const MEventHandler *aEventHandler);
sl@0
   215
	static void PotentialEventHandlerL(TInt aNum);
sl@0
   216
	static TInt AddNotificationHandler(CAnim* aAnim, TUint32 aNotifications);
sl@0
   217
	static void RemoveNotificationHandler(CAnim* aAnim);
sl@0
   218
	static void PublishNotification(const TWsEvent& aWsEvent);
sl@0
   219
	static TInt RegisterDrawerHandler(CWsGraphicDrawer* aDrawer, TUint32 aEvents);
sl@0
   220
	static TInt UnregisterDrawerHandler(CWsGraphicDrawer* aDrawer);
sl@0
   221
	static TInt RegisterWsEventHandler(MWsEventHandler * aHandler, TUint32 aEvents);
sl@0
   222
	static TInt UnregisterWsEventHandler(MWsEventHandler * aHandler);
sl@0
   223
	static void NotifyDrawer(const TWservCrEvent& aEvent);
sl@0
   224
	static void NotifyScreenDrawingEvent(const TRegion* aRegion);
sl@0
   225
	static void NotifyScreenDrawingEvent(const TRect& aRect);
sl@0
   226
	static inline const CRawEventReceiver* EventReceiver() {return iEventReceiver;}
sl@0
   227
private:
sl@0
   228
	class TRawEventHandler
sl@0
   229
		{
sl@0
   230
		public:
sl@0
   231
			inline TRawEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled);
sl@0
   232
		public:
sl@0
   233
			MEventHandler *iEventHandler;
sl@0
   234
			TBool iAdvancedPointersEnabled;
sl@0
   235
		};
sl@0
   236
	static void ProcessEventQueue(TEventRequestQueue &aQueue, TSendEventFunc aFunc, TInt aParam1, TInt aParam2);
sl@0
   237
	static void DeleteHotKeys();
sl@0
   238
	static void QueueKeyEvent(CWsWindowGroup *aWin, TWsEvent &aEvent, TWservEventPriorities aPriority);
sl@0
   239
	static void QueueKeyUpDown(const TRawEvent &aRawEvent);
sl@0
   240
	static void ConstructDefaultHotKeyL(TInt aHotKey, const TWsWinCmdCaptureKey &aSystemKey);
sl@0
   241
	static void ProcessModifierChanges();
sl@0
   242
	static void LinkHotKey(CWsHotKey *aWsHotKey);
sl@0
   243
	static TBool DrawerCompareFunc(const TDrawerHandler& lhs, const TDrawerHandler& rhs);
sl@0
   244
private:
sl@0
   245
	static CKeyTranslator *iKeyTranslator;
sl@0
   246
	static TEventRequestQueue iSwitchOnQueue;
sl@0
   247
	static TEventRequestQueue iErrorMessageQueue;
sl@0
   248
	static TEventRequestQueue iModifierChangedQueue;
sl@0
   249
	static TEventRequestQueue iGroupChangedQueue;
sl@0
   250
	static TEventRequestQueue iFocusChangedQueue;
sl@0
   251
	static TEventRequestQueue iGroupListChangedQueue;
sl@0
   252
	static TEventRequestQueue iScreenDeviceChangedQueue;
sl@0
   253
	static TTime iPrevOomMessageTime;
sl@0
   254
	static CCaptureKeys *iCaptureKeys;
sl@0
   255
	static CKeyEventRouter *iKeyEventRouter;
sl@0
   256
	static RLibrary iKeyEventRouterLibrary;
sl@0
   257
	static CWsHotKey *iHotKeys;
sl@0
   258
	static TInt iModifierState;
sl@0
   259
	static CRawEventReceiver *iEventReceiver;
sl@0
   260
	static RArray<TRawEventHandler> iEventHandlers;
sl@0
   261
	static CArrayFixFlat<SNotificationHandler> *iNotificationHandlers;
sl@0
   262
	static TInt iPotentialEventHandlers;
sl@0
   263
	static RArray<TDrawerHandler>* iDrawerHandlers;
sl@0
   264
	static RArray<TWsEventHandler> iWsEventHandlers;
sl@0
   265
	static TUint32 iBinaryFlags;
sl@0
   266
	static TInt iEventHandlerCount;
sl@0
   267
	};
sl@0
   268
sl@0
   269
sl@0
   270
//
sl@0
   271
// inlines			//
sl@0
   272
//
sl@0
   273
sl@0
   274
inline TBool CKeyboardRepeat::IsAreadyActive()
sl@0
   275
	{
sl@0
   276
	return iThis->IsActive();
sl@0
   277
	}
sl@0
   278
sl@0
   279
inline TWindowServerEvent::TRawEventHandler::TRawEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled)
sl@0
   280
: iEventHandler(aEventHandler), iAdvancedPointersEnabled(aAdvancedPointersEnabled)
sl@0
   281
	{ }
sl@0
   282
sl@0
   283
inline void TWindowServerEvent::AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
sl@0
   284
	{iSwitchOnQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
sl@0
   285
inline void TWindowServerEvent::AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
sl@0
   286
	{iErrorMessageQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
sl@0
   287
inline void TWindowServerEvent::AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances)
sl@0
   288
	{iModifierChangedQueue.AddToEventRequestListL(aWindow, aModifierMask, aCircumstances);}
sl@0
   289
inline void TWindowServerEvent::AddToGroupChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   290
	{iGroupChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   291
inline void TWindowServerEvent::AddToFocusChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   292
	{iFocusChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   293
inline void TWindowServerEvent::AddToGroupListChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   294
	{iGroupListChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   295
inline void TWindowServerEvent::AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   296
	{iScreenDeviceChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   297
sl@0
   298
inline void TWindowServerEvent::RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow)
sl@0
   299
	{iSwitchOnQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   300
inline void TWindowServerEvent::RemoveFromErrorMessageList(const CWsWindowBase &aWindow)
sl@0
   301
	{iErrorMessageQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   302
inline void TWindowServerEvent::RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow)
sl@0
   303
	{iModifierChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   304
inline void TWindowServerEvent::RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   305
	{iGroupChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   306
inline void TWindowServerEvent::RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   307
	{iFocusChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   308
inline void TWindowServerEvent::RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   309
	{iGroupListChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   310
inline void TWindowServerEvent::RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow)
sl@0
   311
	{iScreenDeviceChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   312
inline TInt TWindowServerEvent::GetStoredModifierState()
sl@0
   313
	{return(iModifierState);}
sl@0
   314
sl@0
   315
#endif