summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.hh
diff options
context:
space:
mode:
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 */