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.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 // Capture key & hot key classes
    17 //
    18 #include <e32std.h>
    19 #include "server.h"
    20 #include "windowgroup.h"
    21 #include "EVENT.H"
    22 #include "inifile.h"
    23 
    24 _LIT(KWsProtectedKey, "PROTECTEDKEY");
    25 _LIT(KWsProtectedWindowName, "PROTECTEDKEYWINDOWNAME");
    26 
    27 
    28 /*CWsCaptureKey*/
    29 
    30 CWsCaptureKey::CWsCaptureKey(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY), iWindowGroup(aGroupWin)
    31 	{}
    32 
    33 CWsCaptureKey::~CWsCaptureKey()
    34 	{
    35 	TWindowServerEvent::CancelCaptureKey(ECaptureTypeKey, this);
    36 	}
    37 
    38 /**
    39 Convert a window server key capture command to a capture request for the
    40 key routing plug-in.
    41 
    42 @param	aCaptureKey		Input capture command
    43 @param	aRequest		Output capture request
    44 */
    45 void CWsCaptureKey::CmdToRequest(const TWsWinCmdCaptureKey &aCaptureKey, TKeyCaptureRequest &aRequest)
    46 	{
    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;
    57 	}
    58 
    59 /**
    60 Check for protected key in a capture command
    61 
    62 @param	aWindowGroup	Window Group of capture request
    63 @param	aCaptureKey		Key capture command
    64 
    65 @leave KErrPermissionDenied		Capture key is protected
    66 */
    67 void CheckProtectedKeyL(CWsWindowGroup* aWindowGroup,const TWsWinCmdCaptureKey &aCaptureKey)
    68 	{
    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.
    71 	TInt protectedKey;
    72 	if(WsIniFile->FindVar(KWsProtectedKey,protectedKey))
    73 		{
    74 		if (aCaptureKey.key == static_cast<TUint>(protectedKey))
    75 			{
    76 			if (aWindowGroup->GroupName()==NULL)
    77 				{
    78 				User::Leave(KErrPermissionDenied);
    79 				}
    80 				
    81 			TPtrC wsProtectedWindowName;
    82 			WsIniFile->FindVar(KWsProtectedWindowName,wsProtectedWindowName);
    83 			if (aWindowGroup->GroupName()->Find(wsProtectedWindowName)==KErrNotFound)
    84 				{
    85 				User::Leave(KErrPermissionDenied);
    86 				}
    87 			}
    88 		}
    89 	}
    90 
    91 /**
    92 Construct a capture object for normal key events and make a capture request
    93 to the key routing plug-in.
    94 
    95 @param	aCaptureKey		Key capture command from RWindowGroup::CaptureKey(),
    96 						RWsSession::SetHotKey() or default hot key settings.
    97 */
    98 void CWsCaptureKey::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
    99 	{
   100 	CheckProtectedKeyL(iWindowGroup, aCaptureKey);
   101 	NewObjL();
   102 
   103 	TKeyCaptureRequest request;
   104 	CmdToRequest(aCaptureKey, request);
   105 	TWindowServerEvent::AddCaptureKeyL(request);
   106 	}
   107 
   108 /**
   109 Make a capture request update for normal key events to the key routing plug-in.
   110 
   111 @param	aCaptureKey		Key capture command from CWsHotKey::SetL()
   112 
   113 Note: this function is used only to disable hot key capture requests or to
   114 reset them to their defaults.
   115 */
   116 void CWsCaptureKey::SetL(const TWsWinCmdCaptureKey &aCaptureKey)
   117 	{
   118 	TKeyCaptureRequest request;
   119 	CmdToRequest(aCaptureKey, request);
   120 	TWindowServerEvent::UpdateCaptureKeyL(request);
   121 	}
   122 
   123 void CWsCaptureKey::CommandL(TInt , const TAny *)
   124 	{
   125 	}
   126 
   127 
   128 /*CWsCaptureKeyUpsAndDowns*/
   129 
   130 CWsCaptureKeyUpsAndDowns::CWsCaptureKeyUpsAndDowns(CWsWindowGroup *aGroupWin) : CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_KEY_UPDOWNS), iWindowGroup(aGroupWin)
   131 	{}
   132 
   133 CWsCaptureKeyUpsAndDowns::~CWsCaptureKeyUpsAndDowns()
   134 	{
   135 	TWindowServerEvent::CancelCaptureKey(ECaptureTypeKeyUpDown, this);
   136 	}
   137 
   138 /**
   139 Construct a capture object for up/down key events and make a capture request
   140 to the key routing plug-in.
   141 
   142 @param	aCaptureKey		Key capture command from
   143 						RWindowGroup::CaptureKeyUpAndDowns().
   144 */
   145 void CWsCaptureKeyUpsAndDowns::ConstructL(const TWsWinCmdCaptureKey &aCaptureKey)
   146 	{
   147 	CheckProtectedKeyL(iWindowGroup, aCaptureKey);
   148 	NewObjL();
   149 
   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);
   162 	}
   163 
   164 void CWsCaptureKeyUpsAndDowns::CommandL(TInt , const TAny *)
   165 	{
   166 	}
   167 
   168 
   169 /*CWsCaptureLongKey*/
   170 
   171 CWsCaptureLongKey::CWsCaptureLongKey(CWsWindowGroup *aGroupWin) 
   172 	:CWsObject(aGroupWin?aGroupWin->WsOwner():NULL,WS_HANDLE_CAPTURE_LONG_KEY), iWindowGroup(aGroupWin)
   173 	{}
   174 
   175 CWsCaptureLongKey::~CWsCaptureLongKey()
   176 	{
   177 	TWindowServerEvent::CancelCaptureKey(ECaptureTypeLongKey, this);
   178 	}
   179 
   180 /**
   181 Construct a capture object for long key events and make a capture request
   182 to the key routing plug-in.
   183 
   184 @param	aCaptureKey		Key capture command from RWindowGroup::CaptureLongKey()
   185 */
   186 void CWsCaptureLongKey::ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey)
   187 	{
   188 	NewObjL();
   189 	iFlags = aCaptureKey.flags;
   190 	iDelay = aCaptureKey.delay;
   191 	if (iDelay.Int() < 0)
   192 		{
   193 		TTimeIntervalMicroSeconds32 time;
   194 		CKeyboardRepeat::GetRepeatTime(iDelay, time);
   195 		}
   196 
   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);
   209 	}
   210 
   211 void CWsCaptureLongKey::CommandL(TInt , const TAny *)
   212 	{
   213 	}