os/graphics/windowing/windowserver/nga/SERVER/PRIKEY.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1996-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Window server priority key queue handling
    15 // 
    16 //
    17 
    18 #include "PRIKEY.H"
    19 
    20 
    21 CPriorityKey::CPriorityKey(CWsClient *aOwner) : CEventBase(aOwner)
    22 	{
    23 	__DECLARE_NAME(_S("CPriorityKey"));
    24 	}
    25 
    26 void CPriorityKey::PriorityKey(TInt aHandle, const TKeyEvent &aKeyEvent)
    27 //
    28 // Called when a priority key is pressed
    29 //
    30 	{
    31 	if (!iEventMsg.IsNull())
    32 		{
    33 		iPriorityKeyHandle=aHandle;
    34 		iPriorityKey = aKeyEvent;
    35 		SignalEvent();
    36 		}
    37 	}
    38 
    39 void CPriorityKey::GetData()
    40 //
    41 // If there is an outstanding abort event in the queue, reply with it's data, else send a null abort event
    42 //
    43 	{
    44 	TWsPriorityKeyEvent event;
    45 	*event.Key() = iPriorityKey;
    46 	event.Key()->iRepeats = 0;
    47 	event.SetHandle(iPriorityKeyHandle);
    48 	CEventBase::GetData(&event,sizeof(event));
    49 	iPriorityKeyHandle=0;
    50 	}
    51 
    52 TPriorityKey::TPriorityKey(TUint aKeycode,TUint aModifierMask,TUint aModifiers,TPriorityKey *aPriorityKeys) :
    53 	iNext(aPriorityKeys),
    54 	iKeyCode(aKeycode),
    55 	iModifiers(aModifiers),
    56 	iModifierMask(aModifierMask)
    57 	{}
    58 
    59 TInt TPriorityKey::Equals(TUint aKeycode,TUint aModifierMask,TUint aModifiers)
    60 	{
    61 	return(iKeyCode==aKeycode && iModifierMask==aModifierMask && iModifiers==aModifiers);
    62 	}
    63 
    64 TInt TPriorityKey::KeyMatches(const TKeyEvent &aKeyEvent)
    65 	{
    66 	return(iKeyCode == aKeyEvent.iCode && (iModifierMask & aKeyEvent.iModifiers) == iModifiers);
    67 	}