os/graphics/windowing/windowserver/nonnga/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-2009 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 <w32adll.h>
sl@0
    29
#include <graphics/wsgraphicdrawer.h>
sl@0
    30
sl@0
    31
class CWsClient;
sl@0
    32
class CWsWindowBase;
sl@0
    33
class CWsWindowGroup;
sl@0
    34
class MEventHandler;
sl@0
    35
class CWsHotKey;
sl@0
    36
class CWsCaptureLongKey;
sl@0
    37
class CScreen;
sl@0
    38
sl@0
    39
struct TEventRequestItem
sl@0
    40
	{
sl@0
    41
	const CWsWindowBase *iWindow;
sl@0
    42
	TInt iParam;
sl@0
    43
	TEventControl iCircumstances;
sl@0
    44
	TSglQueLink iQue;
sl@0
    45
	};
sl@0
    46
sl@0
    47
class TEventRequestQueue
sl@0
    48
	{
sl@0
    49
public:
sl@0
    50
	TEventRequestQueue();
sl@0
    51
	TEventRequestItem *FindInEventRequestQueueList(const CWsWindowBase &aWindow);
sl@0
    52
	void AddToEventRequestListL(const CWsWindowBase &aWindow, TInt aParam, TEventControl aCircumstances);
sl@0
    53
	void RemoveFromEventRequestListL(const CWsWindowBase &aWindow);
sl@0
    54
	inline TSglQue<TEventRequestItem> &Queue();
sl@0
    55
private:
sl@0
    56
	TSglQue<TEventRequestItem> iQueue;
sl@0
    57
	};
sl@0
    58
sl@0
    59
class CRawEventReceiver : public CActive
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
	CRawEventReceiver(TInt aPriority);
sl@0
    63
	~CRawEventReceiver();
sl@0
    64
	void ConstructL();
sl@0
    65
protected:
sl@0
    66
	void Request();
sl@0
    67
	void DoCancel();
sl@0
    68
	void RunL();
sl@0
    69
private:
sl@0
    70
	TRawEventBuf iEventBuf;
sl@0
    71
	};
sl@0
    72
sl@0
    73
class TRepeatKey
sl@0
    74
	{
sl@0
    75
public:
sl@0
    76
	TKeyData iKey;
sl@0
    77
	TInt iScanCode;
sl@0
    78
	};
sl@0
    79
sl@0
    80
class CKeyboardRepeat : public CTimer
sl@0
    81
	{
sl@0
    82
public:
sl@0
    83
	CKeyboardRepeat();
sl@0
    84
	static void NewL();
sl@0
    85
	static void Destroy();
sl@0
    86
	static void KeyDown();
sl@0
    87
	static void KeyUp(TInt aScanCode);
sl@0
    88
	static TBool StartRepeat(const TKeyData &aKey, TInt aScanCode, CWsWindowGroup *aRepeatFocus, CWsCaptureLongKey* longCapture);
sl@0
    89
	static void CancelRepeat(CWsWindowGroup *aRepeatFocus);
sl@0
    90
	static void CancelRepeat(CWsWindowGroup *aRepeatFocus,TUint aScanCode,TBool aLongCaptureFlag,TUint aModifiers=0);
sl@0
    91
	static void SetRepeatTime(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime);
sl@0
    92
	static void GetRepeatTime(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime);
sl@0
    93
	static inline TBool IsAreadyActive();
sl@0
    94
private:
sl@0
    95
	enum TRepeatType
sl@0
    96
		{
sl@0
    97
		ERepeatNone,
sl@0
    98
		ERepeatNormal,
sl@0
    99
		ERepeatLong,
sl@0
   100
		ERepeatLongRepeated,
sl@0
   101
		};
sl@0
   102
private:
sl@0
   103
	static void doCancelRepeat();
sl@0
   104
	void RunL();
sl@0
   105
private:
sl@0
   106
	static CWsWindowGroup *iFocus;
sl@0
   107
	static CKeyboardRepeat *iThis; // Needed as CTimer derived parts can't be static
sl@0
   108
	static TTimeIntervalMicroSeconds32 iInitialTime;
sl@0
   109
	static TTimeIntervalMicroSeconds32 iTime;
sl@0
   110
	static TRepeatKey iCurrentRepeat;
sl@0
   111
	static TRepeatType iRepeating;
sl@0
   112
	static TRepeatKey iAlternateRepeat;
sl@0
   113
	static TBool iAlternateRepeatExists;
sl@0
   114
	static CWsCaptureLongKey* iLongCapture;
sl@0
   115
	static TInt iRepeatRollover;
sl@0
   116
	};
sl@0
   117
sl@0
   118
struct SNotificationHandler {CAnim* iAnim; TUint32 iNotifications;};
sl@0
   119
struct TDrawerHandler
sl@0
   120
	{
sl@0
   121
	TDrawerHandler(CWsGraphicDrawer *aDrawer, TUint32 aEvents): iDrawer(aDrawer), iEvents(aEvents) {}
sl@0
   122
	CWsGraphicDrawer* iDrawer;
sl@0
   123
	TUint32 iEvents;
sl@0
   124
	};
sl@0
   125
sl@0
   126
// Andy - can we deprectate TDrawerHandler and just use this?  It seems to be more generic and there's no
sl@0
   127
// good reason not to be.
sl@0
   128
struct TWsEventHandler
sl@0
   129
	{
sl@0
   130
	TWsEventHandler(MWsEventHandler *aHandler, TUint32 aEvents): iHandler(aHandler), iEvents(aEvents) {}
sl@0
   131
	static TBool CompareHandler(const TWsEventHandler& lhs, const TWsEventHandler& rhs) { return lhs.iHandler == rhs.iHandler; }
sl@0
   132
	MWsEventHandler* iHandler;
sl@0
   133
	TUint32 iEvents;
sl@0
   134
	};
sl@0
   135
sl@0
   136
class TWindowServerEvent
sl@0
   137
	{
sl@0
   138
	#define EDefaultInitialRepeatTime TTimeIntervalMicroSeconds32(300000)
sl@0
   139
	#define EDefaultRepeatTime TTimeIntervalMicroSeconds32(100000)
sl@0
   140
sl@0
   141
	typedef void (*TSendEventFunc)(TEventRequestItem *aQptr, TInt aParam1, TInt aParam2);
sl@0
   142
public:
sl@0
   143
	enum {ENumHotKeys=21};
sl@0
   144
	enum {EOomEventSecondGap=150};	// Don't resend OOM messages unless at least 150 seconds has passed
sl@0
   145
	enum {ERemovedEventHandlerWhileProcessingRawEvents=0x02};
sl@0
   146
public:
sl@0
   147
	static void InitStaticsL();
sl@0
   148
	static void DeleteStatics();
sl@0
   149
	static CWsHotKey* ClearHotKeysL(TInt aHotKey);
sl@0
   150
	static void ResetDefaultHotKeyL(TInt aHotKey);
sl@0
   151
	static void SetHotKeyL(const TWsClCmdSetHotKey &aHotKey);
sl@0
   152
	static void AddCaptureKeyL(const TCaptureKey &aCaptureKey);
sl@0
   153
	static void SetCaptureKey(TUint32 aHandle, const TCaptureKey &aCaptureKey);
sl@0
   154
	static void CancelCaptureKey(TUint32 aHandle);
sl@0
   155
	static void ClientDestroyed(CWsClient *aClient);
sl@0
   156
	static inline void AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
sl@0
   157
	static inline void RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow);
sl@0
   158
	static inline void AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
sl@0
   159
	static inline void RemoveFromErrorMessageList(const CWsWindowBase &aWindow);
sl@0
   160
	static inline void AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances);
sl@0
   161
	static inline void RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow);
sl@0
   162
	static inline void AddToGroupChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   163
	static inline void RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   164
	static inline void AddToFocusChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   165
	static inline void RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   166
	static inline void AddToGroupListChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   167
	static inline void RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow);
sl@0
   168
	static inline void AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow);
sl@0
   169
	static inline void RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow);
sl@0
   170
	static TInt GetModifierState();
sl@0
   171
	static inline TInt GetStoredModifierState();
sl@0
   172
	static void SetModifierState(TEventModifier aModifier,TModifierState aState);
sl@0
   173
	static void ProcessRawEvent(const TRawEvent& aRawEvent);
sl@0
   174
	static void ProcessKeyEvent(const TKeyEvent& aKeyEvent,TInt aRepeats);
sl@0
   175
	static TBool MousePress(const TRawEvent &aRawEvent, const CWsWindowGroup *aGroupWin);
sl@0
   176
	static void SendGroupChangedEvents();
sl@0
   177
	static void SendFocusChangedEvents();
sl@0
   178
	static void SendGroupListChangedEvents();
sl@0
   179
	static void SendVisibilityChangedEvents(CWsWindowBase* aWin, TUint aFlags);
sl@0
   180
	static void SendScreenDeviceChangedEvents(CScreen* aScreen);
sl@0
   181
	static void SendScreenDeviceChangedEvent(const CWsWindowBase *aWindow);
sl@0
   182
	static TBool ProcessErrorMessages(TWsErrorMessage::TErrorCategory aCategory, TInt aError);
sl@0
   183
	static void NotifyOom();
sl@0
   184
	static void QueueKeyPress(const TKeyData &aKey, TInt aScanCode, CWsWindowGroup *aRepeatFocus, TBool aCheckRepeat,TInt aRepeats);
sl@0
   185
	static void AddEventHandler(MEventHandler *aEventHandler);
sl@0
   186
	static void RemoveEventHandler(const MEventHandler *aEventHandler);
sl@0
   187
	static void PotentialEventHandlerL(TInt aNum);
sl@0
   188
	static TInt AddNotificationHandler(CAnim* aAnim, TUint32 aNotifications);
sl@0
   189
	static void RemoveNotificationHandler(CAnim* aAnim);
sl@0
   190
	static void PublishNotification(const TWsEvent& aWsEvent);
sl@0
   191
	static TInt RegisterDrawerHandler(CWsGraphicDrawer* aDrawer, TUint32 aEvents);
sl@0
   192
	static TInt UnregisterDrawerHandler(CWsGraphicDrawer* aDrawer);
sl@0
   193
	static TInt RegisterWsEventHandler(MWsEventHandler * aHandler, TUint32 aEvents);
sl@0
   194
	static TInt UnregisterWsEventHandler(MWsEventHandler * aHandler);
sl@0
   195
	static void NotifyDrawer(const TWservCrEvent& aEvent);
sl@0
   196
	static void NotifyScreenDrawingEvent(const TRegion* aRegion);
sl@0
   197
	static void NotifyScreenDrawingEvent(const TRect& aRect);
sl@0
   198
private:
sl@0
   199
	static void ProcessEventQueue(TEventRequestQueue &aQueue, TSendEventFunc aFunc, TInt aParam1, TInt aParam2);
sl@0
   200
	static void DeleteHotKeys();
sl@0
   201
	static void QueueKeyEvent(CWsWindowGroup *aWin, TWsEvent &aEvent, TWservEventPriorities aPriority);
sl@0
   202
	static void QueueKeyUpDown(const TRawEvent &aRawEvent);
sl@0
   203
	static void ConstructDefaultHotKeyL(TInt aHotKey, const TWsWinCmdCaptureKey &aSystemKey);
sl@0
   204
	static void ProcessModifierChanges();
sl@0
   205
	static void LinkHotKey(CWsHotKey *aWsHotKey);
sl@0
   206
	static TBool DrawerCompareFunc(const TDrawerHandler& lhs, const TDrawerHandler& rhs);
sl@0
   207
private:
sl@0
   208
	static CKeyTranslator *iKeyTranslator;
sl@0
   209
	static TEventRequestQueue iSwitchOnQueue;
sl@0
   210
	static TEventRequestQueue iErrorMessageQueue;
sl@0
   211
	static TEventRequestQueue iModifierChangedQueue;
sl@0
   212
	static TEventRequestQueue iGroupChangedQueue;
sl@0
   213
	static TEventRequestQueue iFocusChangedQueue;
sl@0
   214
	static TEventRequestQueue iGroupListChangedQueue;
sl@0
   215
	static TEventRequestQueue iScreenDeviceChangedQueue;
sl@0
   216
	static TTime iPrevOomMessageTime;
sl@0
   217
	static CCaptureKeys *iCaptureKeys;
sl@0
   218
	static CWsHotKey *iHotKeys;
sl@0
   219
	static TInt iModifierState;
sl@0
   220
	static CRawEventReceiver *iEventReceiver;
sl@0
   221
	static CArrayPtrFlat<MEventHandler> *iEventHandlers;
sl@0
   222
	static CArrayFixFlat<SNotificationHandler> *iNotificationHandlers;
sl@0
   223
	static TInt iPotentialEventHandlers;
sl@0
   224
	static RArray<TDrawerHandler>* iDrawerHandlers;
sl@0
   225
	static RArray<TWsEventHandler> iWsEventHandlers;
sl@0
   226
	static TUint32 iBinaryFlags;
sl@0
   227
	static TInt iEventHandlerCount;
sl@0
   228
	};
sl@0
   229
sl@0
   230
sl@0
   231
//
sl@0
   232
// inlines			//
sl@0
   233
//
sl@0
   234
sl@0
   235
inline TBool CKeyboardRepeat::IsAreadyActive()
sl@0
   236
	{
sl@0
   237
	return iThis->IsActive();
sl@0
   238
	}
sl@0
   239
sl@0
   240
//
sl@0
   241
inline void TWindowServerEvent::AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
sl@0
   242
	{iSwitchOnQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
sl@0
   243
inline void TWindowServerEvent::AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
sl@0
   244
	{iErrorMessageQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
sl@0
   245
inline void TWindowServerEvent::AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances)
sl@0
   246
	{iModifierChangedQueue.AddToEventRequestListL(aWindow, aModifierMask, aCircumstances);}
sl@0
   247
inline void TWindowServerEvent::AddToGroupChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   248
	{iGroupChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   249
inline void TWindowServerEvent::AddToFocusChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   250
	{iFocusChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   251
inline void TWindowServerEvent::AddToGroupListChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   252
	{iGroupListChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   253
inline void TWindowServerEvent::AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow)
sl@0
   254
	{iScreenDeviceChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
sl@0
   255
sl@0
   256
inline void TWindowServerEvent::RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow)
sl@0
   257
	{iSwitchOnQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   258
inline void TWindowServerEvent::RemoveFromErrorMessageList(const CWsWindowBase &aWindow)
sl@0
   259
	{iErrorMessageQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   260
inline void TWindowServerEvent::RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow)
sl@0
   261
	{iModifierChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   262
inline void TWindowServerEvent::RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   263
	{iGroupChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   264
inline void TWindowServerEvent::RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   265
	{iFocusChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   266
inline void TWindowServerEvent::RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow)
sl@0
   267
	{iGroupListChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   268
inline void TWindowServerEvent::RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow)
sl@0
   269
	{iScreenDeviceChangedQueue.RemoveFromEventRequestListL(aWindow);}
sl@0
   270
inline TInt TWindowServerEvent::GetStoredModifierState()
sl@0
   271
	{return(iModifierState);}
sl@0
   272
sl@0
   273
#endif