First public contribution.
1 // Copyright (c) 1999-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Definition of classes related event handling
30 #include "graphics/WSGRAPHICDRAWER.H"
31 #include <graphics/wskeyrouter.h>
38 class CWsCaptureLongKey;
40 class DWsScreenDevice;
42 const TInt KRetryInitialDelay = 100000; //0.01 second
44 struct TEventRequestItem
46 const CWsWindowBase *iWindow;
48 TEventControl iCircumstances;
52 class TEventRequestQueue
56 TEventRequestItem *FindInEventRequestQueueList(const CWsWindowBase &aWindow);
57 void AddToEventRequestListL(const CWsWindowBase &aWindow, TInt aParam, TEventControl aCircumstances);
58 void RemoveFromEventRequestListL(const CWsWindowBase &aWindow);
59 inline TSglQue<TEventRequestItem> &Queue();
61 TSglQue<TEventRequestItem> iQueue;
64 class CRawEventReceiver : public CActive
67 CRawEventReceiver(TInt aPriority);
70 inline TBool IsReadyToRun() const {return IsActive() && iStatus!=KRequestPending;}
76 TRawEventBuf iEventBuf;
82 TKeyEventRouterOutput iOutput;
86 class CKeyboardRepeat : public CTimer
91 static void Destroy();
92 static void KeyDown();
93 static void KeyUp(TInt aScanCode);
94 static void StartRepeat(TInt aInputScanCode, const TKeyEventRouterOutput& aShortEvent, const TKeyEventRouterOutput* aLongEvent);
95 static void CancelRepeat(CWsWindowGroup *aRepeatFocus);
96 static void CancelRepeat(const TAny* aCaptureHandle, TBool aLongCaptureFlag);
97 static void SetRepeatTime(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime);
98 static void GetRepeatTime(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime);
99 static inline TBool IsAreadyActive();
109 static void doCancelRepeat();
112 static CKeyboardRepeat *iThis; // Needed as CTimer derived parts can't be static
113 static TTimeIntervalMicroSeconds32 iInitialTime;
114 static TTimeIntervalMicroSeconds32 iTime;
115 static TRepeatType iRepeating;
116 static TRepeatKey iCurrentRepeat;
117 static TRepeatKey iAlternateRepeat;
118 static TRepeatKey iLongRepeat;
119 static TBool iAlternateRepeatExists;
120 static CWsCaptureLongKey* iLongCapture;
121 static TInt iRepeatRollover;
124 struct SNotificationHandler {CAnim* iAnim; TUint32 iNotifications;};
125 struct TDrawerHandler
127 TDrawerHandler(CWsGraphicDrawer *aDrawer, TUint32 aEvents): iDrawer(aDrawer), iEvents(aEvents) {}
128 CWsGraphicDrawer* iDrawer;
132 struct TWsEventHandler
134 TWsEventHandler(MWsEventHandler *aHandler, TUint32 aEvents): iHandler(aHandler), iEvents(aEvents) {}
135 static TBool CompareHandler(const TWsEventHandler& lhs, const TWsEventHandler& rhs) { return lhs.iHandler == rhs.iHandler; }
136 MWsEventHandler* iHandler;
140 class CEventQueueRetry : public CActive
143 static CEventQueueRetry* NewL();
145 void Init(CScreen *aOwner);
146 void Retry(TInt aDelay);
159 RPointerArray<CWsClient> iClientArray;
162 class TWindowServerEvent
164 #define EDefaultInitialRepeatTime TTimeIntervalMicroSeconds32(300000)
165 #define EDefaultRepeatTime TTimeIntervalMicroSeconds32(100000)
167 typedef void (*TSendEventFunc)(TEventRequestItem *aQptr, TInt aParam1, TInt aParam2);
169 enum {ENumHotKeys=21};
170 enum {EOomEventSecondGap=150}; // Don't resend OOM messages unless at least 150 seconds has passed
171 enum {ERemovedEventHandlerWhileProcessingRawEvents=0x02};
173 static void InitStaticsL();
174 static void DeleteStatics();
175 static CWsHotKey* ClearHotKeysL(TInt aHotKey);
176 static void ResetDefaultHotKeyL(TInt aHotKey);
177 static void SetHotKeyL(const TWsClCmdSetHotKey &aHotKey);
178 static void AddCaptureKeyL(const TKeyCaptureRequest& aRequest);
179 static void UpdateCaptureKeyL(const TKeyCaptureRequest& aRequest);
180 static void CancelCaptureKey(TKeyCaptureType aType, TAny* aHandle);
181 static void ClientDestroyed(CWsClient *aClient);
182 static inline void AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
183 static inline void RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow);
184 static inline void AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances);
185 static inline void RemoveFromErrorMessageList(const CWsWindowBase &aWindow);
186 static inline void AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances);
187 static inline void RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow);
188 static inline void AddToGroupChangeEventListL(const CWsWindowBase &aWindow);
189 static inline void RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow);
190 static inline void AddToFocusChangeEventListL(const CWsWindowBase &aWindow);
191 static inline void RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow);
192 static inline void AddToGroupListChangeEventListL(const CWsWindowBase &aWindow);
193 static inline void RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow);
194 static inline void AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow);
195 static inline void RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow);
196 static TInt GetModifierState();
197 static inline TInt GetStoredModifierState();
198 static void SetModifierState(TEventModifier aModifier,TModifierState aState);
199 static void ProcessRawEvent(const TRawEvent& aRawEvent);
200 static void ProcessKeyEvent(const TKeyEvent& aKeyEvent,TInt aRepeats);
201 static TBool MousePress(const TRawEvent &aRawEvent, const CWsWindowGroup *aGroupWin);
202 static void SendGroupChangedEvents();
203 static void SendFocusChangedEvents();
204 static void SendGroupListChangedEvents();
205 static void SendVisibilityChangedEvents(CWsWindowBase* aWin, TUint aFlags);
206 static TBool SendDisplayChangedEvents(CWsClient *aWsClient, TInt aDisplayNumber, TInt aConfigurationChangeId, TInt aResolutionListChangeId);
207 static void SendScreenDeviceChangedEvents(CScreen* aScreen);
208 static void SendScreenDeviceChangedEvent(const CWsWindowBase *aWindow);
209 static TBool ProcessErrorMessages(TWsErrorMessage::TErrorCategory aCategory, TInt aError);
210 static void NotifyOom();
211 static void ProcessKeyPress(const TKeyEvent& aKeyEvent, TBool aCheckRepeat,TInt aRepeats);
212 static void QueueKeyPress(const TKeyEventRouterOutput& aOutput, TBool aIsRepeat, TInt aRepeats);
213 static void AddEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled);
214 static void RemoveEventHandler(const MEventHandler *aEventHandler);
215 static void PotentialEventHandlerL(TInt aNum);
216 static TInt AddNotificationHandler(CAnim* aAnim, TUint32 aNotifications);
217 static void RemoveNotificationHandler(CAnim* aAnim);
218 static void PublishNotification(const TWsEvent& aWsEvent);
219 static TInt RegisterDrawerHandler(CWsGraphicDrawer* aDrawer, TUint32 aEvents);
220 static TInt UnregisterDrawerHandler(CWsGraphicDrawer* aDrawer);
221 static TInt RegisterWsEventHandler(MWsEventHandler * aHandler, TUint32 aEvents);
222 static TInt UnregisterWsEventHandler(MWsEventHandler * aHandler);
223 static void NotifyDrawer(const TWservCrEvent& aEvent);
224 static void NotifyScreenDrawingEvent(const TRegion* aRegion);
225 static void NotifyScreenDrawingEvent(const TRect& aRect);
226 static inline const CRawEventReceiver* EventReceiver() {return iEventReceiver;}
228 class TRawEventHandler
231 inline TRawEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled);
233 MEventHandler *iEventHandler;
234 TBool iAdvancedPointersEnabled;
236 static void ProcessEventQueue(TEventRequestQueue &aQueue, TSendEventFunc aFunc, TInt aParam1, TInt aParam2);
237 static void DeleteHotKeys();
238 static void QueueKeyEvent(CWsWindowGroup *aWin, TWsEvent &aEvent, TWservEventPriorities aPriority);
239 static void QueueKeyUpDown(const TRawEvent &aRawEvent);
240 static void ConstructDefaultHotKeyL(TInt aHotKey, const TWsWinCmdCaptureKey &aSystemKey);
241 static void ProcessModifierChanges();
242 static void LinkHotKey(CWsHotKey *aWsHotKey);
243 static TBool DrawerCompareFunc(const TDrawerHandler& lhs, const TDrawerHandler& rhs);
245 static CKeyTranslator *iKeyTranslator;
246 static TEventRequestQueue iSwitchOnQueue;
247 static TEventRequestQueue iErrorMessageQueue;
248 static TEventRequestQueue iModifierChangedQueue;
249 static TEventRequestQueue iGroupChangedQueue;
250 static TEventRequestQueue iFocusChangedQueue;
251 static TEventRequestQueue iGroupListChangedQueue;
252 static TEventRequestQueue iScreenDeviceChangedQueue;
253 static TTime iPrevOomMessageTime;
254 static CCaptureKeys *iCaptureKeys;
255 static CKeyEventRouter *iKeyEventRouter;
256 static RLibrary iKeyEventRouterLibrary;
257 static CWsHotKey *iHotKeys;
258 static TInt iModifierState;
259 static CRawEventReceiver *iEventReceiver;
260 static RArray<TRawEventHandler> iEventHandlers;
261 static CArrayFixFlat<SNotificationHandler> *iNotificationHandlers;
262 static TInt iPotentialEventHandlers;
263 static RArray<TDrawerHandler>* iDrawerHandlers;
264 static RArray<TWsEventHandler> iWsEventHandlers;
265 static TUint32 iBinaryFlags;
266 static TInt iEventHandlerCount;
274 inline TBool CKeyboardRepeat::IsAreadyActive()
276 return iThis->IsActive();
279 inline TWindowServerEvent::TRawEventHandler::TRawEventHandler(MEventHandler *aEventHandler, TBool aAdvancedPointersEnabled)
280 : iEventHandler(aEventHandler), iAdvancedPointersEnabled(aAdvancedPointersEnabled)
283 inline void TWindowServerEvent::AddToSwitchOnEventListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
284 {iSwitchOnQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
285 inline void TWindowServerEvent::AddToErrorMessageListL(const CWsWindowBase &aWindow, TEventControl aCircumstances)
286 {iErrorMessageQueue.AddToEventRequestListL(aWindow, 0, aCircumstances);}
287 inline void TWindowServerEvent::AddToModifierChangedEventListL(const CWsWindowBase &aWindow, TInt aModifierMask, TEventControl aCircumstances)
288 {iModifierChangedQueue.AddToEventRequestListL(aWindow, aModifierMask, aCircumstances);}
289 inline void TWindowServerEvent::AddToGroupChangeEventListL(const CWsWindowBase &aWindow)
290 {iGroupChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
291 inline void TWindowServerEvent::AddToFocusChangeEventListL(const CWsWindowBase &aWindow)
292 {iFocusChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
293 inline void TWindowServerEvent::AddToGroupListChangeEventListL(const CWsWindowBase &aWindow)
294 {iGroupListChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
295 inline void TWindowServerEvent::AddToScreenDeviceChangeEventListL(const CWsWindowBase &aWindow)
296 {iScreenDeviceChangedQueue.AddToEventRequestListL(aWindow, 0, EEventControlAlways);}
298 inline void TWindowServerEvent::RemoveFromSwitchOnEventList(const CWsWindowBase &aWindow)
299 {iSwitchOnQueue.RemoveFromEventRequestListL(aWindow);}
300 inline void TWindowServerEvent::RemoveFromErrorMessageList(const CWsWindowBase &aWindow)
301 {iErrorMessageQueue.RemoveFromEventRequestListL(aWindow);}
302 inline void TWindowServerEvent::RemoveFromModifierChangedEventList(const CWsWindowBase &aWindow)
303 {iModifierChangedQueue.RemoveFromEventRequestListL(aWindow);}
304 inline void TWindowServerEvent::RemoveFromGroupChangeEventEventList(const CWsWindowBase &aWindow)
305 {iGroupChangedQueue.RemoveFromEventRequestListL(aWindow);}
306 inline void TWindowServerEvent::RemoveFromFocusChangeEventEventList(const CWsWindowBase &aWindow)
307 {iFocusChangedQueue.RemoveFromEventRequestListL(aWindow);}
308 inline void TWindowServerEvent::RemoveFromGroupListChangeEventEventList(const CWsWindowBase &aWindow)
309 {iGroupListChangedQueue.RemoveFromEventRequestListL(aWindow);}
310 inline void TWindowServerEvent::RemoveFromScreenDeviceChangeEventList(const CWsWindowBase &aWindow)
311 {iScreenDeviceChangedQueue.RemoveFromEventRequestListL(aWindow);}
312 inline TInt TWindowServerEvent::GetStoredModifierState()
313 {return(iModifierState);}