wlanutilities/wlanwizard/inc/wlanwizardpagessid.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: Ssid query
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef WLANWIZARDPAGESSID_H
       
    20 #define WLANWIZARDPAGESSID_H
       
    21 
       
    22 // System includes
       
    23 
       
    24 // User includes
       
    25 #include "wlanwizardpageinternal.h"
       
    26 #include "wlanwizardutils.h"
       
    27 
       
    28 // Forward declarations
       
    29 class WlanWizardPrivate;
       
    30 class HbLabel;
       
    31 class HbLineEdit;
       
    32 class HbDocumentLoader;
       
    33 class TestWlanWizardUi;
       
    34 
       
    35 // External data types
       
    36 
       
    37 // Constants
       
    38 
       
    39 /*!
       
    40  * @addtogroup group_wlan_wizard
       
    41  * @{
       
    42  */
       
    43 
       
    44 class WlanWizardPageSsid: public WlanWizardPageInternal
       
    45 {
       
    46     Q_OBJECT
       
    47 public:
       
    48     explicit WlanWizardPageSsid(WlanWizardPrivate* parent);
       
    49     virtual ~WlanWizardPageSsid();
       
    50     
       
    51 public:
       
    52     HbWidget* initializePage();
       
    53     virtual bool showPage();
       
    54     int nextId(bool &removeFromStack) const;
       
    55 
       
    56 signals:
       
    57     
       
    58 public slots: 
       
    59     void loadDocmlSection(Qt::Orientation orientation);
       
    60     void textChanged(const QString &text);
       
    61     
       
    62 protected:
       
    63     
       
    64 protected slots:
       
    65 
       
    66 private:
       
    67     Q_DISABLE_COPY(WlanWizardPageSsid)
       
    68     
       
    69 private slots:
       
    70     
       
    71 private:
       
    72     /*!
       
    73      * Pointer to the view.
       
    74      */
       
    75     HbWidget *mWidget;
       
    76     
       
    77     /*!
       
    78      * Pointer to the header label object.
       
    79      */
       
    80     HbLabel *mLabel;
       
    81     
       
    82     /*!
       
    83      * Pointer to the line edit object.
       
    84      */
       
    85     HbLineEdit *mSsid;
       
    86     
       
    87     /*!
       
    88      * Pointer to the document loader object.
       
    89      */
       
    90     HbDocumentLoader *mLoader;
       
    91     
       
    92     // Friend classes
       
    93     friend class TestWlanWizardUi;
       
    94 };
       
    95 
       
    96 /*! @} */
       
    97 
       
    98 #endif