Update contrib.
1 // Copyright (c) 1995-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Capture key & hot key classes
20 #include "windowgroup.h"
24 _LIT(KWsProtectedKey, "PROTECTEDKEY");
25 _LIT(KWsProtectedWindowName, "PROTECTEDKEYWINDOWNAME");
30 CWsCaptureKey::CWsCaptureKey(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY), iWindowGroup(aGroupWin)
33 CWsCaptureKey::~CWsCaptureKey()
35 TWindowServerEvent::CancelCaptureKey(ECaptureTypeKey, this);
39 Convert a window server key capture command to a capture request for the
42 @param aCaptureKey Input capture command
43 @param aRequest Output capture request
45 void CWsCaptureKey::CmdToRequest(const TWsWinCmdCaptureKey &aCaptureKey, TKeyCaptureRequest &aRequest)
47 aRequest.iType = ECaptureTypeKey;
48 aRequest.iModifierMask = aCaptureKey.modifierMask;
49 aRequest.iModifiers = aCaptureKey.modifiers;
50 aRequest.iInputCode = aCaptureKey.key;
51 aRequest.iOutputCode = aCaptureKey.key;
52 aRequest.iPriority = aCaptureKey.priority;
53 aRequest.iWindowGroup = iWindowGroup;
54 aRequest.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
55 aRequest.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
56 aRequest.iHandle = this;
60 Check for protected key in a capture command
62 @param aWindowGroup Window Group of capture request
63 @param aCaptureKey Key capture command
65 @leave KErrPermissionDenied Capture key is protected
67 void CheckProtectedKeyL(CWsWindowGroup* aWindowGroup,const TWsWinCmdCaptureKey &aCaptureKey)
69 //The key specified in the WSINI file with the keyword: PROTECTEDKEY can only be captured
70 //by a group window with name specified with the PROTECTEDKEYWINDOWNAME keyword.
72 if(WsIniFile->FindVar(KWsProtectedKey,protectedKey))
74 if (aCaptureKey.key == static_cast<TUint>(protectedKey))
76 if (aWindowGroup->GroupName()==NULL)
78 User::Leave(KErrPermissionDenied);
81 TPtrC wsProtectedWindowName;
82 WsIniFile->FindVar(KWsProtectedWindowName,wsProtectedWindowName);
83 if (aWindowGroup->GroupName()->Find(wsProtectedWindowName)==KErrNotFound)
85 User::Leave(KErrPermissionDenied);
92 Construct a capture object for normal key events and make a capture request
93 to the key routing plug-in.
95 @param aCaptureKey Key capture command from RWindowGroup::CaptureKey(),
96 RWsSession::SetHotKey() or default hot key settings.
98 void CWsCaptureKey::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
100 CheckProtectedKeyL(iWindowGroup, aCaptureKey);
103 TKeyCaptureRequest request;
104 CmdToRequest(aCaptureKey, request);
105 TWindowServerEvent::AddCaptureKeyL(request);
109 Make a capture request update for normal key events to the key routing plug-in.
111 @param aCaptureKey Key capture command from CWsHotKey::SetL()
113 Note: this function is used only to disable hot key capture requests or to
114 reset them to their defaults.
116 void CWsCaptureKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
118 TKeyCaptureRequest request;
119 CmdToRequest(aCaptureKey, request);
120 TWindowServerEvent::UpdateCaptureKeyL(request);
123 void CWsCaptureKey::CommandL(TInt , const TAny *)
128 /*CWsCaptureKeyUpsAndDowns*/
130 CWsCaptureKeyUpsAndDowns::CWsCaptureKeyUpsAndDowns(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY_UPDOWNS), iWindowGroup(aGroupWin)
133 CWsCaptureKeyUpsAndDowns::~CWsCaptureKeyUpsAndDowns()
135 TWindowServerEvent::CancelCaptureKey(ECaptureTypeKeyUpDown, this);
139 Construct a capture object for up/down key events and make a capture request
140 to the key routing plug-in.
142 @param aCaptureKey Key capture command from
143 RWindowGroup::CaptureKeyUpAndDowns().
145 void CWsCaptureKeyUpsAndDowns::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
147 CheckProtectedKeyL(iWindowGroup, aCaptureKey);
150 TKeyCaptureRequest request;
151 request.iType = ECaptureTypeKeyUpDown;
152 request.iInputCode = aCaptureKey.key;
153 request.iOutputCode = aCaptureKey.key;
154 request.iModifiers = aCaptureKey.modifiers;
155 request.iModifierMask = aCaptureKey.modifierMask;
156 request.iPriority = aCaptureKey.priority;
157 request.iWindowGroup = iWindowGroup;
158 request.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
159 request.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
160 request.iHandle = this;
161 TWindowServerEvent::AddCaptureKeyL(request);
164 void CWsCaptureKeyUpsAndDowns::CommandL(TInt , const TAny *)
169 /*CWsCaptureLongKey*/
171 CWsCaptureLongKey::CWsCaptureLongKey(CWsWindowGroup *aGroupWin)
172 :CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_LONG_KEY), iWindowGroup(aGroupWin)
175 CWsCaptureLongKey::~CWsCaptureLongKey()
177 TWindowServerEvent::CancelCaptureKey(ECaptureTypeLongKey, this);
181 Construct a capture object for long key events and make a capture request
182 to the key routing plug-in.
184 @param aCaptureKey Key capture command from RWindowGroup::CaptureLongKey()
186 void CWsCaptureLongKey::ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey)
189 iFlags = aCaptureKey.flags;
190 iDelay = aCaptureKey.delay;
191 if (iDelay.Int() < 0)
193 TTimeIntervalMicroSeconds32 time;
194 CKeyboardRepeat::GetRepeatTime(iDelay, time);
197 TKeyCaptureRequest request;
198 request.iType = ECaptureTypeLongKey;
199 request.iInputCode = aCaptureKey.inputKey;
200 request.iOutputCode = aCaptureKey.outputKey;
201 request.iModifiers = aCaptureKey.modifiers;
202 request.iModifierMask = aCaptureKey.modifierMask;
203 request.iPriority = aCaptureKey.priority;
204 request.iWindowGroup = iWindowGroup;
205 request.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
206 request.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
207 request.iHandle = this;
208 TWindowServerEvent::AddCaptureKeyL(request);
211 void CWsCaptureLongKey::CommandL(TInt , const TAny *)