blob: 3ba3e6a82fccb6cbc089513bb8345a51bdb26908 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef NETWORKSIMPLEWIRELESSPAGE_HH
#define NETWORKSIMPLEWIRELESSPAGE_HH
#include "horizonwizardpage.hh"
#include <QComboBox>
#include <QLineEdit>
#include <QListView>
class NetworkSimpleWirelessPage : public HorizonWizardPage
{
public:
NetworkSimpleWirelessPage(QWidget *parent = 0);
void initializePage();
private:
QComboBox *securityType;
QLineEdit *ssidName, *passphrase;
QListView *ssidListView;
};
#endif // NETWORKSIMPLEWIRELESSPAGE_HH
|