wlanutilities/testwizard/inc/FirstView.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  *   Test Application for wizards
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef FIRSTVIEW_H_
       
    20 #define FIRSTVIEW_H_
       
    21 
       
    22 #include <HbView.h>
       
    23 
       
    24 class HbComboBox;
       
    25 class HbLineEdit;
       
    26 class HbCheckBox;
       
    27 class WlanWizard;
       
    28 class HbLabel;
       
    29 
       
    30 /*!
       
    31  * @addtogroup group_test_eap_wizard
       
    32  * @{
       
    33  */
       
    34 
       
    35 class FirstView : public HbView
       
    36 {
       
    37 Q_OBJECT
       
    38 
       
    39 public:
       
    40     FirstView();
       
    41     virtual ~FirstView();
       
    42     
       
    43     
       
    44 private slots:
       
    45     void start(bool);
       
    46     void finished(int iapId, bool connected);
       
    47     void cancelled();
       
    48 
       
    49 private:
       
    50     void deleteWizard();
       
    51     
       
    52 private:
       
    53     WlanWizard *mWizard;
       
    54     
       
    55     HbCheckBox *mUseConf;
       
    56     HbLineEdit *mSsid;
       
    57     HbComboBox *mNetworkMode;
       
    58     HbComboBox *mSecurityMode;
       
    59     HbCheckBox *mHidden;
       
    60     HbCheckBox *mUseWpaPsk;
       
    61     HbCheckBox *mUseWps;
       
    62     HbLabel *mStatus;
       
    63     
       
    64 };
       
    65 
       
    66 /*! @} */
       
    67 
       
    68 #endif /* FIRSTVIEW_H_ */
       
    69