diff -r b2bba7f74ac0 -r bcb8d447d716 idlefw/plugins/wsplugin/src/logslaunchhandler.cpp --- a/idlefw/plugins/wsplugin/src/logslaunchhandler.cpp Mon Mar 08 21:43:47 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,133 +0,0 @@ -/* -* Copyright (c) 2005-2007 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Logs app launch handler for Active Idle WS Plug-in. -* -*/ - - -#include "logslaunchhandler.h" -#include "uistate.h" -#include -#include -#include -#include -#include - -namespace AiWsPlugin { - - -CLogsLaunchHandler::CLogsLaunchHandler() - { - } - -void CLogsLaunchHandler::ConstructL() - { - // Read capability: ReadDeviceData. - _LIT_SECURITY_POLICY_C1( KReadDevicePolicy, ECapabilityReadDeviceData ); - // Write capability: WriteDeviceData. - _LIT_SECURITY_POLICY_C1( KWriteDevicePolicy, ECapabilityWriteDeviceData ); - - // Initialize Shortcut Plug-in command API - RProperty::Define( - KUidSystemCategory, - KPSUidShortcutCmd, - RProperty::EText, - KReadDevicePolicy, - KWriteDevicePolicy - ); - - iTimer = CKeyHandlerTimer::NewL( this ); - } - -CLogsLaunchHandler* CLogsLaunchHandler::NewLC() - { - CLogsLaunchHandler* self = new(ELeave) CLogsLaunchHandler; - CleanupStack::PushL( self ); - self->ConstructL(); - return self; - } - -CLogsLaunchHandler::~CLogsLaunchHandler() - { - if ( iTimer) - { - iTimer->Cancel(); - delete iTimer; - } - } - -void CLogsLaunchHandler::SetUiStateQuery( MUiState& aUiState ) - { - iUiState = &aUiState; - } - -void CLogsLaunchHandler::FocusChanged( TBool /*aState*/ ) - { - // Focus status is queried from iUiState - } - -TBool CLogsLaunchHandler::OfferRawEvent(const TRawEvent& aRawEvent) - { - TInt reactOnSendKey = 1; - TInt err = RProperty::Get( KPSUidAiInformation, KActiveIdleActOnSendKey, reactOnSendKey ); - if ( err != KErrNone ) - { - reactOnSendKey = 1; - } - - TBool consumed = EFalse; - - if ( reactOnSendKey ) - { - switch( aRawEvent.Type() ) - { - case TRawEvent::EKeyDown: - { - if ( iUiState->HasFocus() && aRawEvent.ScanCode() == EStdKeyYes ) - { - const TTimeIntervalMicroSeconds32 KLongKeyPress(600000); - iTimer->Cancel(); - iTimer->After(KLongKeyPress); - consumed = ETrue; - } - break; - } - case TRawEvent::EKeyUp: - { - if ( iUiState->HasFocus() && aRawEvent.ScanCode() == EStdKeyYes && iTimer->IsActive() ) - { - iTimer->Cancel(); - RProperty::Set( - KUidSystemCategory, - KPSUidShortcutCmd, - KAiPSLaunchLogs ); - consumed = ETrue; - } - break; - } - } - } - - return consumed; - } - -void CLogsLaunchHandler::TimerDone() - { - RProperty::Set( - KUidSystemCategory, - KPSUidShortcutCmd, - KAiPSLaunchNameDialer ); - } - -} // namespace AiWsPlugin