summaryrefslogtreecommitdiff
path: root/netsimplewifipage.hh
blob: 23a6664f4eefe7c35cf40b140cad663f8aeba5e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef NETWORKSIMPLEWIRELESSPAGE_HH
#define NETWORKSIMPLEWIRELESSPAGE_HH

#include "horizonwizardpage.hh"

#include <QComboBox>
#include <QLineEdit>
#include <QListView>

class NetworkSimpleWirelessPage : public HorizonWizardPage
{
public:
        NetworkSimpleWirelessPage(QWidget *parent = 0);
private:
        QComboBox *securityType;
        QLineEdit *ssidName, *passphrase;
        QListView *ssidListView;
};

#endif // NETWORKSIMPLEWIRELESSPAGE_HH