wlanutilities/wlanwizard/inc/wlanwizardpagesummary.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     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: Summary
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef WLANWIZARDPAGESUMMARY_H
       
    20 #define WLANWIZARDPAGESUMMARY_H
       
    21 
       
    22 // System includes
       
    23 
       
    24 // User includes
       
    25 #include "wlanwizardpageinternal.h"
       
    26 
       
    27 // Forward declarations
       
    28 class HbLabel;
       
    29 class WlanWizardPrivate;
       
    30 class HbListWidget;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 /*!
       
    37    @addtogroup group_wlan_wizard
       
    38    @{
       
    39  */
       
    40 
       
    41 class WlanWizardPageSummary : public WlanWizardPageInternal
       
    42 {
       
    43 public:
       
    44     explicit WlanWizardPageSummary(WlanWizardPrivate* parent);
       
    45     virtual ~WlanWizardPageSummary();
       
    46 
       
    47 public: // From WlanWizardPage
       
    48     HbWidget* initializePage();
       
    49 
       
    50 signals:
       
    51     
       
    52 public slots:
       
    53     
       
    54 protected:
       
    55 
       
    56 protected slots:
       
    57 
       
    58 private:
       
    59     Q_DISABLE_COPY(WlanWizardPageSummary)
       
    60     void loadDocml();
       
    61     QString networkModeText() const;
       
    62     QString securityModeText() const;
       
    63     void addDynamicItems(int &row);
       
    64     void appendToList(int &row, const QString title, const QString value);
       
    65     void appendToListPluginInfo(WlanWizardPlugin::Summary id, int &row);
       
    66 
       
    67 private slots:
       
    68 
       
    69 private: // data
       
    70     //! Visualization of the page
       
    71     HbListWidget *mListWidget;
       
    72 };
       
    73 
       
    74 /*! @} */
       
    75 
       
    76 #endif // WLANWIZARDPAGESUMMARY_H