phoneengine/networkhandlingstarter/inc/networkhandlingstarter_p.h
branchRCL_3
changeset 24 41a7f70b3818
equal deleted inserted replaced
23:40a3f856b14d 24:41a7f70b3818
       
     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 
       
    26 /*!
       
    27     \class NetworkHandlingStarterPrivate
       
    28  */
       
    29 class NetworkHandlingStarterPrivate
       
    30     : public QObject,
       
    31       public MNetworkListenerObserver
       
    32 {
       
    33     Q_OBJECT
       
    34     
       
    35 public:
       
    36     
       
    37     NetworkHandlingStarterPrivate(QObject *parent = NULL);
       
    38     
       
    39     ~NetworkHandlingStarterPrivate();
       
    40     
       
    41 public slots:
       
    42 
       
    43     void LaunchCpNetworkPluginView();
       
    44     
       
    45 public: // From MNetworkListenerObserver
       
    46     
       
    47     void ShowNote();
       
    48     
       
    49     void RemoveNote();
       
    50 
       
    51 private:
       
    52     
       
    53     CNetworkListener* m_networkListener;
       
    54     HbDeviceMessageBox *m_note;
       
    55     
       
    56 };
       
    57 
       
    58 #endif // NETWORKHANDLINGSTARTERPRIVATE_H