phoneengine/networkhandlingstarter/src/networkhandlingstarter_p.cpp
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:33:21 +0100
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 30 ebdbd102c78a
parent 45 6b911d05207e
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
 * 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 <hbdevicemessagebox.h>
#include <hbaction.h>
#include <cppluginlauncher.h>
#include <hbinstance.h>
#include <hbview.h>
#include <xqserviceutil.h>
#include <cpbasesettingview.h>

#include "networkhandlingstarter_p.h"
#include "networkhandlingstarterlogging.h"
#include "cnetworklistener.h"

/*!
    Constructor of NetworkHandlingStarterPrivate.
 */
NetworkHandlingStarterPrivate::NetworkHandlingStarterPrivate(QObject *parent) : 
    QObject(parent), m_note(NULL)
{
    DPRINT << ": IN";
    
    QT_TRAP_THROWING(m_networkListener = CNetworkListener::NewL(*this));
    
    DPRINT << ": OUT";
}

/*!
    Destructor of NetworkHandlingStarterPrivate.
 */
NetworkHandlingStarterPrivate::~NetworkHandlingStarterPrivate()
{
    DPRINT << ": IN";
    
    delete m_networkListener;
    if (m_note) {
        delete m_note;
    }
    
    DPRINT << ": OUT";
}
    
/*!
    NetworkHandlingStarterPrivate::ShowNote()
 */
void NetworkHandlingStarterPrivate::ShowNote()
{
    DPRINT << ": IN";
    
    if (m_note) {
        m_note->close();
        delete m_note;
        m_note = NULL;
    }
    m_note = new HbDeviceMessageBox(
        hbTrId("txt_phone_info_network_lost_select_network"), 
        HbMessageBox::MessageTypeQuestion);
    HbAction *primaryAction = new HbAction(hbTrId("txt_common_button_yes"), m_note);
    m_note->setAction(primaryAction, HbDeviceMessageBox::AcceptButtonRole); 
    HbAction *secondaryAction = new HbAction(hbTrId("txt_common_button_no"), m_note);
    m_note->setAction(secondaryAction,HbDeviceMessageBox::RejectButtonRole); 
    QObject::connect(
        primaryAction, SIGNAL(triggered()),
        this, SLOT(LaunchCpNetworkPluginView()));
    m_note->setTimeout(0);
    m_note->show();
    
    DPRINT << ": OUT";
}

/*!
    NetworkHandlingStarterPrivate::RemoveNote()
 */
void NetworkHandlingStarterPrivate::RemoveNote()
{
    DPRINT << ": IN";
    
    if (m_note) {
        m_note->close();
        delete m_note;
        m_note = NULL;
    }
    
    DPRINT << ": OUT";
}

/*!
    NetworkHandlingStarterPrivate::InitaliseCpNetworkPluginView()
 */
bool NetworkHandlingStarterPrivate::InitaliseCpNetworkPluginView()
{
    DPRINT << ": IN";
    
    bool ok(false);
    CpBaseSettingView* view = CpPluginLauncher::launchSettingView("cpnetworkplugin");
    if (view) {
        if (QString(view->metaObject()->className()) == 
            QString("CpNetworkPluginView")) {
            QObject::connect(
                view, SIGNAL(aboutToClose()), 
                this, SLOT(ViewDone()));
            QObject::connect(
                this, SIGNAL(SearchAvailableNetworks()), 
                view, SLOT(SearchAvailableNetworks()));
            ok = true;
        }
    }
    
    DPRINT << ": OUT";
    return ok;
}

/*!
    NetworkHandlingStarterPrivate::LaunchCpNetworkPluginView()
 */
void NetworkHandlingStarterPrivate::LaunchCpNetworkPluginView()
{
    DPRINT << ": IN";
    
    if (InitaliseCpNetworkPluginView()) {
        DPRINT << ": Show network settings view";
        HbMainWindow *mainWnd = MainWindow();
        if (mainWnd) {
            mainWnd->show();
            XQServiceUtil::toBackground(false);
        }
        emit SearchAvailableNetworks();
    }
    
    DPRINT << ": OUT";
}

/*!
    NetworkHandlingStarterPrivate::ViewDone()
 */
void NetworkHandlingStarterPrivate::ViewDone()
{
    HbMainWindow *mainWnd = MainWindow();
    if (mainWnd) {
        mainWnd->hide();
    }
    XQServiceUtil::toBackground(true);
}

/*!
    NetworkHandlingStarterPrivate::MainWindow()
 */

HbMainWindow * NetworkHandlingStarterPrivate::MainWindow() 
{
    HbMainWindow *window(NULL);
    QList<HbMainWindow*> mainWindows = hbInstance->allMainWindows();
    if (!mainWindows.isEmpty()) {
        window = mainWindows.front();
    }
    return window;
}

// End of File.