sl@0
|
1 |
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// Capture key & hot key classes
|
sl@0
|
17 |
//
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "server.h"
|
sl@0
|
20 |
#include "windowgroup.h"
|
sl@0
|
21 |
#include "EVENT.H"
|
sl@0
|
22 |
#include "inifile.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
_LIT(KWsProtectedKey, "PROTECTEDKEY");
|
sl@0
|
25 |
_LIT(KWsProtectedWindowName, "PROTECTEDKEYWINDOWNAME");
|
sl@0
|
26 |
|
sl@0
|
27 |
TPriQue<CWsCaptureKeyUpsAndDowns> CWsCaptureKeyUpsAndDowns::iCaptureKeysUpsAndDowns(_FOFF(CWsCaptureKeyUpsAndDowns,iLink));
|
sl@0
|
28 |
TPriQue<CWsCaptureLongKey> CWsCaptureLongKey::iCaptureLongKeys(_FOFF(CWsCaptureLongKey,iLink));
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
/*CWsCaptureKey*/
|
sl@0
|
32 |
|
sl@0
|
33 |
CWsCaptureKey::CWsCaptureKey(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY), iWindowGroup(aGroupWin)
|
sl@0
|
34 |
{}
|
sl@0
|
35 |
|
sl@0
|
36 |
CWsCaptureKey::~CWsCaptureKey()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
TWindowServerEvent::CancelCaptureKey((TUint32)this);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
void CWsCaptureKey::CmdToParams(const TWsWinCmdCaptureKey &aCaptureKey, TCaptureKey &aParams)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
aParams.iModifiers.iMask=aCaptureKey.modifierMask;
|
sl@0
|
44 |
aParams.iModifiers.iValue=aCaptureKey.modifiers;
|
sl@0
|
45 |
aParams.iKeyCodePattern.iKeyCode=(TInt16)aCaptureKey.key;
|
sl@0
|
46 |
aParams.iKeyCodePattern.iPattern=EMatchKey;
|
sl@0
|
47 |
aParams.iKeyCodePattern.iFiller=STATIC_CAST(TUint8,aCaptureKey.priority);
|
sl@0
|
48 |
aParams.iApp=(TUint32)iWindowGroup;
|
sl@0
|
49 |
aParams.iHandle=(TUint32)this;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
void CheckProtectedKeyL(CWsWindowGroup* aWindowGroup,const TWsWinCmdCaptureKey &aCaptureKey)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
//The key specified in the WSINI file with the keyword: PROTECTEDKEY can only be captured
|
sl@0
|
55 |
//by a group window with name specified with the PROTECTEDKEYWINDOWNAME keyword.
|
sl@0
|
56 |
TInt protectedKey;
|
sl@0
|
57 |
if(WsIniFile->FindVar(KWsProtectedKey,protectedKey))
|
sl@0
|
58 |
{
|
sl@0
|
59 |
if (aCaptureKey.key == (TUint)protectedKey)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
if (aWindowGroup->GroupName()==NULL)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
TPtrC wsProtectedWindowName;
|
sl@0
|
67 |
WsIniFile->FindVar(KWsProtectedWindowName,wsProtectedWindowName);
|
sl@0
|
68 |
if (aWindowGroup->GroupName()->Find(wsProtectedWindowName)==KErrNotFound)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
}
|
sl@0
|
73 |
}
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
void CWsCaptureKey::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
CheckProtectedKeyL(iWindowGroup, aCaptureKey);
|
sl@0
|
79 |
NewObjL();
|
sl@0
|
80 |
TCaptureKey params;
|
sl@0
|
81 |
CmdToParams(aCaptureKey, params);
|
sl@0
|
82 |
TWindowServerEvent::AddCaptureKeyL(params);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
void CWsCaptureKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TCaptureKey params;
|
sl@0
|
88 |
CmdToParams(aCaptureKey, params);
|
sl@0
|
89 |
TWindowServerEvent::SetCaptureKey((TUint32)this, params);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
void CWsCaptureKey::CommandL(TInt , const TAny *)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
/*CWsCaptureKeyUpsAndDowns*/
|
sl@0
|
98 |
|
sl@0
|
99 |
CWsCaptureKeyUpsAndDowns::CWsCaptureKeyUpsAndDowns(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY_UPDOWNS), iWindowGroup(aGroupWin)
|
sl@0
|
100 |
{}
|
sl@0
|
101 |
|
sl@0
|
102 |
CWsCaptureKeyUpsAndDowns::~CWsCaptureKeyUpsAndDowns()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
iLink.Deque();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
void CWsCaptureKeyUpsAndDowns::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
CheckProtectedKeyL(iWindowGroup, aCaptureKey);
|
sl@0
|
110 |
NewObjL();
|
sl@0
|
111 |
iModifierMask=aCaptureKey.modifierMask;
|
sl@0
|
112 |
iModifierValue=aCaptureKey.modifiers;
|
sl@0
|
113 |
iScanCode=aCaptureKey.key;
|
sl@0
|
114 |
iLink.iPriority=aCaptureKey.priority + 1;
|
sl@0
|
115 |
iCaptureKeysUpsAndDowns.Add(*this);
|
sl@0
|
116 |
--iLink.iPriority;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
void CWsCaptureKeyUpsAndDowns::CommandL(TInt , const TAny *)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
CWsWindowGroup *CWsCaptureKeyUpsAndDowns::CheckForCapture(TUint aScanCode, TUint aModifiers)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
TDblQueIter<CWsCaptureKeyUpsAndDowns> iter(iCaptureKeysUpsAndDowns);
|
sl@0
|
126 |
CWsCaptureKeyUpsAndDowns* cap;
|
sl@0
|
127 |
while ((cap=iter++)!=NULL)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
if (cap->iScanCode==aScanCode && (aModifiers&cap->iModifierMask)==cap->iModifierValue)
|
sl@0
|
130 |
return(cap->iWindowGroup);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
return NULL;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
/*CWsCaptureLongKey*/
|
sl@0
|
137 |
|
sl@0
|
138 |
CWsCaptureLongKey::CWsCaptureLongKey(CWsWindowGroup *aGroupWin)
|
sl@0
|
139 |
:CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_LONG_KEY), iWindowGroup(aGroupWin)
|
sl@0
|
140 |
{}
|
sl@0
|
141 |
|
sl@0
|
142 |
CWsCaptureLongKey::~CWsCaptureLongKey()
|
sl@0
|
143 |
{
|
sl@0
|
144 |
iLink.Deque();
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
void CWsCaptureLongKey::ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
NewObjL();
|
sl@0
|
150 |
iData=aCaptureKey;
|
sl@0
|
151 |
if (iData.delay.Int()<0)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
TTimeIntervalMicroSeconds32 time;
|
sl@0
|
154 |
CKeyboardRepeat::GetRepeatTime(iData.delay,time);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
iLink.iPriority=iData.priority + 1;
|
sl@0
|
157 |
iCaptureLongKeys.Add(*this);
|
sl@0
|
158 |
--iLink.iPriority;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
void CWsCaptureLongKey::CommandL(TInt , const TAny *)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
CWsCaptureLongKey* CWsCaptureLongKey::CheckForCapture(TUint aKeyCode, TInt aModifiers)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
TDblQueIter<CWsCaptureLongKey> iter(iCaptureLongKeys);
|
sl@0
|
168 |
CWsCaptureLongKey* longCapture;
|
sl@0
|
169 |
while ((longCapture=iter++)!=NULL)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
if (aKeyCode==longCapture->iData.inputKey && (aModifiers&longCapture->iData.modifierMask)==longCapture->iData.modifiers)
|
sl@0
|
172 |
return longCapture;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
return NULL;
|
sl@0
|
175 |
}
|