summaryrefslogtreecommitdiff
path: root/netsimplewifipage.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-03-04 22:19:02 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-03-04 22:19:02 -0600
commiteae5c18992184d0ef4efd8766ee95e26100a53f6 (patch)
tree8d211e5804f7d5303028c51239bfea80a1eee476 /netsimplewifipage.hh
parentdb560f0781fef867eb5fa39913b81ddc29ea7d72 (diff)
downloadhorizon-qt5-eae5c18992184d0ef4efd8766ee95e26100a53f6.tar.gz
horizon-qt5-eae5c18992184d0ef4efd8766ee95e26100a53f6.tar.bz2
horizon-qt5-eae5c18992184d0ef4efd8766ee95e26100a53f6.tar.xz
horizon-qt5-eae5c18992184d0ef4efd8766ee95e26100a53f6.zip
Add UI sketch for Wi-Fi page
Diffstat (limited to 'netsimplewifipage.hh')
-rw-r--r--netsimplewifipage.hh20
1 files changed, 20 insertions, 0 deletions
diff --git a/netsimplewifipage.hh b/netsimplewifipage.hh
new file mode 100644
index 0000000..23a6664
--- /dev/null
+++ b/netsimplewifipage.hh
@@ -0,0 +1,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