diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-08 02:38:58 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-08 02:38:58 -0600 |
commit | 386ff62ca3aba790f9831ee7c194d24f6fb781fe (patch) | |
tree | 9bb4233e965f3fe71224fd0a5983c1e631787ae4 /ui/qt5/networkingpage.hh | |
parent | 561db34595bd4181fde3781d3a00bab9a6d1403f (diff) | |
download | horizon-386ff62ca3aba790f9831ee7c194d24f6fb781fe.tar.gz horizon-386ff62ca3aba790f9831ee7c194d24f6fb781fe.tar.bz2 horizon-386ff62ca3aba790f9831ee7c194d24f6fb781fe.tar.xz horizon-386ff62ca3aba790f9831ee7c194d24f6fb781fe.zip |
UI: Import some of the 2016 prototype - welcome to Qt UI development
Diffstat (limited to 'ui/qt5/networkingpage.hh')
-rw-r--r-- | ui/qt5/networkingpage.hh | 20 |
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 |