Update contrib.
1 // Copyright (c) 1995-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.
16 // Capture key & hot key classes
20 #include "windowgroup.h"
24 _LIT(KWsProtectedKey, "PROTECTEDKEY");
25 _LIT(KWsProtectedWindowName, "PROTECTEDKEYWINDOWNAME");
27 TPriQue<CWsCaptureKeyUpsAndDowns> CWsCaptureKeyUpsAndDowns::iCaptureKeysUpsAndDowns(_FOFF(CWsCaptureKeyUpsAndDowns,iLink));
28 TPriQue<CWsCaptureLongKey> CWsCaptureLongKey::iCaptureLongKeys(_FOFF(CWsCaptureLongKey,iLink));
33 CWsCaptureKey::CWsCaptureKey(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY), iWindowGroup(aGroupWin)
36 CWsCaptureKey::~CWsCaptureKey()
38 TWindowServerEvent::CancelCaptureKey((TUint32)this);
41 void CWsCaptureKey::CmdToParams(const TWsWinCmdCaptureKey &aCaptureKey, TCaptureKey &aParams)
43 aParams.iModifiers.iMask=aCaptureKey.modifierMask;
44 aParams.iModifiers.iValue=aCaptureKey.modifiers;
45 aParams.iKeyCodePattern.iKeyCode=(TInt16)aCaptureKey.key;
46 aParams.iKeyCodePattern.iPattern=EMatchKey;
47 aParams.iKeyCodePattern.iFiller=STATIC_CAST(TUint8,aCaptureKey.priority);
48 aParams.iApp=(TUint32)iWindowGroup;
49 aParams.iHandle=(TUint32)this;
52 void CheckProtectedKeyL(CWsWindowGroup* aWindowGroup,const TWsWinCmdCaptureKey &aCaptureKey)
54 //The key specified in the WSINI file with the keyword: PROTECTEDKEY can only be captured
55 //by a group window with name specified with the PROTECTEDKEYWINDOWNAME keyword.
57 if(WsIniFile->FindVar(KWsProtectedKey,protectedKey))
59 if (aCaptureKey.key == (TUint)protectedKey)
61 if (aWindowGroup->GroupName()==NULL)
63 User::Leave(KErrPermissionDenied);
66 TPtrC wsProtectedWindowName;
67 WsIniFile->FindVar(KWsProtectedWindowName,wsProtectedWindowName);
68 if (aWindowGroup->GroupName()->Find(wsProtectedWindowName)==KErrNotFound)
70 User::Leave(KErrPermissionDenied);
76 void CWsCaptureKey::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
78 CheckProtectedKeyL(iWindowGroup, aCaptureKey);
81 CmdToParams(aCaptureKey, params);
82 TWindowServerEvent::AddCaptureKeyL(params);
85 void CWsCaptureKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
88 CmdToParams(aCaptureKey, params);
89 TWindowServerEvent::SetCaptureKey((TUint32)this, params);
92 void CWsCaptureKey::CommandL(TInt , const TAny *)
97 /*CWsCaptureKeyUpsAndDowns*/
99 CWsCaptureKeyUpsAndDowns::CWsCaptureKeyUpsAndDowns(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY_UPDOWNS), iWindowGroup(aGroupWin)
102 CWsCaptureKeyUpsAndDowns::~CWsCaptureKeyUpsAndDowns()
107 void CWsCaptureKeyUpsAndDowns::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
109 CheckProtectedKeyL(iWindowGroup, aCaptureKey);
111 iModifierMask=aCaptureKey.modifierMask;
112 iModifierValue=aCaptureKey.modifiers;
113 iScanCode=aCaptureKey.key;
114 iLink.iPriority=aCaptureKey.priority + 1;
115 iCaptureKeysUpsAndDowns.Add(*this);
119 void CWsCaptureKeyUpsAndDowns::CommandL(TInt , const TAny *)
123 CWsWindowGroup *CWsCaptureKeyUpsAndDowns::CheckForCapture(TUint aScanCode, TUint aModifiers)
125 TDblQueIter<CWsCaptureKeyUpsAndDowns> iter(iCaptureKeysUpsAndDowns);
126 CWsCaptureKeyUpsAndDowns* cap;
127 while ((cap=iter++)!=NULL)
129 if (cap->iScanCode==aScanCode && (aModifiers&cap->iModifierMask)==cap->iModifierValue)
130 return(cap->iWindowGroup);
136 /*CWsCaptureLongKey*/
138 CWsCaptureLongKey::CWsCaptureLongKey(CWsWindowGroup *aGroupWin)
139 :CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_LONG_KEY), iWindowGroup(aGroupWin)
142 CWsCaptureLongKey::~CWsCaptureLongKey()
147 void CWsCaptureLongKey::ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey)
151 if (iData.delay.Int()<0)
153 TTimeIntervalMicroSeconds32 time;
154 CKeyboardRepeat::GetRepeatTime(iData.delay,time);
156 iLink.iPriority=iData.priority + 1;
157 iCaptureLongKeys.Add(*this);
161 void CWsCaptureLongKey::CommandL(TInt , const TAny *)
165 CWsCaptureLongKey* CWsCaptureLongKey::CheckForCapture(TUint aKeyCode, TInt aModifiers)
167 TDblQueIter<CWsCaptureLongKey> iter(iCaptureLongKeys);
168 CWsCaptureLongKey* longCapture;
169 while ((longCapture=iter++)!=NULL)
171 if (aKeyCode==longCapture->iData.inputKey && (aModifiers&longCapture->iData.modifierMask)==longCapture->iData.modifiers)