summaryrefslogtreecommitdiff
path: root/ui/qt5/networkingpage.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/networkingpage.hh')
-rw-r--r--ui/qt5/networkingpage.hh20
1 files changed, 20 insertions, 0 deletions
diff --git a/ui/qt5/networkingpage.hh b/ui/qt5/networkingpage.hh
new file mode 100644
index 0000000..3353fb6
--- /dev/null
+++ b/ui/qt5/networkingpage.hh
@@ -0,0 +1,20 @@
+#ifndef NETWORKINGPAGE_HH
+#define NETWORKINGPAGE_HH
+
+#include "horizonwizardpage.hh"
+
+#include <QButtonGroup>
+#include <QRadioButton>
+
+class NetworkingPage : public HorizonWizardPage {
+public:
+ NetworkingPage(QWidget *parent = 0);
+
+ bool isComplete() const;
+ int nextId() const;
+private:
+ QButtonGroup *radioGroup;
+ QRadioButton *simple, *advanced, *skip;
+};
+
+#endif // NETWORKINGPAGE_HH