os/graphics/windowing/windowserver/nga/SERVER/CAPKEY.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.
sl@0
     1
// Copyright (c) 1995-2010 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
sl@0
    28
/*CWsCaptureKey*/
sl@0
    29
sl@0
    30
CWsCaptureKey::CWsCaptureKey(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY), iWindowGroup(aGroupWin)
sl@0
    31
	{}
sl@0
    32
sl@0
    33
CWsCaptureKey::~CWsCaptureKey()
sl@0
    34
	{
sl@0
    35
	TWindowServerEvent::CancelCaptureKey(ECaptureTypeKey, this);
sl@0
    36
	}
sl@0
    37
sl@0
    38
/**
sl@0
    39
Convert a window server key capture command to a capture request for the
sl@0
    40
key routing plug-in.
sl@0
    41
sl@0
    42
@param	aCaptureKey		Input capture command
sl@0
    43
@param	aRequest		Output capture request
sl@0
    44
*/
sl@0
    45
void CWsCaptureKey::CmdToRequest(const TWsWinCmdCaptureKey &aCaptureKey, TKeyCaptureRequest &aRequest)
sl@0
    46
	{
sl@0
    47
	aRequest.iType = ECaptureTypeKey;
sl@0
    48
	aRequest.iModifierMask = aCaptureKey.modifierMask;
sl@0
    49
	aRequest.iModifiers = aCaptureKey.modifiers;
sl@0
    50
	aRequest.iInputCode = aCaptureKey.key;
sl@0
    51
	aRequest.iOutputCode = aCaptureKey.key;
sl@0
    52
	aRequest.iPriority = aCaptureKey.priority;
sl@0
    53
	aRequest.iWindowGroup = iWindowGroup;
sl@0
    54
	aRequest.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
sl@0
    55
	aRequest.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
sl@0
    56
	aRequest.iHandle = this;
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
Check for protected key in a capture command
sl@0
    61
sl@0
    62
@param	aWindowGroup	Window Group of capture request
sl@0
    63
@param	aCaptureKey		Key capture command
sl@0
    64
sl@0
    65
@leave KErrPermissionDenied		Capture key is protected
sl@0
    66
*/
sl@0
    67
void CheckProtectedKeyL(CWsWindowGroup* aWindowGroup,const TWsWinCmdCaptureKey &aCaptureKey)
sl@0
    68
	{
sl@0
    69
	//The key specified in the WSINI file with the keyword: PROTECTEDKEY can only be captured 
sl@0
    70
	//by a group window with name specified with the PROTECTEDKEYWINDOWNAME keyword.
sl@0
    71
	TInt protectedKey;
sl@0
    72
	if(WsIniFile->FindVar(KWsProtectedKey,protectedKey))
sl@0
    73
		{
sl@0
    74
		if (aCaptureKey.key == static_cast<TUint>(protectedKey))
sl@0
    75
			{
sl@0
    76
			if (aWindowGroup->GroupName()==NULL)
sl@0
    77
				{
sl@0
    78
				User::Leave(KErrPermissionDenied);
sl@0
    79
				}
sl@0
    80
				
sl@0
    81
			TPtrC wsProtectedWindowName;
sl@0
    82
			WsIniFile->FindVar(KWsProtectedWindowName,wsProtectedWindowName);
sl@0
    83
			if (aWindowGroup->GroupName()->Find(wsProtectedWindowName)==KErrNotFound)
sl@0
    84
				{
sl@0
    85
				User::Leave(KErrPermissionDenied);
sl@0
    86
				}
sl@0
    87
			}
sl@0
    88
		}
sl@0
    89
	}
sl@0
    90
sl@0
    91
/**
sl@0
    92
Construct a capture object for normal key events and make a capture request
sl@0
    93
to the key routing plug-in.
sl@0
    94
sl@0
    95
@param	aCaptureKey		Key capture command from RWindowGroup::CaptureKey(),
sl@0
    96
						RWsSession::SetHotKey() or default hot key settings.
sl@0
    97
*/
sl@0
    98
void CWsCaptureKey::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
sl@0
    99
	{
sl@0
   100
	CheckProtectedKeyL(iWindowGroup, aCaptureKey);
sl@0
   101
	NewObjL();
sl@0
   102
sl@0
   103
	TKeyCaptureRequest request;
sl@0
   104
	CmdToRequest(aCaptureKey, request);
sl@0
   105
	TWindowServerEvent::AddCaptureKeyL(request);
sl@0
   106
	}
sl@0
   107
sl@0
   108
/**
sl@0
   109
Make a capture request update for normal key events to the key routing plug-in.
sl@0
   110
sl@0
   111
@param	aCaptureKey		Key capture command from CWsHotKey::SetL()
sl@0
   112
sl@0
   113
Note: this function is used only to disable hot key capture requests or to
sl@0
   114
reset them to their defaults.
sl@0
   115
*/
sl@0
   116
void CWsCaptureKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
sl@0
   117
	{
sl@0
   118
	TKeyCaptureRequest request;
sl@0
   119
	CmdToRequest(aCaptureKey, request);
sl@0
   120
	TWindowServerEvent::UpdateCaptureKeyL(request);
sl@0
   121
	}
sl@0
   122
sl@0
   123
void CWsCaptureKey::CommandL(TInt , const TAny *)
sl@0
   124
	{
sl@0
   125
	}
sl@0
   126
sl@0
   127
sl@0
   128
/*CWsCaptureKeyUpsAndDowns*/
sl@0
   129
sl@0
   130
CWsCaptureKeyUpsAndDowns::CWsCaptureKeyUpsAndDowns(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY_UPDOWNS), iWindowGroup(aGroupWin)
sl@0
   131
	{}
sl@0
   132
sl@0
   133
CWsCaptureKeyUpsAndDowns::~CWsCaptureKeyUpsAndDowns()
sl@0
   134
	{
sl@0
   135
	TWindowServerEvent::CancelCaptureKey(ECaptureTypeKeyUpDown, this);
sl@0
   136
	}
sl@0
   137
sl@0
   138
/**
sl@0
   139
Construct a capture object for up/down key events and make a capture request
sl@0
   140
to the key routing plug-in.
sl@0
   141
sl@0
   142
@param	aCaptureKey		Key capture command from
sl@0
   143
						RWindowGroup::CaptureKeyUpAndDowns().
sl@0
   144
*/
sl@0
   145
void CWsCaptureKeyUpsAndDowns::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
sl@0
   146
	{
sl@0
   147
	CheckProtectedKeyL(iWindowGroup, aCaptureKey);
sl@0
   148
	NewObjL();
sl@0
   149
sl@0
   150
	TKeyCaptureRequest request;
sl@0
   151
	request.iType = ECaptureTypeKeyUpDown;
sl@0
   152
	request.iInputCode = aCaptureKey.key;
sl@0
   153
	request.iOutputCode = aCaptureKey.key;
sl@0
   154
	request.iModifiers = aCaptureKey.modifiers;
sl@0
   155
	request.iModifierMask = aCaptureKey.modifierMask;
sl@0
   156
	request.iPriority = aCaptureKey.priority;
sl@0
   157
	request.iWindowGroup = iWindowGroup;
sl@0
   158
	request.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
sl@0
   159
	request.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
sl@0
   160
	request.iHandle = this;
sl@0
   161
	TWindowServerEvent::AddCaptureKeyL(request);
sl@0
   162
	}
sl@0
   163
sl@0
   164
void CWsCaptureKeyUpsAndDowns::CommandL(TInt , const TAny *)
sl@0
   165
	{
sl@0
   166
	}
sl@0
   167
sl@0
   168
sl@0
   169
/*CWsCaptureLongKey*/
sl@0
   170
sl@0
   171
CWsCaptureLongKey::CWsCaptureLongKey(CWsWindowGroup *aGroupWin) 
sl@0
   172
	:CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_LONG_KEY), iWindowGroup(aGroupWin)
sl@0
   173
	{}
sl@0
   174
sl@0
   175
CWsCaptureLongKey::~CWsCaptureLongKey()
sl@0
   176
	{
sl@0
   177
	TWindowServerEvent::CancelCaptureKey(ECaptureTypeLongKey, this);
sl@0
   178
	}
sl@0
   179
sl@0
   180
/**
sl@0
   181
Construct a capture object for long key events and make a capture request
sl@0
   182
to the key routing plug-in.
sl@0
   183
sl@0
   184
@param	aCaptureKey		Key capture command from RWindowGroup::CaptureLongKey()
sl@0
   185
*/
sl@0
   186
void CWsCaptureLongKey::ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey)
sl@0
   187
	{
sl@0
   188
	NewObjL();
sl@0
   189
	iFlags = aCaptureKey.flags;
sl@0
   190
	iDelay = aCaptureKey.delay;
sl@0
   191
	if (iDelay.Int() < 0)
sl@0
   192
		{
sl@0
   193
		TTimeIntervalMicroSeconds32 time;
sl@0
   194
		CKeyboardRepeat::GetRepeatTime(iDelay, time);
sl@0
   195
		}
sl@0
   196
sl@0
   197
	TKeyCaptureRequest request;
sl@0
   198
	request.iType = ECaptureTypeLongKey;
sl@0
   199
	request.iInputCode = aCaptureKey.inputKey;
sl@0
   200
	request.iOutputCode = aCaptureKey.outputKey;
sl@0
   201
	request.iModifiers = aCaptureKey.modifiers;
sl@0
   202
	request.iModifierMask = aCaptureKey.modifierMask;
sl@0
   203
	request.iPriority = aCaptureKey.priority;
sl@0
   204
	request.iWindowGroup = iWindowGroup;
sl@0
   205
	request.iWindowGroupId = iWindowGroup ? iWindowGroup->Identifier() : 0;
sl@0
   206
	request.iAppUid = iWsOwner ? TUid::Uid(iWsOwner->SecureId().iId) : KNullUid;
sl@0
   207
	request.iHandle = this;
sl@0
   208
	TWindowServerEvent::AddCaptureKeyL(request);
sl@0
   209
	}
sl@0
   210
sl@0
   211
void CWsCaptureLongKey::CommandL(TInt , const TAny *)
sl@0
   212
	{
sl@0
   213
	}