phoneengine/networkhandlingstarter/inc/networkhandlingstarter_p.h
changeset 27 2f8f8080a020
child 45 6b911d05207e
equal deleted inserted replaced
22:6bb1b21d2484 27:2f8f8080a020
       
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:  
       
    15  *
       
    16  */
       
    17 #ifndef NETWORKHANDLINGSTARTERPRIVATE_H
       
    18 #define NETWORKHANDLINGSTARTERPRIVATE_H
       
    19 
       
    20 #include <QObject>
       
    21 #include "mnetworklistenerobserver.h"
       
    22 
       
    23 class CNetworkListener;
       
    24 class HbDeviceMessageBox;
       
    25 class HbMainWindow;
       
    26 
       
    27 /*!
       
    28     \class NetworkHandlingStarterPrivate
       
    29  */
       
    30 class NetworkHandlingStarterPrivate
       
    31     : public QObject,
       
    32       public MNetworkListenerObserver
       
    33 {
       
    34     Q_OBJECT
       
    35     
       
    36 public:
       
    37     
       
    38     NetworkHandlingStarterPrivate(QObject *parent = NULL);
       
    39     
       
    40     ~NetworkHandlingStarterPrivate();
       
    41     
       
    42 public slots:
       
    43 
       
    44     void LaunchCpNetworkPluginView();
       
    45 
       
    46     void ViewDone();
       
    47 
       
    48 signals:
       
    49     
       
    50     void SearchAvailableNetworks();
       
    51     
       
    52 public: // From MNetworkListenerObserver
       
    53     
       
    54     void ShowNote();
       
    55     
       
    56     void RemoveNote();
       
    57         
       
    58 private:
       
    59     
       
    60     HbMainWindow * MainWindow();
       
    61     
       
    62     void InitaliseCpNetworkPluginView();
       
    63     
       
    64 private:
       
    65     
       
    66     CNetworkListener* m_networkListener;
       
    67     HbDeviceMessageBox *m_note;
       
    68     
       
    69 };
       
    70 
       
    71 #endif // NETWORKHANDLINGSTARTERPRIVATE_H