/*
* Copyright (c) 2010 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:
*
*/
#include "phoneindicatorservicesendertask.h"
#include <xqaiwrequest.h>
#include <xqappmgr.h>
#include <xqaiwdecl.h>
PhoneIndicatorServiceSenderTask::PhoneIndicatorServiceSenderTask(Interaction interaction):
m_interaction(interaction), m_request(0)
{
}
PhoneIndicatorServiceSenderTask::~PhoneIndicatorServiceSenderTask()
{
delete m_request;
}
void PhoneIndicatorServiceSenderTask::run()
{
XQApplicationManager appManager;
QList<QVariant> args;
QString service;
QString interface;
QString operation;
QVariantHash hash;
QVariantMap map;
switch(m_interaction){
case OpenMissedCallView:
service = "logs";
interface = XQI_LOGS_VIEW;
operation = XQOP_LOGS_SHOW;
map.insert(XQLOGS_VIEW_INDEX, QVariant((int)XQService::LogsViewMissed));
map.insert(XQLOGS_SHOW_DIALPAD, QVariant(false));
map.insert(XQLOGS_DIALPAD_TEXT , QVariant(QString()));
args.append(QVariant(map));
break;
case OpenCallUi:
service = "phoneui";
interface = "com.nokia.symbian.IStart";
operation = "start(int)";
args << (int)0;
break;
case OpenDiverSettingsView:
interface = "com.nokia.symbian.ICpPluginLauncher";
operation = "launchSettingView(QString,QVariant)";
args << QVariant("cptelephonyplugin.dll");
hash["view"] = "divert_view";
hash["heading"] = "txt_phone_subhead_telephone";
args << hash;
break;
default:
break;
}
delete m_request;
m_request = service.isEmpty() ?
appManager.create( interface, operation, false):
appManager.create(service, interface, operation, false);
if ( m_request == NULL ){
return;
}
m_request->setArguments(args);
m_request->send();
}