controlpanelui/src/cpplugins/personalizationplugin/src/cppersonalizationentryitemdata.cpp
changeset 19 36aa4756ee82
parent 12 624337f114fe
child 20 22d3abee08da
--- a/controlpanelui/src/cpplugins/personalizationplugin/src/cppersonalizationentryitemdata.cpp	Mon May 03 12:32:06 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,85 +0,0 @@
-/*
- * Copyright (c) 2009 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 "cppersonalizationentryitemdata.h"
-#include <xqaiwrequest.h>
-#include <cpitemdatahelper.h>
-
-CpPersonalizationEntryItemData::CpPersonalizationEntryItemData(CpItemDataHelper &itemDataHelper,
-                const QString &text,
-                const QString &description,
-                const HbIcon &icon,
-                const HbDataFormModelItem *parent)
-                :CpSettingFormEntryItemData(itemDataHelper,text,description,
-                                            icon,parent),mReq(0)
-{
-}
-CpPersonalizationEntryItemData::~CpPersonalizationEntryItemData()
-{
-}
-void CpPersonalizationEntryItemData::onLaunchView()
-{
-    //launch media fetcher
-    if (!mReq)
-    {
-        mReq = mAppMgr.create("com.nokia.services.media.Music", "fetch(QString)", true);
-
-        if (!mReq)
-        {
-            return;
-        }
-        else
-        {
-            connect(mReq, SIGNAL(requestOk(const QVariant&)), SLOT(handleOk(const QVariant&)));
-            connect(mReq, SIGNAL(requestError(int,const QString&)), SLOT(handleError(int,const QString&)));
-        }
-    }
-
-    // Set arguments for request (music fetcher application title)
-    QList<QVariant> args;
-    args << QVariant( text() );
-    mReq->setArguments(args);
-
-    // Make the request
-    if (!mReq->send())
-    {
-        //report error
-        return;
-    }
-}
-void CpPersonalizationEntryItemData::handleOk(const QVariant &result)
-{
-    if (!result.canConvert<QString>())
-    {
-        setDescription( "Corrupt result" );
-    }
-    else
-    {
-        setDescription( result.value<QString>() );
-    }
-}
-void CpPersonalizationEntryItemData::handleError(int errorCode, const QString& errorMessage)
-{
-    //
-    Q_UNUSED(errorCode);
-    Q_UNUSED(errorMessage);
-    setDescription("Error");
-}
-
-CpBaseSettingView *CpPersonalizationEntryItemData::createSettingView() const
-{
-        return 0;
-}