summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-10 08:32:14 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-10 08:32:14 -0600
commit423c4fd6e25cc9306b84abceb8f79e8c1a469a7b (patch)
treeefbc4b07d221859c8cb4455812658a5970be7874 /ui/qt5/horizonwizard.cc
parent3e88df0d60dda0ede2c789832cb13c381e532471 (diff)
downloadhorizon-423c4fd6e25cc9306b84abceb8f79e8c1a469a7b.tar.gz
horizon-423c4fd6e25cc9306b84abceb8f79e8c1a469a7b.tar.bz2
horizon-423c4fd6e25cc9306b84abceb8f79e8c1a469a7b.tar.xz
horizon-423c4fd6e25cc9306b84abceb8f79e8c1a469a7b.zip
Qt UI: Initial work for manual network configuration
Diffstat (limited to 'ui/qt5/horizonwizard.cc')
-rw-r--r--ui/qt5/horizonwizard.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc
index 6128d2b..72af147 100644
--- a/ui/qt5/horizonwizard.cc
+++ b/ui/qt5/horizonwizard.cc
@@ -44,6 +44,7 @@ extern "C" {
#include "networkingpage.hh"
#include "networkifacepage.hh"
#include "netsimplewifipage.hh"
+#include "netmanualpage.hh"
#include "netdhcppage.hh"
#include "datetimepage.hh"
#include "hostnamepage.hh"
@@ -211,6 +212,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) {
setPage(Page_Network_Iface, new NetworkIfacePage);
setPage(Page_Network_Wireless, new NetworkSimpleWirelessPage);
setPage(Page_Network_DHCP, new NetDHCPPage);
+ setPage(Page_Network_Manual, new NetManualPage);
setPage(Page_DateTime, new DateTimePage);
setPage(Page_Hostname, new HostnamePage);
setPage(Page_PkgSimple, new PkgSimplePage);