wlanutilities/wlanwizard/inc/wlanwizardpageprocessingsettings.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2  * Copyright (c) 2010 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  *   WLAN Wizard Page: Processing settings, connection and running ict.
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef WLANWIZARDPAGEPROCESSINGSETTINGS_H
       
    20 #define WLANWIZARDPAGEPROCESSINGSETTINGS_H
       
    21 
       
    22 // System includes
       
    23 
       
    24 // User includes
       
    25 #include "wlanwizardpageinternal.h"
       
    26 #include "wlanqtutils.h"
       
    27 
       
    28 // Forward declarations
       
    29 class HbDocumentLoader;
       
    30 class HbLabel;
       
    31 class WlanWizardPrivate;
       
    32 
       
    33 // External data types
       
    34 
       
    35 // Constants
       
    36 
       
    37 /*!
       
    38    @addtogroup group_wlan_wizard
       
    39    @{
       
    40  */
       
    41 
       
    42 class WlanWizardPageProcessingSettings: public WlanWizardPageInternal
       
    43 {
       
    44     Q_OBJECT
       
    45 public:
       
    46     explicit WlanWizardPageProcessingSettings(WlanWizardPrivate* parent);
       
    47     virtual ~WlanWizardPageProcessingSettings();
       
    48 
       
    49 public: // From WlanWizardPage
       
    50     HbWidget* initializePage();
       
    51     int nextId(bool &removeFromStack) const;
       
    52     bool showPage();
       
    53     bool requiresStartOperation();
       
    54     void startOperation();
       
    55     
       
    56 signals:
       
    57     
       
    58 public slots:
       
    59     void loadDocmlSection(Qt::Orientation orientation);
       
    60     void wlanNetworkClosed(int iapId, int reason);
       
    61     void ictResult(int iapId, int result);
       
    62     void wlanNetworkOpened(int iapId);
       
    63     
       
    64 protected:
       
    65 
       
    66 protected slots:
       
    67 
       
    68 private:
       
    69     Q_DISABLE_COPY(WlanWizardPageProcessingSettings)
       
    70 
       
    71 private slots:
       
    72 
       
    73 private: // data
       
    74     // OWNED
       
    75     //! Docml document loader
       
    76     HbDocumentLoader *mDocLoader;
       
    77     
       
    78     // NOT OWNED
       
    79     //! Visualization of the page
       
    80     HbWidget *mWidget;
       
    81     //! Title for text in the page
       
    82     HbLabel *mLabel;
       
    83     //! PageId for next wizard page
       
    84     int mNextPageId;
       
    85 };
       
    86 
       
    87 /*! @} */
       
    88 
       
    89 #endif // WLANWIZARDPAGEPROCESSINGSETTINGS_H