os/graphics/windowing/windowserver/nonnga/SERVER/EVENT.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/EVENT.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1589 @@
     1.4 +// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Top level window server code
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "EVENT.H"
    1.22 +
    1.23 +#include <hal.h>
    1.24 +#include <w32adll.h>
    1.25 +#include <w32click.h>
    1.26 +#include "server.h"
    1.27 +#include "windowgroup.h"
    1.28 +#include "KEYCLICK.H"
    1.29 +#include "wstop.h"
    1.30 +#include "panics.h"
    1.31 +#include "screen.h"
    1.32 +#include "inifile.h"
    1.33 +#include "password.h"
    1.34 +#include <w32std.h>
    1.35 +#include "pointer.h"
    1.36 +#include "debugbar.h"
    1.37 +#include "wstraces.h"
    1.38 +#include "Graphics/wsgraphicdrawerinternal.h"
    1.39 +
    1.40 +
    1.41 +GLREF_D CDebugLogBase *wsDebugLog;
    1.42 +
    1.43 +GLREF_C void StateDump();
    1.44 +GLREF_C void HeapDump();
    1.45 +
    1.46 +#define IMPOSSIBLE 0xFFFFFFFF
    1.47 +
    1.48 +const TWsWinCmdCaptureKey ImpossibleKeyPress=
    1.49 +	{
    1.50 +	IMPOSSIBLE,	// Impossible to hit key combination, used for disabling Hot Keys
    1.51 +	IMPOSSIBLE,
    1.52 +	IMPOSSIBLE};
    1.53 +
    1.54 +const TWsWinCmdCaptureKey DefaultHotKeys[TWindowServerEvent::ENumHotKeys]={
    1.55 +	{	// Enable logging
    1.56 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.57 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.58 +	5}, // E
    1.59 +	{	// Disable logging
    1.60 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.61 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.62 +	4}, // D
    1.63 +	{	// Window server internal dump to log
    1.64 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.65 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.66 +	23},// W
    1.67 +	{	// The key of death
    1.68 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.69 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.70 +	11},// K
    1.71 +	{	// Shutdown window server
    1.72 +#if defined(_DEBUG)
    1.73 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.74 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.75 +	24},// X
    1.76 +#else
    1.77 +	IMPOSSIBLE,	// Impossible to hit key combination, effectively disables shutdown key in release builds
    1.78 +	IMPOSSIBLE,
    1.79 +	IMPOSSIBLE},
    1.80 +#endif
    1.81 +	{	// Heap dump
    1.82 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.83 +	EModifierFunc|EModifierCtrl|EModifierShift,
    1.84 +	8}, // H
    1.85 +	{	// Inc Contrast
    1.86 +	0,
    1.87 +	0,
    1.88 +	EKeyIncContrast},
    1.89 +	{	// Dec Contrast
    1.90 +	0,
    1.91 +	0,
    1.92 +	EKeyDecContrast},
    1.93 +	{	// Off
    1.94 +	0,
    1.95 +	0,
    1.96 +	EKeyOff},
    1.97 +	{	// Backlight on 
    1.98 +	0,
    1.99 +	0,
   1.100 +	EKeyBacklightOn},
   1.101 +	{	// Backlight off
   1.102 +	0,
   1.103 +	0,
   1.104 +	EKeyBacklightOff},
   1.105 +	{	// Backlight toggle
   1.106 +	0,
   1.107 +	0,
   1.108 +	EKeyBacklightToggle},
   1.109 +	{	// Screen Dimension Change
   1.110 +	0,
   1.111 +	0,
   1.112 +	EKeyScreenDimension0},
   1.113 +	{
   1.114 +	0,
   1.115 +	0,
   1.116 +	EKeyScreenDimension1},
   1.117 +	{
   1.118 +	0,
   1.119 +	0,
   1.120 +	EKeyScreenDimension2},
   1.121 +	{
   1.122 +	0,
   1.123 +	0,
   1.124 +	EKeyScreenDimension3},
   1.125 +#if defined(_DEBUG)
   1.126 +	{	// Display mode cycle
   1.127 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.128 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.129 +	21},// U
   1.130 +	{	// Orientation cycle
   1.131 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.132 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.133 +	15},// O
   1.134 +#else
   1.135 +	{	// Display mode cycle
   1.136 +	IMPOSSIBLE,	// Impossible to hit key combination
   1.137 +	IMPOSSIBLE,
   1.138 +	IMPOSSIBLE},
   1.139 +	{	// Orientation cycle
   1.140 +	IMPOSSIBLE,	// Impossible to hit key combination
   1.141 +	IMPOSSIBLE,
   1.142 +	IMPOSSIBLE},
   1.143 +#endif
   1.144 +	{	// Inc Brightness
   1.145 +	0,
   1.146 +	0,
   1.147 +	EKeyIncBrightness},
   1.148 +	{	// Dec Brightness
   1.149 +	0,
   1.150 +	0,
   1.151 +	EKeyDecBrightness},
   1.152 +	{	// Cycle focus screen
   1.153 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.154 +	EModifierFunc|EModifierCtrl|EModifierShift,
   1.155 +	9}, // I
   1.156 +	};
   1.157 +
   1.158 +CKeyTranslator *TWindowServerEvent::iKeyTranslator=NULL;
   1.159 +TEventRequestQueue TWindowServerEvent::iSwitchOnQueue;
   1.160 +TEventRequestQueue TWindowServerEvent::iErrorMessageQueue;
   1.161 +TEventRequestQueue TWindowServerEvent::iModifierChangedQueue;
   1.162 +TEventRequestQueue TWindowServerEvent::iGroupChangedQueue;
   1.163 +TEventRequestQueue TWindowServerEvent::iFocusChangedQueue;
   1.164 +TEventRequestQueue TWindowServerEvent::iGroupListChangedQueue;
   1.165 +TEventRequestQueue TWindowServerEvent::iScreenDeviceChangedQueue;
   1.166 +TTime TWindowServerEvent::iPrevOomMessageTime;
   1.167 +CCaptureKeys *TWindowServerEvent::iCaptureKeys;
   1.168 +CWsHotKey *TWindowServerEvent::iHotKeys;
   1.169 +TInt TWindowServerEvent::iModifierState;
   1.170 +CRawEventReceiver *TWindowServerEvent::iEventReceiver;
   1.171 +CArrayPtrFlat<MEventHandler> *TWindowServerEvent::iEventHandlers;
   1.172 +CArrayFixFlat<SNotificationHandler> *TWindowServerEvent::iNotificationHandlers;
   1.173 +TInt TWindowServerEvent::iPotentialEventHandlers=0;
   1.174 +TUint32 TWindowServerEvent::iBinaryFlags=0x00;
   1.175 +RArray<TDrawerHandler>* TWindowServerEvent::iDrawerHandlers;
   1.176 +RArray<TWsEventHandler> TWindowServerEvent::iWsEventHandlers;
   1.177 +TInt TWindowServerEvent::iEventHandlerCount=0;
   1.178 +TRepeatKey CKeyboardRepeat::iCurrentRepeat;
   1.179 +TRepeatKey CKeyboardRepeat::iAlternateRepeat;
   1.180 +TInt CKeyboardRepeat::iRepeatRollover=1;
   1.181 +CKeyboardRepeat::TRepeatType CKeyboardRepeat::iRepeating=ERepeatNone;
   1.182 +CKeyboardRepeat *CKeyboardRepeat::iThis=NULL;
   1.183 +TTimeIntervalMicroSeconds32 CKeyboardRepeat::iInitialTime;
   1.184 +TTimeIntervalMicroSeconds32 CKeyboardRepeat::iTime;
   1.185 +CWsWindowGroup *CKeyboardRepeat::iFocus=NULL;
   1.186 +TBool CKeyboardRepeat::iAlternateRepeatExists=EFalse;
   1.187 +CWsCaptureLongKey* CKeyboardRepeat::iLongCapture=NULL;
   1.188 +
   1.189 +
   1.190 +void TWindowServerEvent::DeleteHotKeys()
   1.191 +	{
   1.192 +	CWsHotKey *hotKey=iHotKeys;
   1.193 +	while(hotKey)
   1.194 +		{
   1.195 +		CWsHotKey *next=hotKey->iNext;
   1.196 +		delete hotKey;
   1.197 +		hotKey=next;
   1.198 +		}
   1.199 +	iHotKeys=NULL;
   1.200 +	}
   1.201 +
   1.202 +void TWindowServerEvent::DeleteStatics()
   1.203 +	{
   1.204 +	DeleteHotKeys();
   1.205 +	delete iCaptureKeys;
   1.206 +	CKeyboardRepeat::Destroy();
   1.207 +	delete iKeyTranslator;
   1.208 +	delete iEventReceiver;
   1.209 +	delete iEventHandlers;
   1.210 +	delete iNotificationHandlers;
   1.211 +	iDrawerHandlers->Close();
   1.212 +	delete iDrawerHandlers;
   1.213 +	}
   1.214 +
   1.215 +void TWindowServerEvent::InitStaticsL()
   1.216 +//
   1.217 +// Create the CEvent active object.
   1.218 +//
   1.219 +	{
   1.220 +#if defined(__WINS__)
   1.221 +	WS_ASSERT_DEBUG(TWindowServerEvent::ENumHotKeys==EHotKeyLastKeyType+1, EWsPanicUnknownCaptureKey);
   1.222 +#endif
   1.223 +	iEventReceiver=new(ELeave) CRawEventReceiver(EEventPriority);
   1.224 +	iEventReceiver->ConstructL();
   1.225 +	iKeyTranslator=CKeyTranslator::New();
   1.226 +	User::LeaveIfNull(iKeyTranslator);
   1.227 +
   1.228 +//  Change keyboard mapping according to information the HAL
   1.229 +	TInt keyboardIndex;
   1.230 +	if (HAL::Get(HALData::EKeyboardIndex,keyboardIndex)==KErrNone)
   1.231 +		{
   1.232 +		_LIT(KLitKeyDataDllName,"EKDATA.%02d");
   1.233 +		TBuf<16> keyDataDllName;
   1.234 +		keyDataDllName.Format(KLitKeyDataDllName,keyboardIndex);
   1.235 +		iKeyTranslator->ChangeKeyData(keyDataDllName);
   1.236 +		}
   1.237 +
   1.238 +	iCaptureKeys=new(ELeave) CCaptureKeys;
   1.239 +	iCaptureKeys->Construct();
   1.240 +	for (TInt index=0;index<TWindowServerEvent::ENumHotKeys;index++)
   1.241 +		ConstructDefaultHotKeyL(index,DefaultHotKeys[index]);
   1.242 +	CKeyboardRepeat::NewL();
   1.243 +	CKeyboardRepeat::SetRepeatTime(EDefaultInitialRepeatTime, EDefaultRepeatTime);
   1.244 +	iEventHandlers=new(ELeave) CArrayPtrFlat<MEventHandler>(2);
   1.245 +	iNotificationHandlers=new(ELeave) CArrayFixFlat<SNotificationHandler>(2);
   1.246 +	iDrawerHandlers = new(ELeave) RArray<TDrawerHandler>(4);
   1.247 +	}
   1.248 +
   1.249 +void TWindowServerEvent::LinkHotKey(CWsHotKey *aWsHotKey)
   1.250 +	{
   1.251 +	aWsHotKey->SetLink(iHotKeys);
   1.252 +	iHotKeys=aWsHotKey;
   1.253 +	}
   1.254 +
   1.255 +void TWindowServerEvent::ConstructDefaultHotKeyL(TInt aHotKey, const TWsWinCmdCaptureKey &aSystemKey)
   1.256 +	{
   1.257 +	CWsHotKey* hotKey=new(ELeave) CWsHotKey(aHotKey, ETrue);
   1.258 +	// hotKey is pushed onto the cleanup stack in method ConstructLD.
   1.259 +	hotKey->ConstructLD(aSystemKey);
   1.260 +	LinkHotKey(hotKey);
   1.261 +	}
   1.262 +
   1.263 +CWsHotKey* TWindowServerEvent::ClearHotKeysL(TInt aHotKey)
   1.264 +	{
   1.265 +	if (aHotKey>ENumHotKeys)
   1.266 +		{
   1.267 +		User::Leave(KErrArgument);
   1.268 +		}
   1.269 +	CWsHotKey** pHotKey= &iHotKeys;
   1.270 +	CWsHotKey* defaultHotKey=NULL;
   1.271 +	while(*pHotKey)
   1.272 +		{
   1.273 +		TBool unlinked=EFalse;
   1.274 +		if ((*pHotKey)->HotKeyType()==aHotKey)
   1.275 +			{
   1.276 +			CWsHotKey *free=*pHotKey;
   1.277 +			if (free->IsDefault())
   1.278 +				{
   1.279 +				free->SetL(ImpossibleKeyPress);
   1.280 +				defaultHotKey=free;
   1.281 +				}
   1.282 +			else
   1.283 +				{
   1.284 +				*pHotKey=(*pHotKey)->iNext;
   1.285 +				delete free;
   1.286 +				unlinked=ETrue;
   1.287 +				}
   1.288 +			}
   1.289 +		if (!unlinked)
   1.290 +			{
   1.291 +			pHotKey=&(*pHotKey)->iNext;
   1.292 +			}
   1.293 +		}
   1.294 +	return(defaultHotKey);
   1.295 +	}
   1.296 +
   1.297 +void TWindowServerEvent::ResetDefaultHotKeyL(TInt aHotKey)
   1.298 +	{
   1.299 +	if ((aHotKey<0) || (aHotKey>=ENumHotKeys))
   1.300 +		{
   1.301 +		User::Leave(KErrArgument);
   1.302 +		}
   1.303 +	CWsHotKey* defaultHotKey=ClearHotKeysL(aHotKey);
   1.304 +	WS_ASSERT_DEBUG(defaultHotKey, EWsPanicDefaultHotKeyNotFound);
   1.305 +	defaultHotKey->SetL(DefaultHotKeys[aHotKey]);
   1.306 +	}
   1.307 +
   1.308 +void TWindowServerEvent::SetHotKeyL(const TWsClCmdSetHotKey &aHotKey)
   1.309 +	{
   1.310 +	if (aHotKey.type>ENumHotKeys)
   1.311 +		User::Leave(KErrArgument);
   1.312 +//
   1.313 +	CWsHotKey *hotKey=new(ELeave) CWsHotKey(aHotKey.type, EFalse);
   1.314 +//
   1.315 +	TWsWinCmdCaptureKey captureKey;
   1.316 +	captureKey.modifiers=aHotKey.modifiers;
   1.317 +	captureKey.modifierMask=aHotKey.modifierMask;
   1.318 +	captureKey.key=aHotKey.keycode;
   1.319 +	hotKey->ConstructLD(captureKey);
   1.320 +//
   1.321 +	LinkHotKey(hotKey);
   1.322 +	}
   1.323 +
   1.324 +void TWindowServerEvent::AddEventHandler(MEventHandler *aEventHandler)
   1.325 +	{
   1.326 +#if defined(_DEBUG)
   1.327 +	TRAPD(err,iEventHandlers->AppendL(aEventHandler));
   1.328 +	WS_ASSERT_DEBUG(err==KErrNone, EWsPanicEventHandlerInconsistency);
   1.329 +#else
   1.330 +	iEventHandlers->AppendL(aEventHandler);		//Shouldn't leave
   1.331 +#endif
   1.332 +	}
   1.333 +
   1.334 +void TWindowServerEvent::RemoveEventHandler(const MEventHandler *aEventHandler)
   1.335 +	{
   1.336 +	TInt count=iEventHandlers->Count();
   1.337 +	TInt ii;
   1.338 +	for(ii=0;ii<count;++ii)
   1.339 +		{
   1.340 +		if ((*iEventHandlers)[ii]==aEventHandler)
   1.341 +			{
   1.342 +			if (iEventHandlerCount>0)  
   1.343 +				{
   1.344 +				iBinaryFlags |= ERemovedEventHandlerWhileProcessingRawEvents;
   1.345 +				(*iEventHandlers)[ii]=NULL; // replace the Handler with null to keep size of the array
   1.346 +				}
   1.347 +			else 
   1.348 +				{
   1.349 +				iEventHandlers->Delete(ii);
   1.350 +				}
   1.351 +			return;
   1.352 +			}
   1.353 +		}
   1.354 +	}
   1.355 +
   1.356 +void TWindowServerEvent::PotentialEventHandlerL(TInt aNum)
   1.357 +	{
   1.358 +	iPotentialEventHandlers+=aNum;
   1.359 +	WS_ASSERT_DEBUG(iPotentialEventHandlers>=iEventHandlers->Count(), EWsPanicEventHandlerInconsistency);
   1.360 +	TRAPD(err,iEventHandlers->SetReserveL(iPotentialEventHandlers));
   1.361 +	if (err!=KErrNone)
   1.362 +		{
   1.363 +		if (aNum>0)
   1.364 +			User::Leave(err);
   1.365 +		}
   1.366 +	else if (iPotentialEventHandlers==0)
   1.367 +		iEventHandlers->Compress();
   1.368 +	}
   1.369 +
   1.370 +void SendSwitchOnEvent(TEventRequestItem *aQptr, TInt aEvent, TInt )
   1.371 +	{
   1.372 +	aQptr->iWindow->QueueEvent(aEvent);
   1.373 +	}
   1.374 +
   1.375 +/*void SendSwitchOffEvent(TEventRequestItem *aQptr, TInt , TInt )
   1.376 +	{
   1.377 +	aQptr->iWindow->QueueEvent(EEventSwitchOff);
   1.378 +	}*/
   1.379 +
   1.380 +void SendErrorMessage(TEventRequestItem *aQptr, TInt aCategory, TInt aError)
   1.381 +	{
   1.382 +	TWsEvent event;
   1.383 +	event.SetType(EEventErrorMessage);
   1.384 +	event.SetHandle(aQptr->iWindow->ClientHandle());
   1.385 +	event.ErrorMessage()->iErrorCategory=(TWsErrorMessage::TErrorCategory)aCategory;
   1.386 +	event.ErrorMessage()->iError=aError;
   1.387 +	event.SetTimeNow();
   1.388 +	aQptr->iWindow->EventQueue()->QueueEvent(event,EEventPriorityHigh);
   1.389 +	}
   1.390 +
   1.391 +void SendModifierChangedEvent(TEventRequestItem *aQptr, TInt aChanged, TInt )
   1.392 +	{
   1.393 +	TInt tmpChanged=aChanged&aQptr->iParam;
   1.394 +	if (tmpChanged)
   1.395 +		{
   1.396 +		TWsEvent event;
   1.397 +		event.SetType(EEventModifiersChanged);
   1.398 +		event.SetHandle(aQptr->iWindow->ClientHandle());
   1.399 +		event.ModifiersChanged()->iChangedModifiers=tmpChanged;
   1.400 +		event.ModifiersChanged()->iModifiers=TWindowServerEvent::GetStoredModifierState();
   1.401 +		event.SetTimeNow();
   1.402 +		aQptr->iWindow->EventQueue()->QueueEvent(event,EEventPriorityHigh);
   1.403 +		}
   1.404 +	}
   1.405 +
   1.406 +void TWindowServerEvent::ProcessEventQueue(TEventRequestQueue &aQueue, TSendEventFunc aFunc, TInt aParam1, TInt aParam2)
   1.407 +	{
   1.408 +	TSglQueIter<TEventRequestItem> iter(aQueue.Queue());
   1.409 +	TEventRequestItem *qPtr;
   1.410 +	CWsWindowGroup *focusWin=CWsTop::FocusWindowGroup();
   1.411 +	while((qPtr=iter++)!=NULL)
   1.412 +		{
   1.413 +		if (qPtr->iCircumstances==EEventControlAlways || 
   1.414 +			(qPtr->iCircumstances==EEventControlOnlyWithKeyboardFocus && qPtr->iWindow->WinGroup()==focusWin) ||
   1.415 +			(qPtr->iCircumstances==EEventControlOnlyWhenVisible && !qPtr->iWindow->TreeIsObscured()))
   1.416 +			aFunc(qPtr, aParam1, aParam2);
   1.417 +		}
   1.418 +	}
   1.419 +
   1.420 +void TWindowServerEvent::NotifyOom()
   1.421 +	{
   1.422 +	TTime now;
   1.423 +	now.UniversalTime();
   1.424 +	TTimeIntervalSeconds interval;
   1.425 +	TInt err=now.SecondsFrom(iPrevOomMessageTime,interval);
   1.426 +	if (err!=KErrNone || interval.Int()<0 || interval.Int()>EOomEventSecondGap)
   1.427 +		{
   1.428 +		ProcessErrorMessages(TWsErrorMessage::EDrawingRegion,KErrNoMemory);
   1.429 +		iPrevOomMessageTime=now;
   1.430 +		}
   1.431 +	}
   1.432 +
   1.433 +TBool TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::TErrorCategory aCategory, TInt aError)
   1.434 +	{
   1.435 +	if (aError!=KErrNone)
   1.436 +		{
   1.437 +		ProcessEventQueue(iErrorMessageQueue, SendErrorMessage, aCategory, aError);
   1.438 +		return ETrue;
   1.439 +		}
   1.440 +	return EFalse;
   1.441 +	}
   1.442 +
   1.443 +void TWindowServerEvent::ProcessModifierChanges()
   1.444 +	{
   1.445 +	TInt newState=iKeyTranslator->GetModifierState();
   1.446 +	if (newState!=iModifierState)
   1.447 +		{
   1.448 +		TInt changed=iModifierState^newState;
   1.449 +		iModifierState=newState;
   1.450 +		ProcessEventQueue(iModifierChangedQueue, SendModifierChangedEvent, changed, 0);
   1.451 +		}
   1.452 +	}
   1.453 +
   1.454 +TEventQueueWalkRet FindScreenDeviceChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
   1.455 +	{
   1.456 +	if (aEvent->Type()==EEventScreenDeviceChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
   1.457 +		*(TUint *)aHandlePtr=0;	// Indicates event found
   1.458 +	return(EEventQueueWalkOk);
   1.459 +	}
   1.460 +	
   1.461 +void TWindowServerEvent::SendScreenDeviceChangedEvents(CScreen* aScreen)
   1.462 +	{
   1.463 +	TSglQueIter<TEventRequestItem> iter(iScreenDeviceChangedQueue .Queue());
   1.464 +	TEventRequestItem *qPtr;
   1.465 +	while((qPtr=iter++)!=NULL)
   1.466 +		SendScreenDeviceChangedEvent(qPtr->iWindow);
   1.467 +	if(CClick::IsHandler())
   1.468 +		{
   1.469 +		TClickMakerData clickMakerData;
   1.470 +		clickMakerData.screenDeviceMode=aScreen->ScreenSizeMode();
   1.471 +		CClick::OtherEvent(EEventScreenDeviceChanged, &clickMakerData);
   1.472 +		}
   1.473 +	TWsEvent wsEvent;
   1.474 +	wsEvent.SetType(EEventScreenDeviceChanged);
   1.475 +	TWindowServerEvent::PublishNotification(wsEvent);
   1.476 +	TWservCrEvent crEvent(TWservCrEvent::EScreenSizeModeChanged,aScreen->ScreenSizeMode());
   1.477 +	TWindowServerEvent::NotifyDrawer(crEvent);
   1.478 +	}
   1.479 +
   1.480 +void TWindowServerEvent::SendScreenDeviceChangedEvent(const CWsWindowBase *aWindow)
   1.481 +	{
   1.482 +	CEventQueue *queue=aWindow->EventQueue();
   1.483 +	TUint32 handle=aWindow->ClientHandle();
   1.484 +	queue->WalkEventQueue(&FindScreenDeviceChangedEvent,&handle);
   1.485 +	if (handle!=NULL)	// Indicates event not found
   1.486 +		queue->QueueEvent(handle, EEventScreenDeviceChanged);
   1.487 +	}
   1.488 +
   1.489 +TEventQueueWalkRet FindGroupChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
   1.490 +	{
   1.491 +	if (aEvent->Type()==EEventWindowGroupsChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
   1.492 +		{
   1.493 +		*(TUint *)aHandlePtr=0;	// Indicates event found
   1.494 +		}
   1.495 +	return(EEventQueueWalkOk);
   1.496 +	}
   1.497 +	
   1.498 +void TWindowServerEvent::SendGroupChangedEvents()
   1.499 +	{
   1.500 +	TSglQueIter<TEventRequestItem> iter(iGroupChangedQueue.Queue());
   1.501 +	TEventRequestItem *qPtr;
   1.502 +	while((qPtr=iter++)!=NULL)
   1.503 +		{
   1.504 +		const CWsWindowBase *win=qPtr->iWindow;
   1.505 +		CEventQueue *queue=win->EventQueue();
   1.506 +		TUint32 handle=win->ClientHandle();
   1.507 +		queue->WalkEventQueue(&FindGroupChangedEvent,&handle);
   1.508 +		if (handle!=NULL)	// Indicates event not found
   1.509 +			{
   1.510 +			queue->QueueEvent(handle, EEventWindowGroupsChanged);
   1.511 +			}
   1.512 +		}
   1.513 +	}	
   1.514 +
   1.515 +TEventQueueWalkRet FindFocusChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
   1.516 +	{
   1.517 +	if (aEvent->Type()==EEventFocusGroupChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
   1.518 +		{
   1.519 +		*(TUint *)aHandlePtr=0;	// Indicates event found
   1.520 +		}
   1.521 +	return(EEventQueueWalkOk);
   1.522 +	}
   1.523 +	
   1.524 +void TWindowServerEvent::SendFocusChangedEvents()
   1.525 +	{
   1.526 +	TInt identifier=0;	// Zero Identifier indicates, currently there is no focused window group
   1.527 +	CScreen* currentFocusScreen=CWsTop::CurrentFocusScreen();	
   1.528 +	TInt screenNumber=currentFocusScreen->ScreenNumber();
   1.529 +	CWsWindowGroup* currentFocusWG=currentFocusScreen->FocusWindowGroup();
   1.530 +	WS_ASSERT_DEBUG(currentFocusWG, EWsPanicNoScreen);
   1.531 +	if(currentFocusWG)
   1.532 +		{
   1.533 +		identifier=currentFocusWG->Identifier();
   1.534 +		}
   1.535 +	TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EWindowGroupChanged,
   1.536 +		screenNumber, reinterpret_cast<TAny*>(identifier)));
   1.537 +		 
   1.538 +	TSglQueIter<TEventRequestItem> iter(iFocusChangedQueue.Queue());
   1.539 +	TEventRequestItem *qPtr;
   1.540 +	while((qPtr=iter++)!=NULL)
   1.541 +		{
   1.542 +		const CWsWindowBase *win=qPtr->iWindow;
   1.543 +		CEventQueue *queue=win->EventQueue();
   1.544 +		TUint32 handle=win->ClientHandle();
   1.545 +		queue->WalkEventQueue(&FindFocusChangedEvent,&handle);
   1.546 +		if (handle!=NULL)	// Indicates event not found
   1.547 +			{
   1.548 +			queue->QueueEvent(handle, EEventFocusGroupChanged);
   1.549 +			}
   1.550 +		}
   1.551 +	}
   1.552 +
   1.553 +TEventQueueWalkRet FindGroupListChangedEvent(TAny *aHandlePtr, TWsEvent *aEvent)
   1.554 +	{
   1.555 +	if (aEvent->Type()==EEventWindowGroupListChanged && aEvent->Handle()==*(TUint *)aHandlePtr)
   1.556 +		{
   1.557 +		*(TUint *)aHandlePtr=0;	// Indicates event found
   1.558 +		}
   1.559 +	return(EEventQueueWalkOk);
   1.560 +	}
   1.561 +	
   1.562 +void TWindowServerEvent::SendGroupListChangedEvents()
   1.563 +	{
   1.564 +	TSglQueIter<TEventRequestItem> iter(iGroupListChangedQueue.Queue());
   1.565 +	TEventRequestItem *qPtr;
   1.566 +	while((qPtr=iter++)!=NULL)
   1.567 +		{
   1.568 +		const CWsWindowBase *win=qPtr->iWindow;
   1.569 +		CEventQueue *queue=win->EventQueue();
   1.570 +		TUint32 handle=win->ClientHandle();
   1.571 +		queue->WalkEventQueue(&FindGroupListChangedEvent,&handle);
   1.572 +		if (handle!=NULL)	// Indicates event not found
   1.573 +			{
   1.574 +			queue->QueueEvent(handle, EEventWindowGroupListChanged);
   1.575 +			}
   1.576 +		}
   1.577 +	}	
   1.578 +
   1.579 +TEventQueueWalkRet OverrideVisibilityChangedEvent(TAny *aNewEvent, TWsEvent *aOldEvent)
   1.580 +	{
   1.581 +	// This replaces the first visibility event it finds for the given window with the
   1.582 +	// one given.  This is fine, so long as the meaning of all visibility events remains
   1.583 +	// independent of the ones before.
   1.584 +	TWsEvent* newEvent = static_cast<TWsEvent*>(aNewEvent);
   1.585 +	if (aOldEvent->Type()==EEventWindowVisibilityChanged && aOldEvent->Handle()==newEvent->Handle())
   1.586 +		{
   1.587 +		aOldEvent->SetTimeNow();
   1.588 +		aOldEvent->VisibilityChanged()->iFlags = newEvent->VisibilityChanged()->iFlags;
   1.589 +		newEvent->SetHandle(NULL);
   1.590 +		}
   1.591 +	return EEventQueueWalkOk;
   1.592 +	}
   1.593 +
   1.594 +void TWindowServerEvent::SendVisibilityChangedEvents(CWsWindowBase* aWin, TUint aFlags)
   1.595 +	{
   1.596 +	CEventQueue *queue=aWin->EventQueue();
   1.597 +	TWsEvent event;
   1.598 +	event.SetType(EEventWindowVisibilityChanged);
   1.599 +	event.SetHandle(aWin->ClientHandle());
   1.600 +	event.SetTimeNow();
   1.601 +	TWsVisibilityChangedEvent* visevent = event.VisibilityChanged();
   1.602 +	visevent->iFlags = aFlags;
   1.603 +	queue->WalkEventQueue(&OverrideVisibilityChangedEvent,&event);
   1.604 +	if (event.Handle()!=NULL)
   1.605 +		{
   1.606 +		queue->QueueEvent(event);
   1.607 +		}
   1.608 +	}
   1.609 +
   1.610 +void TWindowServerEvent::QueueKeyEvent(CWsWindowGroup *aWin, TWsEvent &aEvent, TWservEventPriorities aPriority)
   1.611 +	{
   1.612 +	aEvent.SetTimeNow();
   1.613 +	aWin->EventQueue()->QueueEvent(aEvent, aPriority);
   1.614 +	}
   1.615 +
   1.616 +void TWindowServerEvent::QueueKeyPress(const TKeyData& aKey, TInt aScanCode, CWsWindowGroup* aRepeatFocus, TBool aCheckRepeat,TInt aRepeats)
   1.617 + 	{
   1.618 +	CWsWindowGroup* focusWin=CWsTop::FocusWindowGroup();
   1.619 +	TWsEvent event;
   1.620 +	TKeyEvent& keyEvent=*event.Key();
   1.621 +	keyEvent.iCode=aKey.iKeyCode;
   1.622 +	keyEvent.iScanCode=aScanCode;
   1.623 +	keyEvent.iModifiers=aKey.iModifiers;
   1.624 +	keyEvent.iRepeats=aRepeats;
   1.625 +	if (!aRepeatFocus && CClick::IsHandler())
   1.626 +		CClick::KeyEvent(EEventKey,keyEvent);
   1.627 +	CWsCaptureLongKey* longCapture=NULL;
   1.628 +	if (aCheckRepeat)
   1.629 +		longCapture=CWsCaptureLongKey::CheckForCapture(aKey.iKeyCode, aKey.iModifiers);
   1.630 +	if (aKey.iIsCaptureKey)
   1.631 +		{
   1.632 +		if (aKey.iApp==NULL)	// Captured by Wserv itself
   1.633 +			{
   1.634 +			_LIT(KWSERVDebugLogCapturedKey,"WSERV Captured Key");
   1.635 +			CScreen* focusScreen=CWsTop::CurrentFocusScreen();
   1.636 +			TInt screenNo=focusScreen->ScreenNumber();
   1.637 +			
   1.638 +			if (wsDebugLog)
   1.639 +				wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogCapturedKey);
   1.640 +			CWsHotKey *hotKey=iHotKeys;
   1.641 +			while(hotKey)
   1.642 +				{
   1.643 +				if (hotKey->KeyHandle()==aKey.iHandle)
   1.644 +					{
   1.645 +					switch(hotKey->HotKeyType())
   1.646 +						{
   1.647 +						case EHotKeyEnableLogging:
   1.648 +							CWsTop::EnableLogging();
   1.649 +							break;
   1.650 +						case EHotKeyDisableLogging:
   1.651 +							CWsTop::DisableLogging();
   1.652 +							break;
   1.653 +						case EHotKeyStateDump:
   1.654 +							StateDump();
   1.655 +							break;
   1.656 +						case EHotKeyHeapDump:
   1.657 +							HeapDump();
   1.658 +							break;
   1.659 +						case EHotKeyOfDeath:
   1.660 +							if (!CWsPassword::PasswordModeActive())
   1.661 +								{
   1.662 +								const TBool currentJustInTimeValue=User::JustInTime();
   1.663 +								if (currentJustInTimeValue)
   1.664 +									{
   1.665 +									User::SetJustInTime(EFalse);
   1.666 +									}
   1.667 +								CWsTop::KillForegroundSession();
   1.668 +								if (currentJustInTimeValue)
   1.669 +									{
   1.670 +									User::SetJustInTime(ETrue);
   1.671 +									}
   1.672 +								}
   1.673 +							break;
   1.674 +						case EHotKeyShutDown:
   1.675 +							CWsTop::Exit();
   1.676 +							break;
   1.677 +						case EHotKeyIncContrast:
   1.678 +							focusScreen->IncContrast();
   1.679 +							break;
   1.680 +						case EHotKeyDecContrast:
   1.681 +							focusScreen->DecContrast();
   1.682 +							break;
   1.683 +						case EHotKeyOff:
   1.684 +							CWsTop::HandleSwitchOff(EEventKeySwitchOff,ETrue);
   1.685 +							break;
   1.686 +						case EHotKeyBacklightToggle:
   1.687 +							{
   1.688 +							TInt state;
   1.689 +							if (!ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(screenNo,HALData::EBacklightState,state)))
   1.690 +								ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,!state));
   1.691 +							}
   1.692 +							break;
   1.693 +						case EHotKeyBacklightOn:
   1.694 +							ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,ETrue));
   1.695 +							break;
   1.696 +						case EHotKeyBacklightOff:
   1.697 +							ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(screenNo,HALData::EBacklightState,EFalse));
   1.698 +							break;
   1.699 +						case EHotKeyScreenDimension0:
   1.700 +						case EHotKeyScreenDimension1:
   1.701 +						case EHotKeyScreenDimension2:
   1.702 +						case EHotKeyScreenDimension3:
   1.703 +							focusScreen->doSetScreenMode(hotKey->HotKeyType()-EHotKeyScreenDimension0);
   1.704 +							break;
   1.705 +						case EHotKeyCycleDisplaySize:
   1.706 +							focusScreen->CycleDisplaySize();
   1.707 +							break;
   1.708 +						case EHotKeyCycleOrientation:
   1.709 +							focusScreen->CycleOrientation();
   1.710 +							break;
   1.711 +						case EHotKeyIncBrightness:
   1.712 +							focusScreen->IncBrightness();
   1.713 +							break;
   1.714 +						case EHotKeyDecBrightness:
   1.715 +							focusScreen->DecBrightness();
   1.716 +							break;
   1.717 +						case EHotKeyCycleFocusScreen:
   1.718 +							CWsTop::SetCurrentFocusScreen((CWsTop::CurrentFocusScreen()->ScreenNumber()+1)%CWsTop::NumberOfScreens());
   1.719 +							break;
   1.720 +						}
   1.721 +					return;
   1.722 +					}
   1.723 +				hotKey=hotKey->iNext;
   1.724 +				}
   1.725 +			WS_PANIC_ALWAYS(EWsPanicUnknownCaptureKey);
   1.726 +			return;
   1.727 +			}
   1.728 +		focusWin=((CWsWindowGroup *)aKey.iApp);
   1.729 +		_LIT(KWSERVDebugLogKeyCapturedByApp,"Key captured by app %d");
   1.730 +		if (wsDebugLog)
   1.731 +			wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyCapturedByApp,focusWin->Identifier());
   1.732 +		if (CWsPassword::PasswordModeActive() && focusWin!=CWsPassword::PasswordWindow()->WinGroup())
   1.733 +			return;
   1.734 +		}
   1.735 +	if (aRepeatFocus && aRepeatFocus!=focusWin)
   1.736 +		CKeyboardRepeat::CancelRepeat(NULL);		// Repeat is going to different window so cancel it and don't deliver this key
   1.737 +	else if (focusWin!=NULL && focusWin->CheckForPriorityKey(aKey,aScanCode)==EFalse)
   1.738 +		{
   1.739 +		if (longCapture || (aCheckRepeat && !aRepeatFocus && aKey.iModifiers&EModifierAutorepeatable))
   1.740 +			{
   1.741 +			if (CKeyboardRepeat::StartRepeat(aKey,aScanCode,focusWin,longCapture))
   1.742 +				return;
   1.743 +			}
   1.744 +		event.SetType(EEventKey);
   1.745 +		event.SetHandle(focusWin->ClientHandle());
   1.746 +		if (aRepeats!=0)
   1.747 +			{
   1.748 +			CEventQueue* queue=focusWin->EventQueue();
   1.749 +			queue->Wait();
   1.750 +			const TWsEvent* prev=queue->PeekLastEvent();
   1.751 +			if (prev!=NULL && prev->Type()==EEventKey && prev->Key()->iRepeats>0)
   1.752 +				{
   1.753 +			//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.
   1.754 +				event= *prev;
   1.755 +				event.Key()->iRepeats+=aRepeats;
   1.756 +				queue->UpdateLastEvent(event);
   1.757 +				if (CClick::IsHandler())
   1.758 +					CClick::KeyEvent(EEventKeyRepeat,*event.Key());
   1.759 +				return;
   1.760 +				}
   1.761 +			queue->Signal();
   1.762 +			event.Key()->iRepeats=aRepeats;
   1.763 +			if (CClick::IsHandler())
   1.764 +				CClick::KeyEvent(EEventKeyRepeat,keyEvent);
   1.765 +			}
   1.766 +		QueueKeyEvent(focusWin, event, EEventPriorityLow);
   1.767 +		}
   1.768 +	}
   1.769 +
   1.770 +void TWindowServerEvent::QueueKeyUpDown(const TRawEvent &aRawEvent)
   1.771 + 	{
   1.772 +	CWsWindowGroup *focusWin=CWsCaptureKeyUpsAndDowns::CheckForCapture(aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE, iModifierState);
   1.773 +	if (!focusWin)	// If not captured
   1.774 +		focusWin=CWsTop::FocusWindowGroup();
   1.775 +	TWsEvent event;
   1.776 +	TEventCode type=aRawEvent.Type()==TRawEvent::EKeyUp ? EEventKeyUp : EEventKeyDown;
   1.777 +	event.Key()->iCode=0;
   1.778 +#if defined(__WINS__)
   1.779 +	if (focusWin && !focusWin->WsOwner()->RemoveKeyCode())
   1.780 +		event.Key()->iScanCode=aRawEvent.ScanCode();
   1.781 +	else
   1.782 +#endif
   1.783 +	event.Key()->iScanCode=aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE;
   1.784 +	event.Key()->iModifiers=iModifierState;
   1.785 +	event.Key()->iRepeats=0;
   1.786 +	if (CClick::IsHandler())
   1.787 +		CClick::KeyEvent(type,*event.Key());
   1.788 +	if (focusWin!=NULL)
   1.789 +		{
   1.790 +		event.SetType(type);
   1.791 +		event.SetHandle(focusWin->ClientHandle());
   1.792 +		QueueKeyEvent(focusWin, event, EEventPriorityHigh);
   1.793 +		}
   1.794 +	}
   1.795 +
   1.796 +LOCAL_D void GetPointerEvent(TPointerEvent::TType& aType, const TRawEvent &aRawEvent, TBool& aHandled)
   1.797 +	{
   1.798 +	aHandled=ETrue;
   1.799 +	switch(aRawEvent.Type())
   1.800 +		{
   1.801 +	case TRawEvent::EButton1Down:
   1.802 +		aType=TPointerEvent::EButton1Down;
   1.803 +		break;
   1.804 +	case TRawEvent::EButton1Up:
   1.805 +		aType=TPointerEvent::EButton1Up;
   1.806 +		break;
   1.807 +	case TRawEvent::EButton2Down:
   1.808 +		aType=TPointerEvent::EButton2Down;
   1.809 +		break;
   1.810 +	case TRawEvent::EButton2Up:
   1.811 +		aType=TPointerEvent::EButton2Up;
   1.812 +		break;
   1.813 +	case TRawEvent::EButton3Down:
   1.814 +		aType=TPointerEvent::EButton3Down;
   1.815 +		break;
   1.816 +	case TRawEvent::EButton3Up:
   1.817 +		aType=TPointerEvent::EButton3Up;
   1.818 +		break;
   1.819 +	case TRawEvent::EPointerMove:
   1.820 +		aType=TPointerEvent::EMove;
   1.821 +		break;
   1.822 +	case TRawEvent::EPointerSwitchOn:
   1.823 +		aType=TPointerEvent::ESwitchOn;
   1.824 +		break;
   1.825 +	default:
   1.826 +		aHandled=EFalse;
   1.827 +		}
   1.828 +	}
   1.829 +
   1.830 +TBool TWindowServerEvent::MousePress(const TRawEvent &aRawEvent, const CWsWindowGroup *aGroupWin)
   1.831 +	//
   1.832 +	//Return EFalse if known not to be a Mouse Event
   1.833 +	//
   1.834 +	{
   1.835 +	TBool handled=ETrue;
   1.836 +	TPointerEvent::TType type;
   1.837 +	GetPointerEvent(type, aRawEvent, handled);
   1.838 +	if (handled)
   1.839 +		{
   1.840 +		TPoint xy(aRawEvent.Pos());
   1.841 +		WsPointer::ProcessEvent(type, xy, iKeyTranslator->GetModifierState(), aGroupWin, ETrue);
   1.842 +		}
   1.843 +	return handled;
   1.844 +	}
   1.845 +
   1.846 +LOCAL_D void SendEventToKeyClick(const TRawEvent& aRawEvent)
   1.847 +	{
   1.848 +	switch(aRawEvent.Type())
   1.849 +		{
   1.850 +		case TRawEvent::EKeyDown:
   1.851 +		case TRawEvent::EKeyUp:
   1.852 +			{
   1.853 +			TKeyEvent keyEvent;
   1.854 +			keyEvent.iCode=0;
   1.855 +			keyEvent.iScanCode=aRawEvent.ScanCode();
   1.856 +			keyEvent.iModifiers=0;
   1.857 +			keyEvent.iRepeats=0;
   1.858 +			CClick::KeyEvent(EEventKey,keyEvent);
   1.859 +			}
   1.860 +			break;
   1.861 +		case TRawEvent::EButton1Down:
   1.862 +		case TRawEvent::EButton1Up:
   1.863 +		case TRawEvent::EButton2Down:
   1.864 +		case TRawEvent::EButton2Up:
   1.865 +		case TRawEvent::EButton3Down:
   1.866 +		case TRawEvent::EButton3Up:
   1.867 +		case TRawEvent::EPointerMove:
   1.868 +		case TRawEvent::EPointerSwitchOn:
   1.869 +			{
   1.870 +			TBool handled=ETrue;
   1.871 +			TPointerEvent::TType type;
   1.872 +			GetPointerEvent(type, aRawEvent, handled);
   1.873 +			if (handled)
   1.874 +				{
   1.875 +				TPointerEvent pointerEvent;
   1.876 +				pointerEvent.iType=type;
   1.877 +				pointerEvent.iModifiers=0;
   1.878 +				pointerEvent.iPosition=aRawEvent.Pos();
   1.879 +				pointerEvent.iParentPosition=TPoint(KMinTInt32,KMinTInt32);
   1.880 +				CClick::PointerEvent(pointerEvent.iPosition,pointerEvent);
   1.881 +				}
   1.882 +			}
   1.883 +			break;
   1.884 +		default:
   1.885 +			break;
   1.886 +		}
   1.887 +	}
   1.888 +
   1.889 +void TWindowServerEvent::ProcessRawEvent(const TRawEvent& aRawEvent)
   1.890 +//
   1.891 +// Event has completed.
   1.892 +//
   1.893 +	{
   1.894 +	WS_TRACE_SERVER_PROCESSRAWEVENT();
   1.895 +	TInt count=iEventHandlers->Count();
   1.896 +	TInt ii;
   1.897 +	TBool eventHandled = EFalse;
   1.898 +	iEventHandlerCount++;
   1.899 +	for(ii=0;ii<count;++ii)
   1.900 +		{
   1.901 +		if ((*iEventHandlers)[ii] != NULL && (*iEventHandlers)[ii]->OfferRawEvent(aRawEvent))
   1.902 +			{
   1.903 +			if (CClick::IsHandler())
   1.904 +				{
   1.905 +				SendEventToKeyClick(aRawEvent);
   1.906 +				}
   1.907 +			eventHandled = ETrue;
   1.908 +			break;
   1.909 +			}
   1.910 +		}
   1.911 +	if (--iEventHandlerCount == 0)
   1.912 +		{
   1.913 +		if (ERemovedEventHandlerWhileProcessingRawEvents & iBinaryFlags) // Handler was deleted while previous loop
   1.914 +			{ 
   1.915 +			iBinaryFlags &= ~ERemovedEventHandlerWhileProcessingRawEvents;
   1.916 +			for(ii=count-1;ii>=0;--ii)
   1.917 +				{
   1.918 +				if ((*iEventHandlers)[ii]==NULL) iEventHandlers->Delete(ii);
   1.919 +				}
   1.920 +			}
   1.921 +		}
   1.922 +	if (eventHandled)
   1.923 +		{
   1.924 +		return;
   1.925 +		}
   1.926 +	switch(aRawEvent.Type())
   1.927 +		{
   1.928 +		case TRawEvent::ERedraw:
   1.929 +			CWsTop::RedrawScreens();
   1.930 +			break;
   1.931 +		case TRawEvent::ESwitchOn:
   1.932 +		case TRawEvent::ECaseOpen:
   1.933 +			{
   1.934 +			TInt event=EEventCaseOpened;
   1.935 +			CKeyboardRepeat::CancelRepeat(NULL);
   1.936 +			CWsPassword::SwitchOn();
   1.937 +			if (aRawEvent.Type()==TRawEvent::ESwitchOn)
   1.938 +				{
   1.939 +				UserSvr::WsSwitchOnScreen();
   1.940 +				HAL::Set(HALData::EDisplayState,1);
   1.941 +				event=EEventSwitchOn;
   1.942 +				}
   1.943 +			ProcessEventQueue(iSwitchOnQueue, SendSwitchOnEvent, event, 0);
   1.944 +			break;
   1.945 +			}
   1.946 +		case TRawEvent::ESwitchOff:
   1.947 +		case TRawEvent::ECaseClose:
   1.948 +			{
   1.949 +			TBool switchOff=(aRawEvent.Type()==TRawEvent::ESwitchOff);
   1.950 +			CWsTop::HandleSwitchOff(switchOff? EEventSwitchOff:EEventCaseClosed,switchOff);
   1.951 +			break;
   1.952 +			}
   1.953 +#ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP			
   1.954 +		case TRawEvent::ERestartSystem:
   1.955 +			{ /* restart event being handled */
   1.956 +			CWsTop::HandleSwitchOff(EEventRestartSystem,ETrue);
   1.957 +			break;
   1.958 +			}
   1.959 +#endif			
   1.960 +		case TRawEvent::EInactive:
   1.961 +#ifndef __WINS__
   1.962 +			CWsTop::WindowServer()->AnimationScheduler()->OnInactive();
   1.963 +#endif
   1.964 +			CKeyboardRepeat::CancelRepeat(NULL);
   1.965 +			break;
   1.966 +		case TRawEvent::EActive:
   1.967 +#ifndef __WINS__
   1.968 +			CWsTop::WindowServer()->AnimationScheduler()->OnActive();
   1.969 +#endif
   1.970 +			break;
   1.971 +		case TRawEvent::EKeyDown:
   1.972 +			{
   1.973 +			_LIT(KWSERVDebugLogKeyDownArrival,"Key down arrives %d");
   1.974 +			if(CDebugBar* dbg = CWsTop::Screen()->DebugBar())
   1.975 +				dbg->OnKeyEvent();
   1.976 +			if (wsDebugLog)
   1.977 +				wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyDownArrival,aRawEvent.ScanCode());
   1.978 +			CKeyboardRepeat::KeyDown();
   1.979 +			TKeyData keyData;
   1.980 +			TBool translated=iKeyTranslator->TranslateKey(aRawEvent.ScanCode(), EFalse,*iCaptureKeys,keyData);
   1.981 +			ProcessModifierChanges();
   1.982 +			QueueKeyUpDown(aRawEvent);
   1.983 +			if (translated)
   1.984 +				QueueKeyPress(keyData,aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,ETrue,0);
   1.985 +			}
   1.986 +			break;
   1.987 +		case TRawEvent::EKeyUp:
   1.988 +			{
   1.989 +			_LIT(KWSERVDebugLogKeyUpArrival,"Key up arrives %d");
   1.990 +			if(CDebugBar* dbg = CWsTop::Screen()->DebugBar())
   1.991 +				dbg->OnKeyEvent();
   1.992 +			if (wsDebugLog)
   1.993 +				wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogKeyUpArrival,aRawEvent.ScanCode());
   1.994 +			TKeyData keyData;
   1.995 +			CKeyboardRepeat::KeyUp(aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE);
   1.996 +			TBool translated=iKeyTranslator->TranslateKey(aRawEvent.ScanCode(), ETrue,*iCaptureKeys,keyData);
   1.997 +			ProcessModifierChanges();
   1.998 +			QueueKeyUpDown(aRawEvent);
   1.999 +			if (translated)
  1.1000 +				{
  1.1001 +				CKeyboardRepeat::CancelRepeat(NULL);
  1.1002 +				QueueKeyPress(keyData,aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,EFalse,0);
  1.1003 +				}
  1.1004 +			}
  1.1005 +			break;
  1.1006 +		case TRawEvent::EButton1Down:
  1.1007 +		case TRawEvent::EButton2Down:
  1.1008 +		case TRawEvent::EButton3Down:
  1.1009 +		case TRawEvent::EPointerSwitchOn:
  1.1010 +#ifndef __WINS__
  1.1011 +			CWsTop::WindowServer()->AnimationScheduler()->OnActive();
  1.1012 +#endif
  1.1013 +			// fall through
  1.1014 +		case TRawEvent::EButton1Up:
  1.1015 +		case TRawEvent::EButton2Up:
  1.1016 +		case TRawEvent::EButton3Up:
  1.1017 +		case TRawEvent::EPointerMove:
  1.1018 +			#if defined(_DEBUG)
  1.1019 +				WS_ASSERT_DEBUG(MousePress(aRawEvent,NULL), EWsPanicEventType);
  1.1020 +			#else
  1.1021 +				MousePress(aRawEvent,NULL);
  1.1022 +			#endif
  1.1023 +			break;
  1.1024 +		case TRawEvent::EUpdateModifiers:
  1.1025 +			iKeyTranslator->UpdateModifiers(aRawEvent.Modifiers());
  1.1026 +			break;
  1.1027 +		case TRawEvent::EKeyRepeat:
  1.1028 + 			{
  1.1029 + 			_LIT(KWSERVDebugLogRepeatingKeyArrival,"Repeating key arrives %d");
  1.1030 + 			if (wsDebugLog)
  1.1031 + 				wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVDebugLogRepeatingKeyArrival,aRawEvent.ScanCode());
  1.1032 + 			TKeyData keyData;
  1.1033 + 			keyData.iModifiers=iKeyTranslator->GetModifierState();
  1.1034 +			keyData.iApp=0;
  1.1035 +			keyData.iHandle=0;
  1.1036 +			keyData.iIsCaptureKey=EFalse;
  1.1037 +			keyData.iKeyCode=aRawEvent.ScanCode(); 
  1.1038 +			iCaptureKeys->ProcessCaptureKeys(keyData);
  1.1039 +			QueueKeyPress(keyData, aRawEvent.ScanCode() __REMOVE_WINS_CHARCODE,NULL,EFalse,aRawEvent.Repeats());
  1.1040 + 			}
  1.1041 + 			break;
  1.1042 +		default:
  1.1043 +			break;
  1.1044 +		}
  1.1045 +	}
  1.1046 +
  1.1047 +void TWindowServerEvent::ProcessKeyEvent(const TKeyEvent &aKeyEvent,TInt aRepeats)
  1.1048 +	{
  1.1049 +	TKeyData keyData;
  1.1050 +	keyData.iModifiers=aKeyEvent.iModifiers;
  1.1051 +	keyData.iApp=0;
  1.1052 +	keyData.iHandle=0;
  1.1053 +	keyData.iIsCaptureKey=EFalse;
  1.1054 +	keyData.iKeyCode=aKeyEvent.iCode;
  1.1055 +	if (CKeyboardRepeat::IsAreadyActive())
  1.1056 +		{
  1.1057 +		CKeyboardRepeat::CancelRepeat(NULL);
  1.1058 +		}
  1.1059 +	iCaptureKeys->ProcessCaptureKeys(keyData);
  1.1060 +	QueueKeyPress(keyData,aKeyEvent.iScanCode,NULL,aRepeats==0,aRepeats);
  1.1061 +	}
  1.1062 +
  1.1063 +void TWindowServerEvent::AddCaptureKeyL(const TCaptureKey &aCaptureKey)
  1.1064 +	{
  1.1065 +	iCaptureKeys->AddCaptureKeyL(aCaptureKey,aCaptureKey.iKeyCodePattern.iFiller);
  1.1066 +	}
  1.1067 +
  1.1068 +void TWindowServerEvent::SetCaptureKey(TUint32 aHandle, const TCaptureKey &aCaptureKey)
  1.1069 +	{
  1.1070 +	iCaptureKeys->SetCaptureKey(aHandle, aCaptureKey,aCaptureKey.iKeyCodePattern.iFiller);
  1.1071 +	}
  1.1072 +
  1.1073 +void TWindowServerEvent::CancelCaptureKey(TUint32 aHandle)
  1.1074 +	{
  1.1075 +	iCaptureKeys->CancelCaptureKey(aHandle);
  1.1076 +	}
  1.1077 +
  1.1078 +TInt TWindowServerEvent::GetModifierState()
  1.1079 +	{
  1.1080 +	return(iKeyTranslator->GetModifierState());
  1.1081 +	}
  1.1082 +
  1.1083 +void TWindowServerEvent::SetModifierState(TEventModifier aModifier,TModifierState aState)
  1.1084 +	{
  1.1085 +	iKeyTranslator->SetModifierState(aModifier,aState);
  1.1086 +	}
  1.1087 +
  1.1088 +TInt TWindowServerEvent::AddNotificationHandler(CAnim* aAnim, TUint32 aNotifications)
  1.1089 +	{
  1.1090 +	SNotificationHandler notif;
  1.1091 +	notif.iAnim = aAnim;
  1.1092 +	notif.iNotifications = aNotifications;
  1.1093 +
  1.1094 +	// update the entry if the anim is already in the array
  1.1095 +	TInt count=iNotificationHandlers->Count();
  1.1096 +	TInt ii;
  1.1097 +	for(ii=0;ii<count;++ii)
  1.1098 +		{
  1.1099 +		if ((*iNotificationHandlers)[ii].iAnim==aAnim)
  1.1100 +			{
  1.1101 +			(*iNotificationHandlers)[ii]=notif;
  1.1102 +			return KErrNone;
  1.1103 +			}
  1.1104 +		}
  1.1105 +	
  1.1106 +	// otherwise add it to the array
  1.1107 +	TRAPD(err,iNotificationHandlers->AppendL(notif));
  1.1108 +	return err;
  1.1109 +	}
  1.1110 +
  1.1111 +void TWindowServerEvent::RemoveNotificationHandler(CAnim* aAnim)
  1.1112 +	{
  1.1113 +	TInt count=iNotificationHandlers->Count();
  1.1114 +	TInt ii;
  1.1115 +	for(ii=0;ii<count;++ii)
  1.1116 +		{
  1.1117 +		if ((*iNotificationHandlers)[ii].iAnim==aAnim)
  1.1118 +			{
  1.1119 +			iNotificationHandlers->Delete(ii);
  1.1120 +			return;
  1.1121 +			}
  1.1122 +		}
  1.1123 +	}
  1.1124 +
  1.1125 +void TWindowServerEvent::PublishNotification(const TWsEvent& aWsEvent)
  1.1126 +	{
  1.1127 +	TInt count=iNotificationHandlers->Count();
  1.1128 +	TInt ii;
  1.1129 +	for(ii=0;ii<count;++ii)
  1.1130 +		{
  1.1131 +		SNotificationHandler notif = (*iNotificationHandlers)[ii];
  1.1132 +		switch (aWsEvent.Type())
  1.1133 +			{
  1.1134 +		case EEventDirectScreenAccessBegin:
  1.1135 +		case EEventDirectScreenAccessEnd:
  1.1136 +			if (notif.iNotifications & EDirectScreenAccess)
  1.1137 +				{
  1.1138 +				notif.iAnim->HandleNotification(aWsEvent);
  1.1139 +				}
  1.1140 +			break;
  1.1141 +		case EEventHeartbeatTimerStateChange:
  1.1142 +			if (notif.iNotifications & EHeartbeatTimer)
  1.1143 +				{
  1.1144 +				notif.iAnim->HandleNotification(aWsEvent);
  1.1145 +				}
  1.1146 +			break;
  1.1147 +		case EEventScreenDeviceChanged:
  1.1148 +			if (notif.iNotifications & EScreenDeviceChange)
  1.1149 +				{
  1.1150 +				notif.iAnim->HandleNotification(aWsEvent);
  1.1151 +				}
  1.1152 +			break;
  1.1153 +		default:
  1.1154 +			break;
  1.1155 +			}
  1.1156 +		}
  1.1157 +
  1.1158 +	}
  1.1159 +
  1.1160 +TBool TWindowServerEvent::DrawerCompareFunc(const TDrawerHandler& lhs, const TDrawerHandler& rhs)
  1.1161 +	{
  1.1162 +	return lhs.iDrawer == rhs.iDrawer;	
  1.1163 +	}
  1.1164 +
  1.1165 +TInt TWindowServerEvent::RegisterDrawerHandler(CWsGraphicDrawer* aDrawer, TUint32 aEvents)
  1.1166 +	{
  1.1167 +	TInt idx = iDrawerHandlers->Find(TDrawerHandler(aDrawer, aEvents),
  1.1168 +		TIdentityRelation<TDrawerHandler>(TWindowServerEvent::DrawerCompareFunc));
  1.1169 +	if (idx != KErrNotFound)
  1.1170 +		{
  1.1171 +		// replace event mask for this drawer
  1.1172 +		(*iDrawerHandlers)[idx].iEvents = aEvents;
  1.1173 +		idx = KErrNone;
  1.1174 +		}
  1.1175 +	else
  1.1176 +		idx = iDrawerHandlers->Append(TDrawerHandler(aDrawer,aEvents));
  1.1177 +	
  1.1178 +	return idx;
  1.1179 +	}
  1.1180 +
  1.1181 +TInt TWindowServerEvent::UnregisterDrawerHandler(CWsGraphicDrawer* aDrawer)
  1.1182 +	{
  1.1183 +	TInt idx = iDrawerHandlers->Find(TDrawerHandler(aDrawer,0),
  1.1184 +		TIdentityRelation<TDrawerHandler>(TWindowServerEvent::DrawerCompareFunc));
  1.1185 +	if (idx == KErrNotFound)
  1.1186 +		return idx;
  1.1187 +	(*iDrawerHandlers)[idx].iDrawer = NULL;		//NotifyDrawer() will clean up the array
  1.1188 +	return KErrNone;
  1.1189 +	}
  1.1190 +
  1.1191 +TInt TWindowServerEvent::RegisterWsEventHandler(MWsEventHandler * aHandler, TUint32 aEvents)
  1.1192 +	{
  1.1193 +	TWsEventHandler handler(aHandler, aEvents);
  1.1194 +	TInt idx = iWsEventHandlers.Find(handler, TIdentityRelation<TWsEventHandler>(TWsEventHandler::CompareHandler));
  1.1195 +	if (idx < 0)
  1.1196 +		{
  1.1197 +		TInt err = iWsEventHandlers.Append(handler);
  1.1198 +		return err;
  1.1199 +		}
  1.1200 +	else
  1.1201 +		{
  1.1202 +		iWsEventHandlers[idx].iEvents = aEvents;
  1.1203 +		return KErrNone;
  1.1204 +		}
  1.1205 +	}
  1.1206 +	
  1.1207 +TInt TWindowServerEvent::UnregisterWsEventHandler(MWsEventHandler * aHandler)
  1.1208 +	{
  1.1209 +	TWsEventHandler handler(aHandler, 0);
  1.1210 +	TInt idx = iWsEventHandlers.Find(handler, TIdentityRelation<TWsEventHandler>(TWsEventHandler::CompareHandler));
  1.1211 +	if (idx < 0)
  1.1212 +		return idx;
  1.1213 +	iWsEventHandlers[idx].iEvents = NULL;	//NotifyDrawer() will clean up the array
  1.1214 +	return KErrNone;
  1.1215 +	}
  1.1216 +
  1.1217 +
  1.1218 +void TWindowServerEvent::NotifyDrawer(const TWservCrEvent& aEvent)
  1.1219 +	{
  1.1220 +	TInt drawerCount = iDrawerHandlers->Count();
  1.1221 +	for (TInt idx = 0; idx < drawerCount; idx++)
  1.1222 +		{
  1.1223 +		TDrawerHandler hd = (*iDrawerHandlers)[idx]; 
  1.1224 +		if (!hd.iDrawer) 
  1.1225 +			{                					//If the handler has been removed 
  1.1226 +			iDrawerHandlers->Remove(idx);       //Remove from the array 
  1.1227 +			drawerCount -= 1;   				//Update the counters 
  1.1228 +			idx -= 1; 
  1.1229 +			} 
  1.1230 +		else 
  1.1231 +			{ 
  1.1232 +			if (hd.iEvents & aEvent.Type()) 
  1.1233 +				{ 
  1.1234 +			    hd.iDrawer->HandleEvent(aEvent); 
  1.1235 +			    } 
  1.1236 +			} 
  1.1237 +		}
  1.1238 +	
  1.1239 +	TInt eventHandlerCount = iWsEventHandlers.Count();
  1.1240 +	for (TInt idx = 0; idx < eventHandlerCount; ++idx)
  1.1241 +		{
  1.1242 +		TWsEventHandler* eh = &iWsEventHandlers[idx];
  1.1243 +		if (!eh->iEvents)
  1.1244 +			{								//If the handler has been removed
  1.1245 +			iWsEventHandlers.Remove(idx);	//Remove from the array
  1.1246 +			drawerCount -= 1;				//Update the counters
  1.1247 +			idx -= 1;
  1.1248 +			}
  1.1249 +		else
  1.1250 +			{
  1.1251 +			if (eh->iEvents & aEvent.Type())
  1.1252 +				{
  1.1253 +				eh->iHandler->DoHandleEvent(aEvent);
  1.1254 +				}
  1.1255 +			}
  1.1256 +		}
  1.1257 +	}
  1.1258 +
  1.1259 +void TWindowServerEvent::NotifyScreenDrawingEvent(const TRegion* aRegion)
  1.1260 +	{
  1.1261 +	if (aRegion && !aRegion->IsEmpty())
  1.1262 +		{
  1.1263 +		TWservCrEvent event(TWservCrEvent::EScreenDrawing,0,const_cast<TRegion*>(aRegion));
  1.1264 +		NotifyDrawer(event);
  1.1265 +		}
  1.1266 +	}
  1.1267 +
  1.1268 +void TWindowServerEvent::NotifyScreenDrawingEvent(const TRect& aRect)
  1.1269 +	{
  1.1270 +	TRegionFix<1> reg(aRect);
  1.1271 +	TWservCrEvent event(TWservCrEvent::EScreenDrawing,0,&reg);
  1.1272 +	NotifyDrawer(event);
  1.1273 +	}
  1.1274 +
  1.1275 +//
  1.1276 +// CRawEventReceiver //
  1.1277 +//
  1.1278 +
  1.1279 +CRawEventReceiver::CRawEventReceiver(TInt aPriority) : CActive(aPriority)
  1.1280 +//
  1.1281 +// Constructor
  1.1282 +//
  1.1283 +	{
  1.1284 +	__DECLARE_NAME(_S("CRawEventReceiver"));
  1.1285 +	}
  1.1286 +
  1.1287 +CRawEventReceiver::~CRawEventReceiver()
  1.1288 +	{
  1.1289 +	CActive::Cancel();
  1.1290 +	}
  1.1291 +
  1.1292 +void CRawEventReceiver::ConstructL()
  1.1293 +	{
  1.1294 +	CActiveScheduler::Add(this);
  1.1295 +	UserSvr::CaptureEventHook();
  1.1296 +	Request();
  1.1297 +	}
  1.1298 +
  1.1299 +void CRawEventReceiver::Request()
  1.1300 +//
  1.1301 +// Issue a request for the next event.
  1.1302 +//
  1.1303 +	{
  1.1304 +	UserSvr::RequestEvent(iEventBuf,iStatus);
  1.1305 +	SetActive();
  1.1306 +	}
  1.1307 +
  1.1308 +void CRawEventReceiver::DoCancel()
  1.1309 +//
  1.1310 +// Cancel a pending event.
  1.1311 +//
  1.1312 +	{
  1.1313 +	UserSvr::RequestEventCancel();
  1.1314 +	}
  1.1315 +
  1.1316 +void CRawEventReceiver::RunL()
  1.1317 +	{
  1.1318 +//__PROFILE_START(11);
  1.1319 +	if (WsPointer::PreProcessEvent(iEventBuf.Event()
  1.1320 +#if defined(__WINS__)
  1.1321 +													,ETrue
  1.1322 +#endif
  1.1323 +														  ))
  1.1324 +		TWindowServerEvent::ProcessRawEvent(iEventBuf.Event());
  1.1325 +	Request();
  1.1326 +//__PROFILE_END(11);
  1.1327 +	}
  1.1328 +
  1.1329 +//
  1.1330 +// TEventRequestQueue //
  1.1331 +//
  1.1332 +
  1.1333 +TEventRequestQueue::TEventRequestQueue() : iQueue(_FOFF(TEventRequestItem,iQue))
  1.1334 +	{}
  1.1335 +
  1.1336 +inline TSglQue<TEventRequestItem> &TEventRequestQueue::Queue()
  1.1337 +	{return(iQueue);}
  1.1338 +
  1.1339 +TEventRequestItem *TEventRequestQueue::FindInEventRequestQueueList(const CWsWindowBase &aWindow)
  1.1340 +//
  1.1341 +// Return a pointer to the link in the queue for the window, or NULL if not in the queue
  1.1342 +//
  1.1343 +	{
  1.1344 +	TSglQueIter<TEventRequestItem> iter(iQueue);
  1.1345 +	TEventRequestItem *qPtr;
  1.1346 +	while((qPtr=iter++)!=NULL)
  1.1347 +		if (qPtr->iWindow==&aWindow)
  1.1348 +			break;
  1.1349 +	return(qPtr);
  1.1350 +	}
  1.1351 +
  1.1352 +void TEventRequestQueue::AddToEventRequestListL(const CWsWindowBase &aWindow, TInt aParam, TEventControl aCircumstances)
  1.1353 +//
  1.1354 +// Add a link to the on event list
  1.1355 +//
  1.1356 +	{
  1.1357 +	TEventRequestItem *item=FindInEventRequestQueueList(aWindow);
  1.1358 +	if (!item)
  1.1359 +		{
  1.1360 +		item=new(ELeave) TEventRequestItem;
  1.1361 +		item->iWindow= &aWindow;
  1.1362 +		item->iParam=aParam;
  1.1363 +		item->iCircumstances=aCircumstances;
  1.1364 +		iQueue.AddFirst(*item);
  1.1365 +		}
  1.1366 +	item->iCircumstances=aCircumstances;
  1.1367 +	item->iParam=aParam;	// Just update the parameter if already exists
  1.1368 +	}
  1.1369 +
  1.1370 +void TEventRequestQueue::RemoveFromEventRequestListL(const CWsWindowBase &aWindow)
  1.1371 +//
  1.1372 +// Remove a link from the on event list
  1.1373 +//
  1.1374 +	{
  1.1375 +	TEventRequestItem *qPtr=FindInEventRequestQueueList(aWindow);
  1.1376 +	if (qPtr)
  1.1377 +		{
  1.1378 +		iQueue.Remove(*qPtr);
  1.1379 +		delete qPtr;
  1.1380 +		}
  1.1381 +	}
  1.1382 +
  1.1383 +//
  1.1384 +// Keyboard auto repeat class //
  1.1385 +//
  1.1386 +
  1.1387 +CKeyboardRepeat::CKeyboardRepeat() : CTimer(EKeyRepeatPriority)
  1.1388 +	{}
  1.1389 +
  1.1390 +void CKeyboardRepeat::NewL()
  1.1391 +	{
  1.1392 +	iThis=new(ELeave) CKeyboardRepeat();
  1.1393 +	iThis->ConstructL();
  1.1394 +	CActiveScheduler::Add(iThis);
  1.1395 +	_LIT(KWSERVIniFileVarRepeatRollover,"REPEATROLLOVER");
  1.1396 +	WsIniFile->FindVar(KWSERVIniFileVarRepeatRollover,iRepeatRollover);
  1.1397 +	}
  1.1398 +
  1.1399 +void CKeyboardRepeat::Destroy()
  1.1400 +	{
  1.1401 +	delete iThis;
  1.1402 +	}
  1.1403 +
  1.1404 +void CKeyboardRepeat::GetRepeatTime(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime)
  1.1405 +	{
  1.1406 +	aInitialTime=iInitialTime;
  1.1407 +	aTime=iTime;
  1.1408 +	}
  1.1409 +
  1.1410 +void CKeyboardRepeat::SetRepeatTime(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
  1.1411 +	{
  1.1412 +	iInitialTime=aInitialTime;
  1.1413 +	iTime=aTime;
  1.1414 +	}
  1.1415 +
  1.1416 +void CKeyboardRepeat::RunL()
  1.1417 +	{
  1.1418 +	User::ResetInactivityTime();
  1.1419 +	//WS_ASSERT_DEBUG(iRepeating!=ERepeatNone, EWsPanicTemp);
  1.1420 +	TBool timer=ETrue;
  1.1421 +	if (iRepeating>=ERepeatLong)
  1.1422 +		{
  1.1423 +		// Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
  1.1424 +		if (iLongCapture)
  1.1425 +			{
  1.1426 +			iCurrentRepeat.iKey.iApp=REINTERPRET_CAST(TUint32,iLongCapture->iWindowGroup);
  1.1427 +			iCurrentRepeat.iKey.iHandle=0;
  1.1428 +			iCurrentRepeat.iKey.iIsCaptureKey=ETrue;
  1.1429 +			iCurrentRepeat.iKey.iKeyCode=iLongCapture->iData.outputKey;
  1.1430 +			timer=iLongCapture->iData.flags&ELongCaptureRepeatEvents;
  1.1431 +			iRepeating=ERepeatLongRepeated;
  1.1432 +			}
  1.1433 +		else
  1.1434 +			{
  1.1435 +			// Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
  1.1436 +			// Stop key repeat if this incorrect condition occurs
  1.1437 +			timer=EFalse; 
  1.1438 +			}		
  1.1439 +		}
  1.1440 +	if (timer)
  1.1441 +		After(iTime);
  1.1442 +	else
  1.1443 +		iRepeating=ERepeatNone;
  1.1444 +	TWindowServerEvent::QueueKeyPress(iCurrentRepeat.iKey,iCurrentRepeat.iScanCode,iFocus,EFalse,1);
  1.1445 +	}
  1.1446 +
  1.1447 +TBool CKeyboardRepeat::StartRepeat(const TKeyData &aKey, TInt aScanCode, CWsWindowGroup *aRepeatFocus, CWsCaptureLongKey* aLongCapture)
  1.1448 +	{
  1.1449 +	TTimeIntervalMicroSeconds32 time;
  1.1450 +	TBool ret=EFalse;
  1.1451 +	iCurrentRepeat.iScanCode=aScanCode;
  1.1452 +	iCurrentRepeat.iKey=aKey;
  1.1453 +	iFocus=aRepeatFocus;
  1.1454 +	if (aLongCapture)
  1.1455 +		{
  1.1456 +		iLongCapture=aLongCapture;
  1.1457 +		iRepeating=ERepeatLong;
  1.1458 +		time=aLongCapture->iData.delay;
  1.1459 +		ret=!(aLongCapture->iData.flags&ELongCaptureShortEventImmediately);
  1.1460 +		}
  1.1461 +	else
  1.1462 +		{
  1.1463 +		iRepeating=ERepeatNormal;
  1.1464 +		time=iInitialTime;
  1.1465 +		}
  1.1466 +	iThis->After(time);
  1.1467 +	return ret;
  1.1468 +	}
  1.1469 +
  1.1470 +void CKeyboardRepeat::doCancelRepeat()
  1.1471 +	{
  1.1472 +	iRepeating=ERepeatNone;
  1.1473 +	iThis->Cancel();
  1.1474 +	}
  1.1475 +
  1.1476 +void CKeyboardRepeat::CancelRepeat(CWsWindowGroup *aRepeatFocus)
  1.1477 +	{
  1.1478 +	if (aRepeatFocus==NULL || aRepeatFocus==iFocus)
  1.1479 +		{
  1.1480 +		if (iRepeating)
  1.1481 +			doCancelRepeat();
  1.1482 +		iAlternateRepeatExists=EFalse;
  1.1483 +		}
  1.1484 +	else if (iRepeating >= ERepeatLong)
  1.1485 +		{
  1.1486 +		// Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
  1.1487 +		if (iLongCapture && iLongCapture->iWindowGroup == aRepeatFocus)
  1.1488 +			{
  1.1489 +			doCancelRepeat();
  1.1490 +			iAlternateRepeatExists=EFalse;
  1.1491 +			}
  1.1492 +		}
  1.1493 +	}
  1.1494 +
  1.1495 +void CKeyboardRepeat::CancelRepeat(CWsWindowGroup *aRepeatFocus,TUint aScanCode,TBool aLongCaptureFlag,TUint aModifiers)
  1.1496 +	{
  1.1497 +	// aLongCaptureFlag indicates if CancelRepeat caused by call to CancelCaptureLongKey()
  1.1498 +	if (aLongCaptureFlag)
  1.1499 +		{
  1.1500 +		// long capture key is cancelled
  1.1501 +		if (iRepeating >= ERepeatLong && iCurrentRepeat.iScanCode==aScanCode)			
  1.1502 +				{
  1.1503 +				// Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong
  1.1504 +				if (iLongCapture && aRepeatFocus == iLongCapture->iWindowGroup &&
  1.1505 +					(aModifiers & iLongCapture->iData.modifierMask) == iLongCapture->iData.modifiers)
  1.1506 +					{
  1.1507 +					doCancelRepeat();
  1.1508 +					iAlternateRepeatExists=EFalse;
  1.1509 +					}
  1.1510 +				}
  1.1511 +		}
  1.1512 +	else
  1.1513 +		{
  1.1514 +		// normal capture key is cancelled
  1.1515 +		if (aRepeatFocus==iFocus)
  1.1516 +			{
  1.1517 +			if (iRepeating>=ERepeatNormal && iCurrentRepeat.iScanCode==aScanCode)
  1.1518 +				{
  1.1519 +				doCancelRepeat();
  1.1520 +				}
  1.1521 +			iAlternateRepeatExists=EFalse;
  1.1522 +			}
  1.1523 +		}
  1.1524 +	}
  1.1525 +	
  1.1526 +void CKeyboardRepeat::KeyDown()
  1.1527 +	{
  1.1528 +	if (iRepeating!=ERepeatNone)
  1.1529 +		{
  1.1530 +		if (iRepeating==ERepeatNormal && iRepeatRollover>0) // 1 Allow key repeat rollover
  1.1531 +			{
  1.1532 +			iAlternateRepeat=iCurrentRepeat;
  1.1533 +			iAlternateRepeatExists=ETrue;
  1.1534 +			}
  1.1535 +		doCancelRepeat();
  1.1536 +		}
  1.1537 +	}
  1.1538 +
  1.1539 +void CKeyboardRepeat::KeyUp(TInt aScanCode)
  1.1540 +	{
  1.1541 +	if (iAlternateRepeatExists && iAlternateRepeat.iScanCode==aScanCode)
  1.1542 +		iAlternateRepeatExists=EFalse;
  1.1543 +	if (iRepeating!=ERepeatNone && iCurrentRepeat.iScanCode==aScanCode)
  1.1544 +		{
  1.1545 +		if (iRepeating==ERepeatLong)
  1.1546 +			{
  1.1547 +			// Defensive programming - iLongCapture should never be NULL if iRepeating >= ERepeatLong		
  1.1548 +			if (iLongCapture && !(iLongCapture->iData.flags&ELongCaptureShortEventImmediately))
  1.1549 +				{
  1.1550 +				TWindowServerEvent::QueueKeyPress(iCurrentRepeat.iKey,iCurrentRepeat.iScanCode,NULL,EFalse,0);
  1.1551 +				}
  1.1552 +			}
  1.1553 +		if (iAlternateRepeatExists)
  1.1554 +			{
  1.1555 +			iAlternateRepeatExists=EFalse;
  1.1556 +			iCurrentRepeat=iAlternateRepeat;
  1.1557 +			iRepeating=ERepeatNormal;
  1.1558 +			}
  1.1559 +		else
  1.1560 +			doCancelRepeat();
  1.1561 +		}
  1.1562 +	}
  1.1563 +
  1.1564 +//
  1.1565 +// CWsHotKey //
  1.1566 +//
  1.1567 +
  1.1568 +CWsHotKey::CWsHotKey(TInt aHotKeyType, TBool aIsDefault) : 
  1.1569 +	iHotKeyType(aHotKeyType),
  1.1570 +	iIsDefault(aIsDefault)
  1.1571 +	{
  1.1572 +	}
  1.1573 +
  1.1574 +CWsHotKey::~CWsHotKey()
  1.1575 +	{
  1.1576 +	delete iCaptureKey;
  1.1577 +	}
  1.1578 +
  1.1579 +void CWsHotKey::ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey)
  1.1580 +	{
  1.1581 +	CleanupStack::PushL(this);
  1.1582 +	iCaptureKey=new(ELeave) CWsCaptureKey(NULL);
  1.1583 +	iCaptureKey->ConstructL(aCaptureKey);
  1.1584 +	CleanupStack::Pop();
  1.1585 +	}
  1.1586 +
  1.1587 +void CWsHotKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
  1.1588 +	{
  1.1589 +	iCaptureKey->SetL(aCaptureKey);
  1.1590 +	}
  1.1591 +
  1.1592 +