summaryrefslogtreecommitdiff
path: root/ui/qt5/networkifacepage.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-10 03:54:10 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-10 03:54:10 -0600
commit7fe9e61230de11feb2698443105ecb57f4709c23 (patch)
treed9df0036e8e0e409ed044592ba514e4bc8a1e702 /ui/qt5/networkifacepage.hh
parentd295d6ebbb87bdfe57eb9d398f6758eaf6bc0715 (diff)
downloadhorizon-7fe9e61230de11feb2698443105ecb57f4709c23.tar.gz
horizon-7fe9e61230de11feb2698443105ecb57f4709c23.tar.bz2
horizon-7fe9e61230de11feb2698443105ecb57f4709c23.tar.xz
horizon-7fe9e61230de11feb2698443105ecb57f4709c23.zip
Qt UI: Finish implementing UI.Network.ChooseIface and add help doc
Diffstat (limited to 'ui/qt5/networkifacepage.hh')
-rw-r--r--ui/qt5/networkifacepage.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/qt5/networkifacepage.hh b/ui/qt5/networkifacepage.hh
index bcd37c6..05b0e2b 100644
--- a/ui/qt5/networkifacepage.hh
+++ b/ui/qt5/networkifacepage.hh
@@ -13,12 +13,18 @@
#ifndef NETWORKIFACEPAGE_HH
#define NETWORKIFACEPAGE_HH
+#include <QListWidget>
+
#include "horizonwizardpage.hh"
class NetworkIfacePage : public HorizonWizardPage {
public:
NetworkIfacePage(QWidget *parent = nullptr);
void initializePage() override;
+ bool isComplete() const;
+ int nextId() const;
+private:
+ QListWidget *ifaceList;
};
#endif /* !NETWORKIFACEPAGE_HH */