summaryrefslogtreecommitdiff
path: root/ui/qt5/netsimplewifipage.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/netsimplewifipage.hh')
-rw-r--r--ui/qt5/netsimplewifipage.hh22
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/qt5/netsimplewifipage.hh b/ui/qt5/netsimplewifipage.hh
new file mode 100644
index 0000000..3ba3e6a
--- /dev/null
+++ b/ui/qt5/netsimplewifipage.hh
@@ -0,0 +1,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