summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-10 01:17:58 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-10 01:17:58 -0600
commit7373f047c26807b3834f17f3ed97bab85b05db91 (patch)
treecf7a721c001ba35670d1fab0764e182e8abbf469 /ui/qt5/horizonwizard.hh
parent4dfbc5e1d78e8adb74e4af068cf3b89b3aee26b8 (diff)
downloadhorizon-7373f047c26807b3834f17f3ed97bab85b05db91.tar.gz
horizon-7373f047c26807b3834f17f3ed97bab85b05db91.tar.bz2
horizon-7373f047c26807b3834f17f3ed97bab85b05db91.tar.xz
horizon-7373f047c26807b3834f17f3ed97bab85b05db91.zip
Qt UI: Initial work on Networking page
Diffstat (limited to 'ui/qt5/horizonwizard.hh')
-rw-r--r--ui/qt5/horizonwizard.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.hh b/ui/qt5/horizonwizard.hh
index e4e8897..3f3454b 100644
--- a/ui/qt5/horizonwizard.hh
+++ b/ui/qt5/horizonwizard.hh
@@ -15,6 +15,7 @@
#include <QShortcut>
#include <QWizard>
+#include <map>
#include <string>
class HorizonWizard : public QWizard {
@@ -49,8 +50,18 @@ public:
#endif /* !HAS_INSTALL_ENV */
};
+ enum NetworkInterfaceType {
+ Ethernet,
+ Wireless,
+ Bonded,
+ Unknown
+ };
+
HorizonWizard(QWidget *parent = nullptr);
QShortcut *f1, *f3, *f5, *f8;
+
+ std::map<std::string, NetworkInterfaceType> interfaces;
+ std::string chosen_auto_iface;
};
#endif /* !HORIZONWIZARD_HH */