Update contrib.
1 // Copyright (c) 1994-2009 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 // Top level window server code
24 #include "windowgroup.h"
35 #include "Graphics/wsgraphicdrawerinternal.h"
38 GLREF_D CDebugLogBase *wsDebugLog;
40 GLREF_C void StateDump();
41 GLREF_C void HeapDump();
43 #define IMPOSSIBLE 0xFFFFFFFF
45 const TWsWinCmdCaptureKey ImpossibleKeyPress=
47 IMPOSSIBLE, // Impossible to hit key combination, used for disabling Hot Keys
51 const TWsWinCmdCaptureKey DefaultHotKeys[TWindowServerEvent::ENumHotKeys]={
53 EModifierFunc|EModifierCtrl|EModifierShift,
54 EModifierFunc|EModifierCtrl|EModifierShift,
57 EModifierFunc|EModifierCtrl|EModifierShift,
58 EModifierFunc|EModifierCtrl|EModifierShift,
60 { // Window server internal dump to log
61 EModifierFunc|EModifierCtrl|EModifierShift,
62 EModifierFunc|EModifierCtrl|EModifierShift,
65 EModifierFunc|EModifierCtrl|EModifierShift,
66 EModifierFunc|EModifierCtrl|EModifierShift,
68 { // Shutdown window server
70 EModifierFunc|EModifierCtrl|EModifierShift,
71 EModifierFunc|EModifierCtrl|EModifierShift,
74 IMPOSSIBLE, // Impossible to hit key combination, effectively disables shutdown key in release builds
79 EModifierFunc|EModifierCtrl|EModifierShift,
80 EModifierFunc|EModifierCtrl|EModifierShift,
102 { // Backlight toggle
105 EKeyBacklightToggle},
106 { // Screen Dimension Change
109 EKeyScreenDimension0},
113 EKeyScreenDimension1},
117 EKeyScreenDimension2},
121 EKeyScreenDimension3},
123 { // Display mode cycle
124 EModifierFunc|EModifierCtrl|EModifierShift,
125 EModifierFunc|EModifierCtrl|EModifierShift,
127 { // Orientation cycle
128 EModifierFunc|EModifierCtrl|EModifierShift,
129 EModifierFunc|EModifierCtrl|EModifierShift,
132 { // Display mode cycle
133 IMPOSSIBLE, // Impossible to hit key combination
136 { // Orientation cycle
137 IMPOSSIBLE, // Impossible to hit key combination
149 { // Cycle focus screen
150 EModifierFunc|EModifierCtrl|EModifierShift,
151 EModifierFunc|EModifierCtrl|EModifierShift,
155 CKeyTranslator *TWindowServerEvent::iKeyTranslator=NULL;
156 TEventRequestQueue TWindowServerEvent::iSwitchOnQueue;
157 TEventRequestQueue TWindowServerEvent::iErrorMessageQueue;
158 TEventRequestQueue TWindowServerEvent::iModifierChangedQueue;
159 TEventRequestQueue TWindowServerEvent::iGroupChangedQueue;
160 TEventRequestQueue TWindowServerEvent::iFocusChangedQueue;
161 TEventRequestQueue TWindowServerEvent::iGroupListChangedQueue;
162 TEventRequestQueue TWindowServerEvent::iScreenDeviceChangedQueue;
163 TTime TWindowServerEvent::iPrevOomMessageTime;
164 CCaptureKeys *TWindowServerEvent::iCaptureKeys;
165 CWsHotKey *TWindowServerEvent::iHotKeys;
166 TInt TWindowServerEvent::iModifierState;
167 CRawEventReceiver *TWindowServerEvent::iEventReceiver;
168 CArrayPtrFlat<MEventHandler> *TWindowServerEvent::iEventHandlers;
169 CArrayFixFlat<SNotificationHandler> *TWindowServerEvent::iNotificationHandlers;
170 TInt TWindowServerEvent::iPotentialEventHandlers=0;
171 TUint32 TWindowServerEvent::iBinaryFlags=0x00;
172 RArray<TDrawerHandler>* TWindowServerEvent::iDrawerHandlers;
173 RArray<TWsEventHandler> TWindowServerEvent::iWsEventHandlers;
174 TInt TWindowServerEvent::iEventHandlerCount=0;
175 TRepeatKey CKeyboardRepeat::iCurrentRepeat;
176 TRepeatKey CKeyboardRepeat::iAlternateRepeat;
177 TInt CKeyboardRepeat::iRepeatRollover=1;
178 CKeyboardRepeat::TRepeatType CKeyboardRepeat::iRepeating=ERepeatNone;
179 CKeyboardRepeat *CKeyboardRepeat::iThis=NULL;
180 TTimeIntervalMicroSeconds32 CKeyboardRepeat::iInitialTime;
181 TTimeIntervalMicroSeconds32 CKeyboardRepeat::iTime;
182 CWsWindowGroup *CKeyboardRepeat::iFocus=NULL;
183 TBool CKeyboardRepeat::iAlternateRepeatExists=EFalse;
184 CWsCaptureLongKey* CKeyboardRepeat::iLongCapture=NULL;
187 void TWindowServerEvent::DeleteHotKeys()
189 CWsHotKey *hotKey=iHotKeys;
192 CWsHotKey *next=hotKey->iNext;
199 void TWindowServerEvent::DeleteStatics()
203 CKeyboardRepeat::Destroy();
204 delete iKeyTranslator;
205 delete iEventReceiver;
206 delete iEventHandlers;
207 delete iNotificationHandlers;
208 iDrawerHandlers->Close();
209 delete iDrawerHandlers;
212 void TWindowServerEvent::InitStaticsL()
214 // Create the CEvent active object.
217 #if defined(__WINS__)
218 WS_ASSERT_DEBUG(TWindowServerEvent::ENumHotKeys==EHotKeyLastKeyType+1, EWsPanicUnknownCaptureKey);
220 iEventReceiver=new(ELeave) CRawEventReceiver(EEventPriority);
221 iEventReceiver->ConstructL();
222 iKeyTranslator=CKeyTranslator::New();
223 User::LeaveIfNull(iKeyTranslator);
225 // Change keyboard mapping according to information the HAL
227 if (HAL::Get(HALData::EKeyboardIndex,keyboardIndex)==KErrNone)
229 _LIT(KLitKeyDataDllName,"EKDATA.%02d");
230 TBuf<16> keyDataDllName;
231 keyDataDllName.Format(KLitKeyDataDllName,keyboardIndex);
232 iKeyTranslator->ChangeKeyData(keyDataDllName);
235 iCaptureKeys=new(ELeave) CCaptureKeys;
236 iCaptureKeys->Construct();
237 for (TInt index=0;index<TWindowServerEvent::ENumHotKeys;index++)
238 ConstructDefaultHotKeyL(index,DefaultHotKeys[index]);
239 CKeyboardRepeat::NewL();
240 CKeyboardRepeat::SetRepeatTime(EDefaultInitialRepeatTime, EDefaultRepeatTime);
241 iEventHandlers=new(ELeave) CArrayPtrFlat<MEventHandler>(2);
242 iNotificationHandlers=new(ELeave) CArrayFixFlat<SNotificationHandler>(2);
243 iDrawerHandlers = new(ELeave) RArray<TDrawerHandler>(4);
246 void TWindowServerEvent::LinkHotKey(CWsHotKey *aWsHotKey)
248 aWsHotKey->SetLink(iHotKeys);
252 void TWindowServerEvent::ConstructDefaultHotKeyL(TInt aHotKey, const TWsWinCmdCaptureKey &aSystemKey)
254 CWsHotKey* hotKey=new(ELeave) CWsHotKey(aHotKey, ETrue);
255 // hotKey is pushed onto the cleanup stack in method ConstructLD.
256 hotKey->ConstructLD(aSystemKey);
260 CWsHotKey* TWindowServerEvent::ClearHotKeysL(TInt aHotKey)
262 if (aHotKey>ENumHotKeys)
264 User::Leave(KErrArgument);
266 CWsHotKey** pHotKey= &iHotKeys;
267 CWsHotKey* defaultHotKey=NULL;
270 TBool unlinked=EFalse;
271 if ((*pHotKey)->HotKeyType()==aHotKey)
273 CWsHotKey *free=*pHotKey;
274 if (free->IsDefault())
276 free->SetL(ImpossibleKeyPress);
281 *pHotKey=(*pHotKey)->iNext;
288 pHotKey=&(*pHotKey)->iNext;
291 return(defaultHotKey);
294 void TWindowServerEvent::ResetDefaultHotKeyL(TInt aHotKey)
296 if ((aHotKey<0) || (aHotKey>=ENumHotKeys))
298 User::Leave(KErrArgument);
300 CWsHotKey* defaultHotKey=ClearHotKeysL(aHotKey);
301 WS_ASSERT_DEBUG(defaultHotKey, EWsPanicDefaultHotKeyNotFound);
302 defaultHotKey->SetL(DefaultHotKeys[aHotKey]);
305 void TWindowServerEvent::SetHotKeyL(const TWsClCmdSetHotKey &aHotKey)
307 if (aHotKey.type>ENumHotKeys)
308 User::Leave(KErrArgument);
310 CWsHotKey *hotKey=new(ELeave) CWsHotKey(aHotKey.type, EFalse);
312 TWsWinCmdCaptureKey captureKey;
313 captureKey.modifiers=aHotKey.modifiers;
314 captureKey.modifierMask=aHotKey.modifierMask;
315 captureKey.key=aHotKey.keycode;
316 hotKey->ConstructLD(captureKey);
321 void TWindowServerEvent::AddEventHandler(MEventHandler *aEventHandler)
324 TRAPD(err,iEventHandlers->AppendL(aEventHandler));
325 WS_ASSERT_DEBUG(err==KErrNone, EWsPanicEventHandlerInconsistency);
327 iEventHandlers->AppendL(aEventHandler); //Shouldn't leave
331 void TWindowServerEvent::RemoveEventHandler(const MEventHandler *aEventHandler)
333 TInt count=iEventHandlers->Count();
335 for(ii=0;ii<count;++ii)
337 if ((*iEventHandlers)[ii]==aEventHandler)
339 if (iEventHandlerCount>0)
341 iBinaryFlags |= ERemovedEventHandlerWhileProcessingRawEvents;
342 (*iEventHandlers)[ii]=NULL; // replace the Handler with null to keep size of the array
346 iEventHandlers->Delete(ii);
353 void TWindowServerEvent::PotentialEventHandlerL(TInt aNum)
355 iPotentialEventHandlers+=aNum;
356 WS_ASSERT_DEBUG(iPotentialEventHandlers>=iEventHandlers->Count(), EWsPanicEventHandlerInconsistency);
357 TRAPD(err,iEventHandlers->SetReserveL(iPotentialEventHandlers));
363 else if (iPotentialEventHandlers==0)
364 iEventHandlers->Compress();
367 void SendSwitchOnEvent(TEventRequestItem *aQptr, TInt aEvent, TInt )
369 aQptr->iWindow->QueueEvent(aEvent);
372 /*void SendSwitchOffEvent(TEventRequestItem *aQptr, TInt , TInt )
374 aQptr->iWindow->QueueEvent(EEventSwitchOff);
377 void SendErrorMessage(TEventRequestItem *aQptr, TInt aCategory, TInt aError)
380 event.SetType(EEventErrorMessage);
381 event.SetHandle(aQptr->iWindow->ClientHandle());
382 event.ErrorMessage()->iErrorCategory=(TWsErrorMessage::TErrorCategory)aCategory;
383 event.ErrorMessage()->iError=aError;
385 aQptr->iWindow->EventQueue()->QueueEvent(event,EEventPriorityHigh);
388 void SendModifierChangedEvent(TEventRequestItem *aQptr, TInt aChanged, TInt )
390 TInt tmpChanged=aChanged&aQptr->iParam;
394 event.SetType(EEventModifiersChanged);
395 event.SetHandle(aQptr->iWindow->ClientHandle());
396 event.ModifiersChanged()->iChangedModifiers=tmpChanged;
397 event.ModifiersChanged()->iModifiers=TWindowServerEvent::GetStoredModifierState();
399 aQptr->iWindow->EventQueue()->QueueEvent(event,EEventPriorityHigh);
403 void TWindowServerEvent::ProcessEventQueue(TEventRequestQueue &aQueue, TSendEventFunc aFunc, TInt aParam1, TInt aParam2)
405 TSglQueIter<TEventRequestItem> iter(aQueue.Queue());
406 TEventRequestItem *qPtr;
407 CWsWindowGroup *focusWin=CWsTop::FocusWindowGroup();
408 while((qPtr=iter++)!=NULL)
410 if (qPtr->iCircumstances==EEventControlAlways ||
411 (qPtr->iCircumstances==EEventControlOnlyWithKeyboardFocus && qPtr->iWindow->WinGroup()==focusWin) ||
412 (qPtr->iCircumstances==EEventControlOnlyWhenVisible && !qPtr->iWindow->TreeIsObscured()))
413 aFunc(qPtr, aParam1, aParam2);
417 void TWindowServerEvent::NotifyOom()
421 TTimeIntervalSeconds interval;
422 TInt err=now.SecondsFrom(iPrevOomMessageTime,interval);
423 if (err!=KErrNone || interval.Int()<0 || interval.Int()>EOomEventSecondGap)
425 ProcessErrorMessages(TWsErrorMessage::EDrawingRegion,KErrNoMemory);
426 iPrevOomMessageTime=now;
430 TBool TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::TErrorCategory aCategory, TInt aError)
432 if (aError!=KErrNone)
434 ProcessEventQueue(iErrorMessageQueue, SendErrorMessage, aCategory, aError);
440 void TWindowServerEvent::ProcessModifierChanges()
442 TInt newState=iKeyTranslator->GetModifierState();
443 if (newState!=iModifierState)
445 TInt changed=iModifierState^newState;
446 iModifierState=newState;
447 ProcessEventQueue(iModifierChangedQueue, SendModifierChangedEvent, changed, 0);
451 TEventQueueWalkRet FindScreenDeviceChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
453 if (aEvent->Type()==EEventScreenDeviceChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
454 *(TUint *)aHandlePtr=0; // Indicates event found
455 return(EEventQueueWalkOk);
458 void TWindowServerEvent::SendScreenDeviceChangedEvents(CScreen* aScreen)
460 TSglQueIter<TEventRequestItem> iter(iScreenDeviceChangedQueue .Queue());
461 TEventRequestItem *qPtr;
462 while((qPtr=iter++)!=NULL)
463 SendScreenDeviceChangedEvent(qPtr->iWindow);
464 if(CClick::IsHandler())
466 TClickMakerData clickMakerData;
467 clickMakerData.screenDeviceMode=aScreen->ScreenSizeMode();
468 CClick::OtherEvent(EEventScreenDeviceChanged, &clickMakerData);
471 wsEvent.SetType(EEventScreenDeviceChanged);
472 TWindowServerEvent::PublishNotification(wsEvent);
473 TWservCrEvent crEvent(TWservCrEvent::EScreenSizeModeChanged,aScreen->ScreenSizeMode());
474 TWindowServerEvent::NotifyDrawer(crEvent);
477 void TWindowServerEvent::SendScreenDeviceChangedEvent(const CWsWindowBase *aWindow)
479 CEventQueue *queue=aWindow->EventQueue();
480 TUint32 handle=aWindow->ClientHandle();
481 queue->WalkEventQueue(&FindScreenDeviceChangedEvent,&handle);
482 if (handle!=NULL) // Indicates event not found
483 queue->QueueEvent(handle, EEventScreenDeviceChanged);
486 TEventQueueWalkRet FindGroupChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
488 if (aEvent->Type()==EEventWindowGroupsChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
490 *(TUint *)aHandlePtr=0; // Indicates event found
492 return(EEventQueueWalkOk);
495 void TWindowServerEvent::SendGroupChangedEvents()
497 TSglQueIter<TEventRequestItem> iter(iGroupChangedQueue.Queue());
498 TEventRequestItem *qPtr;
499 while((qPtr=iter++)!=NULL)
501 const CWsWindowBase *win=qPtr->iWindow;
502 CEventQueue *queue=win->EventQueue();
503 TUint32 handle=win->ClientHandle();
504 queue->WalkEventQueue(&FindGroupChangedEvent,&handle);
505 if (handle!=NULL) // Indicates event not found
507 queue->QueueEvent(handle, EEventWindowGroupsChanged);
512 TEventQueueWalkRet FindFocusChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
514 if (aEvent->Type()==EEventFocusGroupChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
516 *(TUint *)aHandlePtr=0; // Indicates event found
518 return(EEventQueueWalkOk);
521 void TWindowServerEvent::SendFocusChangedEvents()
523 TInt identifier=0; // Zero Identifier indicates, currently there is no focused window group
524 CScreen* currentFocusScreen=CWsTop::CurrentFocusScreen();
525 TInt screenNumber=currentFocusScreen->ScreenNumber();
526 CWsWindowGroup* currentFocusWG=currentFocusScreen->FocusWindowGroup();
527 WS_ASSERT_DEBUG(currentFocusWG, EWsPanicNoScreen);
530 identifier=currentFocusWG->Identifier();
532 TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EWindowGroupChanged,
533 screenNumber, reinterpret_cast<TAny*>(identifier)));
535 TSglQueIter<TEventRequestItem> iter(iFocusChangedQueue.Queue());
536 TEventRequestItem *qPtr;
537 while((qPtr=iter++)!=NULL)
539 const CWsWindowBase *win=qPtr->iWindow;
540 CEventQueue *queue=win->EventQueue();
541 TUint32 handle=win->ClientHandle();
542 queue->WalkEventQueue(&FindFocusChangedEvent,&handle);
543 if (handle!=NULL) // Indicates event not found
545 queue->QueueEvent(handle, EEventFocusGroupChanged);
550 TEventQueueWalkRet FindGroupListChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
552 if (aEvent->Type()==EEventWindowGroupListChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
554 *(TUint *)aHandlePtr=0; // Indicates event found
556 return(EEventQueueWalkOk);
559 void TWindowServerEvent::SendGroupListChangedEvents()
561 TSglQueIter<TEventRequestItem> iter(iGroupListChangedQueue.Queue());
562 TEventRequestItem *qPtr;
563 while((qPtr=iter++)!=NULL)
565 const CWsWindowBase *win=qPtr->iWindow;
566 CEventQueue *queue=win->EventQueue();
567 TUint32 handle=win->ClientHandle();
568 queue->WalkEventQueue(&FindGroupListChangedEvent,&handle);
569 if (handle!=NULL) // Indicates event not found
571 queue->QueueEvent(handle, EEventWindowGroupListChanged);
576 TEventQueueWalkRet OverrideVisibilityChangedEvent(TAny *aNewEvent, TWsEvent *aOldEvent)
578 // This replaces the first visibility event it finds for the given window with the
579 // one given. This is fine, so long as the meaning of all visibility events remains
580 // independent of the ones before.
581 TWsEvent* newEvent = static_cast<TWsEvent*>(aNewEvent);
582 if (aOldEvent->Type()==EEventWindowVisibilityChanged && aOldEvent->Handle()==newEvent->Handle())
584 aOldEvent->SetTimeNow();
585 aOldEvent->VisibilityChanged()->iFlags = newEvent->VisibilityChanged()->iFlags;
586 newEvent->SetHandle(NULL);
588 return EEventQueueWalkOk;
591 void TWindowServerEvent::SendVisibilityChangedEvents(CWsWindowBase* aWin, TUint aFlags)
593 CEventQueue *queue=aWin->EventQueue();
595 event.SetType(EEventWindowVisibilityChanged);
596 event.SetHandle(aWin->ClientHandle());
598 TWsVisibilityChangedEvent* visevent = event.VisibilityChanged();
599 visevent->iFlags = aFlags;
600 queue->WalkEventQueue(&OverrideVisibilityChangedEvent,&event);
601 if (event.Handle()!=NULL)
603 queue->QueueEvent(event);
607 void TWindowServerEvent::QueueKeyEvent(CWsWindowGroup *aWin, TWsEvent &aEvent, TWservEventPriorities aPriority)
610 aWin->EventQueue()->QueueEvent(aEvent, aPriority);
613 void TWindowServerEvent::QueueKeyPress(const TKeyData& aKey, TInt aScanCode, CWsWindowGroup* aRepeatFocus, TBool aCheckRepeat,TInt aRepeats)
615 CWsWindowGroup* focusWin=CWsTop::FocusWindowGroup();
617 TKeyEvent& keyEvent=*event.Key();
618 keyEvent.iCode=aKey.iKeyCode;
619 keyEvent.iScanCode=aScanCode;
620 keyEvent.iModifiers=aKey.iModifiers;
621 keyEvent.iRepeats=aRepeats;
622 if (!aRepeatFocus && CClick::IsHandler())
623 CClick::KeyEvent(EEventKey,keyEvent);
624 CWsCaptureLongKey* longCapture=NULL;
626 longCapture=CWsCaptureLongKey::CheckForCapture(aKey.iKeyCode, aKey.iModifiers);
627 if (aKey.iIsCaptureKey)
629 if (aKey.iApp==NULL) // Captured by Wserv itself
631 _LIT(KWSERVDebugLogCapturedKey,"WSERV Captured Key");
632 CScreen* focusScreen=CWsTop::CurrentFocusScreen();
633 TInt screenNo=focusScreen->ScreenNumber();
636 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogCapturedKey);
637 CWsHotKey *hotKey=iHotKeys;
640 if (hotKey->KeyHandle()==aKey.iHandle)
642 switch(hotKey->HotKeyType())
644 case EHotKeyEnableLogging:
645 CWsTop::EnableLogging();
647 case EHotKeyDisableLogging:
648 CWsTop::DisableLogging();
650 case EHotKeyStateDump:
653 case EHotKeyHeapDump:
657 if (!CWsPassword::PasswordModeActive())
659 const TBool currentJustInTimeValue=User::JustInTime();
660 if (currentJustInTimeValue)
662 User::SetJustInTime(EFalse);
664 CWsTop::KillForegroundSession();
665 if (currentJustInTimeValue)
667 User::SetJustInTime(ETrue);
671 case EHotKeyShutDown:
674 case EHotKeyIncContrast:
675 focusScreen->IncContrast();
677 case EHotKeyDecContrast:
678 focusScreen->DecContrast();
681 CWsTop::HandleSwitchOff(EEventKeySwitchOff,ETrue);
683 case EHotKeyBacklightToggle:
686 if (!ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(screenNo,HALData::EBacklightState,state)))
687 ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,!state));
690 case EHotKeyBacklightOn:
691 ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,ETrue));
693 case EHotKeyBacklightOff:
694 ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,EFalse));
696 case EHotKeyScreenDimension0:
697 case EHotKeyScreenDimension1:
698 case EHotKeyScreenDimension2:
699 case EHotKeyScreenDimension3:
700 focusScreen->doSetScreenMode(hotKey->HotKeyType()-EHotKeyScreenDimension0);
702 case EHotKeyCycleDisplaySize:
703 focusScreen->CycleDisplaySize();
705 case EHotKeyCycleOrientation:
706 focusScreen->CycleOrientation();
708 case EHotKeyIncBrightness:
709 focusScreen->IncBrightness();
711 case EHotKeyDecBrightness:
712 focusScreen->DecBrightness();
714 case EHotKeyCycleFocusScreen:
715 CWsTop::SetCurrentFocusScreen((CWsTop::CurrentFocusScreen()->ScreenNumber()+1)%CWsTop::NumberOfScreens());
720 hotKey=hotKey->iNext;
722 WS_PANIC_ALWAYS(EWsPanicUnknownCaptureKey);
725 focusWin=((CWsWindowGroup *)aKey.iApp);
726 _LIT(KWSERVDebugLogKeyCapturedByApp,"Key captured by app %d");
728 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyCapturedByApp,focusWin->Identifier());
729 if (CWsPassword::PasswordModeActive() && focusWin!=CWsPassword::PasswordWindow()->WinGroup())
732 if (aRepeatFocus && aRepeatFocus!=focusWin)
733 CKeyboardRepeat::CancelRepeat(NULL); // Repeat is going to different window so cancel it and don't deliver this key
734 else if (focusWin!=NULL && focusWin->CheckForPriorityKey(aKey,aScanCode)==EFalse)
736 if (longCapture || (aCheckRepeat && !aRepeatFocus && aKey.iModifiers&EModifierAutorepeatable))
738 if (CKeyboardRepeat::StartRepeat(aKey,aScanCode,focusWin,longCapture))
741 event.SetType(EEventKey);
742 event.SetHandle(focusWin->ClientHandle());
745 CEventQueue* queue=focusWin->EventQueue();
747 const TWsEvent* prev=queue->PeekLastEvent();
748 if (prev!=NULL && prev->Type()==EEventKey && prev->Key()->iRepeats>0)
750 //WS_ASSERT_DEBUG(prev->Key()->iScanCode==aScanCode, EWsPanicKeyRepeat); //This ASSERT can be triggered by using new functionality, need to find a way to make it tell the difference.
752 event.Key()->iRepeats+=aRepeats;
753 queue->UpdateLastEvent(event);
754 if (CClick::IsHandler())
755 CClick::KeyEvent(EEventKeyRepeat,*event.Key());
759 event.Key()->iRepeats=aRepeats;
760 if (CClick::IsHandler())
761 CClick::KeyEvent(EEventKeyRepeat,keyEvent);
763 QueueKeyEvent(focusWin, event, EEventPriorityLow);
767 void TWindowServerEvent::QueueKeyUpDown(const TRawEvent &aRawEvent)
769 CWsWindowGroup *focusWin=CWsCaptureKeyUpsAndDowns::CheckForCapture(aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE, iModifierState);
770 if (!focusWin) // If not captured
771 focusWin=CWsTop::FocusWindowGroup();
773 TEventCode type=aRawEvent.Type()==TRawEvent::EKeyUp ? EEventKeyUp : EEventKeyDown;
774 event.Key()->iCode=0;
775 #if defined(__WINS__)
776 if (focusWin && !focusWin->WsOwner()->RemoveKeyCode())
777 event.Key()->iScanCode=aRawEvent.ScanCode();
780 event.Key()->iScanCode=aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE;
781 event.Key()->iModifiers=iModifierState;
782 event.Key()->iRepeats=0;
783 if (CClick::IsHandler())
784 CClick::KeyEvent(type,*event.Key());
788 event.SetHandle(focusWin->ClientHandle());
789 QueueKeyEvent(focusWin, event, EEventPriorityHigh);
793 LOCAL_D void GetPointerEvent(TPointerEvent::TType& aType, const TRawEvent &aRawEvent, TBool& aHandled)
796 switch(aRawEvent.Type())
798 case TRawEvent::EButton1Down:
799 aType=TPointerEvent::EButton1Down;
801 case TRawEvent::EButton1Up:
802 aType=TPointerEvent::EButton1Up;
804 case TRawEvent::EButton2Down:
805 aType=TPointerEvent::EButton2Down;
807 case TRawEvent::EButton2Up:
808 aType=TPointerEvent::EButton2Up;
810 case TRawEvent::EButton3Down:
811 aType=TPointerEvent::EButton3Down;
813 case TRawEvent::EButton3Up:
814 aType=TPointerEvent::EButton3Up;
816 case TRawEvent::EPointerMove:
817 aType=TPointerEvent::EMove;
819 case TRawEvent::EPointerSwitchOn:
820 aType=TPointerEvent::ESwitchOn;
827 TBool TWindowServerEvent::MousePress(const TRawEvent &aRawEvent, const CWsWindowGroup *aGroupWin)
829 //Return EFalse if known not to be a Mouse Event
833 TPointerEvent::TType type;
834 GetPointerEvent(type, aRawEvent, handled);
837 TPoint xy(aRawEvent.Pos());
838 WsPointer::ProcessEvent(type, xy, iKeyTranslator->GetModifierState(), aGroupWin, ETrue);
843 LOCAL_D void SendEventToKeyClick(const TRawEvent& aRawEvent)
845 switch(aRawEvent.Type())
847 case TRawEvent::EKeyDown:
848 case TRawEvent::EKeyUp:
852 keyEvent.iScanCode=aRawEvent.ScanCode();
853 keyEvent.iModifiers=0;
855 CClick::KeyEvent(EEventKey,keyEvent);
858 case TRawEvent::EButton1Down:
859 case TRawEvent::EButton1Up:
860 case TRawEvent::EButton2Down:
861 case TRawEvent::EButton2Up:
862 case TRawEvent::EButton3Down:
863 case TRawEvent::EButton3Up:
864 case TRawEvent::EPointerMove:
865 case TRawEvent::EPointerSwitchOn:
868 TPointerEvent::TType type;
869 GetPointerEvent(type, aRawEvent, handled);
872 TPointerEvent pointerEvent;
873 pointerEvent.iType=type;
874 pointerEvent.iModifiers=0;
875 pointerEvent.iPosition=aRawEvent.Pos();
876 pointerEvent.iParentPosition=TPoint(KMinTInt32,KMinTInt32);
877 CClick::PointerEvent(pointerEvent.iPosition,pointerEvent);
886 void TWindowServerEvent::ProcessRawEvent(const TRawEvent& aRawEvent)
888 // Event has completed.
891 WS_TRACE_SERVER_PROCESSRAWEVENT();
892 TInt count=iEventHandlers->Count();
894 TBool eventHandled = EFalse;
895 iEventHandlerCount++;
896 for(ii=0;ii<count;++ii)
898 if ((*iEventHandlers)[ii] != NULL && (*iEventHandlers)[ii]->OfferRawEvent(aRawEvent))
900 if (CClick::IsHandler())
902 SendEventToKeyClick(aRawEvent);
904 eventHandled = ETrue;
908 if (--iEventHandlerCount == 0)
910 if (ERemovedEventHandlerWhileProcessingRawEvents & iBinaryFlags) // Handler was deleted while previous loop
912 iBinaryFlags &= ~ERemovedEventHandlerWhileProcessingRawEvents;
913 for(ii=count-1;ii>=0;--ii)
915 if ((*iEventHandlers)[ii]==NULL) iEventHandlers->Delete(ii);
923 switch(aRawEvent.Type())
925 case TRawEvent::ERedraw:
926 CWsTop::RedrawScreens();
928 case TRawEvent::ESwitchOn:
929 case TRawEvent::ECaseOpen:
931 TInt event=EEventCaseOpened;
932 CKeyboardRepeat::CancelRepeat(NULL);
933 CWsPassword::SwitchOn();
934 if (aRawEvent.Type()==TRawEvent::ESwitchOn)
936 UserSvr::WsSwitchOnScreen();
937 HAL::Set(HALData::EDisplayState,1);
938 event=EEventSwitchOn;
940 ProcessEventQueue(iSwitchOnQueue, SendSwitchOnEvent, event, 0);
943 case TRawEvent::ESwitchOff:
944 case TRawEvent::ECaseClose:
946 TBool switchOff=(aRawEvent.Type()==TRawEvent::ESwitchOff);
947 CWsTop::HandleSwitchOff(switchOff? EEventSwitchOff:EEventCaseClosed,switchOff);
950 #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
951 case TRawEvent::ERestartSystem:
952 { /* restart event being handled */
953 CWsTop::HandleSwitchOff(EEventRestartSystem,ETrue);
957 case TRawEvent::EInactive:
959 CWsTop::WindowServer()->AnimationScheduler()->OnInactive();
961 CKeyboardRepeat::CancelRepeat(NULL);
963 case TRawEvent::EActive:
965 CWsTop::WindowServer()->AnimationScheduler()->OnActive();
968 case TRawEvent::EKeyDown:
970 _LIT(KWSERVDebugLogKeyDownArrival,"Key down arrives %d");
971 if(CDebugBar* dbg = CWsTop::Screen()->DebugBar())
974 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyDownArrival,aRawEvent.ScanCode());
975 CKeyboardRepeat::KeyDown();
977 TBool translated=iKeyTranslator->TranslateKey(aRawEvent.ScanCode(), EFalse,*iCaptureKeys,keyData);
978 ProcessModifierChanges();
979 QueueKeyUpDown(aRawEvent);
981 QueueKeyPress(keyData,aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,ETrue,0);
984 case TRawEvent::EKeyUp:
986 _LIT(KWSERVDebugLogKeyUpArrival,"Key up arrives %d");
987 if(CDebugBar* dbg = CWsTop::Screen()->DebugBar())
990 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyUpArrival,aRawEvent.ScanCode());
992 CKeyboardRepeat::KeyUp(aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE);
993 TBool translated=iKeyTranslator->TranslateKey(aRawEvent.ScanCode(), ETrue,*iCaptureKeys,keyData);
994 ProcessModifierChanges();
995 QueueKeyUpDown(aRawEvent);
998 CKeyboardRepeat::CancelRepeat(NULL);
999 QueueKeyPress(keyData,aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,EFalse,0);
1003 case TRawEvent::EButton1Down:
1004 case TRawEvent::EButton2Down:
1005 case TRawEvent::EButton3Down:
1006 case TRawEvent::EPointerSwitchOn:
1008 CWsTop::WindowServer()->AnimationScheduler()->OnActive();
1011 case TRawEvent::EButton1Up:
1012 case TRawEvent::EButton2Up:
1013 case TRawEvent::EButton3Up:
1014 case TRawEvent::EPointerMove:
1016 WS_ASSERT_DEBUG(MousePress(aRawEvent,NULL), EWsPanicEventType);
1018 MousePress(aRawEvent,NULL);
1021 case TRawEvent::EUpdateModifiers:
1022 iKeyTranslator->UpdateModifiers(aRawEvent.Modifiers());
1024 case TRawEvent::EKeyRepeat:
1026 _LIT(KWSERVDebugLogRepeatingKeyArrival,"Repeating key arrives %d");
1028 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogRepeatingKeyArrival,aRawEvent.ScanCode());
1030 keyData.iModifiers=iKeyTranslator->GetModifierState();
1033 keyData.iIsCaptureKey=EFalse;
1034 keyData.iKeyCode=aRawEvent.ScanCode();
1035 iCaptureKeys->ProcessCaptureKeys(keyData);
1036 QueueKeyPress(keyData, aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,EFalse,aRawEvent.Repeats());
1044 void TWindowServerEvent::ProcessKeyEvent(const TKeyEvent &aKeyEvent,TInt aRepeats)
1047 keyData.iModifiers=aKeyEvent.iModifiers;
1050 keyData.iIsCaptureKey=EFalse;
1051 keyData.iKeyCode=aKeyEvent.iCode;
1052 if (CKeyboardRepeat::IsAreadyActive())
1054 CKeyboardRepeat::CancelRepeat(NULL);
1056 iCaptureKeys->ProcessCaptureKeys(keyData);
1057 QueueKeyPress(keyData,aKeyEvent.iScanCode,NULL,aRepeats==0,aRepeats);
1060 void TWindowServerEvent::AddCaptureKeyL(const TCaptureKey &aCaptureKey)
1062 iCaptureKeys->AddCaptureKeyL(aCaptureKey,aCaptureKey.iKeyCodePattern.iFiller);
1065 void TWindowServerEvent::SetCaptureKey(TUint32 aHandle, const TCaptureKey &aCaptureKey)
1067 iCaptureKeys->SetCaptureKey(aHandle, aCaptureKey,aCaptureKey.iKeyCodePattern.iFiller);
1070 void TWindowServerEvent::CancelCaptureKey(TUint32 aHandle)
1072 iCaptureKeys->CancelCaptureKey(aHandle);
1075 TInt TWindowServerEvent::GetModifierState()
1077 return(iKeyTranslator->GetModifierState());
1080 void TWindowServerEvent::SetModifierState(TEventModifier aModifier,TModifierState aState)
1082 iKeyTranslator->SetModifierState(aModifier,aState);
1085 TInt TWindowServerEvent::AddNotificationHandler(CAnim* aAnim, TUint32 aNotifications)
1087 SNotificationHandler notif;
1088 notif.iAnim = aAnim;
1089 notif.iNotifications = aNotifications;
1091 // update the entry if the anim is already in the array
1092 TInt count=iNotificationHandlers->Count();
1094 for(ii=0;ii<count;++ii)
1096 if ((*iNotificationHandlers)[ii].iAnim==aAnim)
1098 (*iNotificationHandlers)[ii]=notif;
1103 // otherwise add it to the array
1104 TRAPD(err,iNotificationHandlers->AppendL(notif));
1108 void TWindowServerEvent::RemoveNotificationHandler(CAnim* aAnim)
1110 TInt count=iNotificationHandlers->Count();
1112 for(ii=0;ii<count;++ii)
1114 if ((*iNotificationHandlers)[ii].iAnim==aAnim)
1116 iNotificationHandlers->Delete(ii);
1122 void TWindowServerEvent::PublishNotification(const TWsEvent& aWsEvent)
1124 TInt count=iNotificationHandlers->Count();
1126 for(ii=0;ii<count;++ii)
1128 SNotificationHandler notif = (*iNotificationHandlers)[ii];
1129 switch (aWsEvent.Type())
1131 case EEventDirectScreenAccessBegin:
1132 case EEventDirectScreenAccessEnd:
1133 if (notif.iNotifications & EDirectScreenAccess)
1135 notif.iAnim->HandleNotification(aWsEvent);
1138 case EEventHeartbeatTimerStateChange:
1139 if (notif.iNotifications & EHeartbeatTimer)
1141 notif.iAnim->HandleNotification(aWsEvent);
1144 case EEventScreenDeviceChanged:
1145 if (notif.iNotifications & EScreenDeviceChange)
1147 notif.iAnim->HandleNotification(aWsEvent);
1157 TBool TWindowServerEvent::DrawerCompareFunc(const TDrawerHandler& lhs, const TDrawerHandler& rhs)
1159 return lhs.iDrawer == rhs.iDrawer;
1162 TInt TWindowServerEvent::RegisterDrawerHandler(CWsGraphicDrawer* aDrawer, TUint32 aEvents)
1164 TInt idx = iDrawerHandlers->Find(TDrawerHandler(aDrawer, aEvents),
1165 TIdentityRelation<TDrawerHandler>(TWindowServerEvent::DrawerCompareFunc));
1166 if (idx != KErrNotFound)
1168 // replace event mask for this drawer
1169 (*iDrawerHandlers)[idx].iEvents = aEvents;
1173 idx = iDrawerHandlers->Append(TDrawerHandler(aDrawer,aEvents));
1178 TInt TWindowServerEvent::UnregisterDrawerHandler(CWsGraphicDrawer* aDrawer)
1180 TInt idx = iDrawerHandlers->Find(TDrawerHandler(aDrawer,0),
1181 TIdentityRelation<TDrawerHandler>(TWindowServerEvent::DrawerCompareFunc));
1182 if (idx == KErrNotFound)
1184 (*iDrawerHandlers)[idx].iDrawer = NULL; //NotifyDrawer() will clean up the array
1188 TInt TWindowServerEvent::RegisterWsEventHandler(MWsEventHandler * aHandler, TUint32 aEvents)
1190 TWsEventHandler handler(aHandler, aEvents);
1191 TInt idx = iWsEventHandlers.Find(handler, TIdentityRelation<TWsEventHandler>(TWsEventHandler::CompareHandler));
1194 TInt err = iWsEventHandlers.Append(handler);
1199 iWsEventHandlers[idx].iEvents = aEvents;
1204 TInt TWindowServerEvent::UnregisterWsEventHandler(MWsEventHandler * aHandler)
1206 TWsEventHandler handler(aHandler, 0);
1207 TInt idx = iWsEventHandlers.Find(handler, TIdentityRelation<TWsEventHandler>(TWsEventHandler::CompareHandler));
1210 iWsEventHandlers[idx].iEvents = NULL; //NotifyDrawer() will clean up the array
1215 void TWindowServerEvent::NotifyDrawer(const TWservCrEvent& aEvent)
1217 TInt drawerCount = iDrawerHandlers->Count();
1218 for (TInt idx = 0; idx < drawerCount; idx++)
1220 TDrawerHandler hd = (*iDrawerHandlers)[idx];
1222 { //If the handler has been removed
1223 iDrawerHandlers->Remove(idx); //Remove from the array
1224 drawerCount -= 1; //Update the counters
1229 if (hd.iEvents & aEvent.Type())
1231 hd.iDrawer->HandleEvent(aEvent);
1236 TInt eventHandlerCount = iWsEventHandlers.Count();
1237 for (TInt idx = 0; idx < eventHandlerCount; ++idx)
1239 TWsEventHandler* eh = &iWsEventHandlers[idx];
1241 { //If the handler has been removed
1242 iWsEventHandlers.Remove(idx); //Remove from the array
1243 drawerCount -= 1; //Update the counters
1248 if (eh->iEvents & aEvent.Type())
1250 eh->iHandler->DoHandleEvent(aEvent);
1256 void TWindowServerEvent::NotifyScreenDrawingEvent(const TRegion* aRegion)
1258 if (aRegion && !aRegion->IsEmpty())
1260 TWservCrEvent event(TWservCrEvent::EScreenDrawing,0,const_cast<TRegion*>(aRegion));
1261 NotifyDrawer(event);
1265 void TWindowServerEvent::NotifyScreenDrawingEvent(const TRect& aRect)
1267 TRegionFix<1> reg(aRect);
1268 TWservCrEvent event(TWservCrEvent::EScreenDrawing,0,®);
1269 NotifyDrawer(event);
1273 // CRawEventReceiver //
1276 CRawEventReceiver::CRawEventReceiver(TInt aPriority) : CActive(aPriority)
1281 __DECLARE_NAME(_S("CRawEventReceiver"));
1284 CRawEventReceiver::~CRawEventReceiver()
1289 void CRawEventReceiver::ConstructL()
1291 CActiveScheduler::Add(this);
1292 UserSvr::CaptureEventHook();
1296 void CRawEventReceiver::Request()
1298 // Issue a request for the next event.
1301 UserSvr::RequestEvent(iEventBuf,iStatus);
1305 void CRawEventReceiver::DoCancel()
1307 // Cancel a pending event.
1310 UserSvr::RequestEventCancel();
1313 void CRawEventReceiver::RunL()
1315 //__PROFILE_START(11);
1316 if (WsPointer::PreProcessEvent(iEventBuf.Event()
1317 #if defined(__WINS__)
1321 TWindowServerEvent::ProcessRawEvent(iEventBuf.Event());
1323 //__PROFILE_END(11);
1327 // TEventRequestQueue //
1330 TEventRequestQueue::TEventRequestQueue() : iQueue(_FOFF(TEventRequestItem,iQue))
1333 inline TSglQue<TEventRequestItem> &TEventRequestQueue::Queue()
1336 TEventRequestItem *TEventRequestQueue::FindInEventRequestQueueList(const CWsWindowBase &aWindow)
1338 // Return a pointer to the link in the queue for the window, or NULL if not in the queue
1341 TSglQueIter<TEventRequestItem> iter(iQueue);
1342 TEventRequestItem *qPtr;
1343 while((qPtr=iter++)!=NULL)
1344 if (qPtr->iWindow==&aWindow)
1349 void TEventRequestQueue::AddToEventRequestListL(const CWsWindowBase &aWindow, TInt aParam, TEventControl aCircumstances)
1351 // Add a link to the on event list
1354 TEventRequestItem *item=FindInEventRequestQueueList(aWindow);
1357 item=new(ELeave) TEventRequestItem;
1358 item->iWindow= &aWindow;
1359 item->iParam=aParam;
1360 item->iCircumstances=aCircumstances;
1361 iQueue.AddFirst(*item);
1363 item->iCircumstances=aCircumstances;
1364 item->iParam=aParam; // Just update the parameter if already exists
1367 void TEventRequestQueue::RemoveFromEventRequestListL(const CWsWindowBase &aWindow)
1369 // Remove a link from the on event list
1372 TEventRequestItem *qPtr=FindInEventRequestQueueList(aWindow);
1375 iQueue.Remove(*qPtr);
1381 // Keyboard auto repeat class //
1384 CKeyboardRepeat::CKeyboardRepeat() : CTimer(EKeyRepeatPriority)
1387 void CKeyboardRepeat::NewL()
1389 iThis=new(ELeave) CKeyboardRepeat();
1390 iThis->ConstructL();
1391 CActiveScheduler::Add(iThis);
1392 _LIT(KWSERVIniFileVarRepeatRollover,"REPEATROLLOVER");
1393 WsIniFile->FindVar(KWSERVIniFileVarRepeatRollover,iRepeatRollover);
1396 void CKeyboardRepeat::Destroy()
1401 void CKeyboardRepeat::GetRepeatTime(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime)
1403 aInitialTime=iInitialTime;
1407 void CKeyboardRepeat::SetRepeatTime(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
1409 iInitialTime=aInitialTime;
1413 void CKeyboardRepeat::RunL()
1415 User::ResetInactivityTime();
1416 //WS_ASSERT_DEBUG(iRepeating!=ERepeatNone, EWsPanicTemp);
1418 if (iRepeating>=ERepeatLong)
1420 // Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
1423 iCurrentRepeat.iKey.iApp=REINTERPRET_CAST(TUint32,iLongCapture->iWindowGroup);
1424 iCurrentRepeat.iKey.iHandle=0;
1425 iCurrentRepeat.iKey.iIsCaptureKey=ETrue;
1426 iCurrentRepeat.iKey.iKeyCode=iLongCapture->iData.outputKey;
1427 timer=iLongCapture->iData.flags&ELongCaptureRepeatEvents;
1428 iRepeating=ERepeatLongRepeated;
1432 // Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
1433 // Stop key repeat if this incorrect condition occurs
1440 iRepeating=ERepeatNone;
1441 TWindowServerEvent::QueueKeyPress(iCurrentRepeat.iKey,iCurrentRepeat.iScanCode,iFocus,EFalse,1);
1444 TBool CKeyboardRepeat::StartRepeat(const TKeyData &aKey, TInt aScanCode, CWsWindowGroup *aRepeatFocus, CWsCaptureLongKey* aLongCapture)
1446 TTimeIntervalMicroSeconds32 time;
1448 iCurrentRepeat.iScanCode=aScanCode;
1449 iCurrentRepeat.iKey=aKey;
1450 iFocus=aRepeatFocus;
1453 iLongCapture=aLongCapture;
1454 iRepeating=ERepeatLong;
1455 time=aLongCapture->iData.delay;
1456 ret=!(aLongCapture->iData.flags&ELongCaptureShortEventImmediately);
1460 iRepeating=ERepeatNormal;
1467 void CKeyboardRepeat::doCancelRepeat()
1469 iRepeating=ERepeatNone;
1473 void CKeyboardRepeat::CancelRepeat(CWsWindowGroup *aRepeatFocus)
1475 if (aRepeatFocus==NULL || aRepeatFocus==iFocus)
1479 iAlternateRepeatExists=EFalse;
1481 else if (iRepeating >= ERepeatLong)
1483 // Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
1484 if (iLongCapture && iLongCapture->iWindowGroup == aRepeatFocus)
1487 iAlternateRepeatExists=EFalse;
1492 void CKeyboardRepeat::CancelRepeat(CWsWindowGroup *aRepeatFocus,TUint aScanCode,TBool aLongCaptureFlag,TUint aModifiers)
1494 // aLongCaptureFlag indicates if CancelRepeat caused by call to CancelCaptureLongKey()
1495 if (aLongCaptureFlag)
1497 // long capture key is cancelled
1498 if (iRepeating >= ERepeatLong && iCurrentRepeat.iScanCode==aScanCode)
1500 // Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
1501 if (iLongCapture && aRepeatFocus == iLongCapture->iWindowGroup &&
1502 (aModifiers & iLongCapture->iData.modifierMask) == iLongCapture->iData.modifiers)
1505 iAlternateRepeatExists=EFalse;
1511 // normal capture key is cancelled
1512 if (aRepeatFocus==iFocus)
1514 if (iRepeating>=ERepeatNormal && iCurrentRepeat.iScanCode==aScanCode)
1518 iAlternateRepeatExists=EFalse;
1523 void CKeyboardRepeat::KeyDown()
1525 if (iRepeating!=ERepeatNone)
1527 if (iRepeating==ERepeatNormal && iRepeatRollover>0) // 1 Allow key repeat rollover
1529 iAlternateRepeat=iCurrentRepeat;
1530 iAlternateRepeatExists=ETrue;
1536 void CKeyboardRepeat::KeyUp(TInt aScanCode)
1538 if (iAlternateRepeatExists && iAlternateRepeat.iScanCode==aScanCode)
1539 iAlternateRepeatExists=EFalse;
1540 if (iRepeating!=ERepeatNone && iCurrentRepeat.iScanCode==aScanCode)
1542 if (iRepeating==ERepeatLong)
1544 // Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
1545 if (iLongCapture && !(iLongCapture->iData.flags&ELongCaptureShortEventImmediately))
1547 TWindowServerEvent::QueueKeyPress(iCurrentRepeat.iKey,iCurrentRepeat.iScanCode,NULL,EFalse,0);
1550 if (iAlternateRepeatExists)
1552 iAlternateRepeatExists=EFalse;
1553 iCurrentRepeat=iAlternateRepeat;
1554 iRepeating=ERepeatNormal;
1565 CWsHotKey::CWsHotKey(TInt aHotKeyType, TBool aIsDefault) :
1566 iHotKeyType(aHotKeyType),
1567 iIsDefault(aIsDefault)
1571 CWsHotKey::~CWsHotKey()
1576 void CWsHotKey::ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey)
1578 CleanupStack::PushL(this);
1579 iCaptureKey=new(ELeave) CWsCaptureKey(NULL);
1580 iCaptureKey->ConstructL(aCaptureKey);
1581 CleanupStack::Pop();
1584 void CWsHotKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
1586 iCaptureKey->SetL(aCaptureKey);