summaryrefslogtreecommitdiff
path: root/ui/qt5/intropage.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-08 20:33:24 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-08 20:33:24 -0600
commit704e0b72e628ff136f1246921eca71dab00e2639 (patch)
tree98a8dfd0d696e83574277e69eed610cc29d04c5f /ui/qt5/intropage.hh
parent47d683d131ed5d34ef6cb8281fe8891dd06ef327 (diff)
downloadhorizon-704e0b72e628ff136f1246921eca71dab00e2639.tar.gz
horizon-704e0b72e628ff136f1246921eca71dab00e2639.tar.bz2
horizon-704e0b72e628ff136f1246921eca71dab00e2639.tar.xz
horizon-704e0b72e628ff136f1246921eca71dab00e2639.zip
Qt UI: Implement UI.Intro.Tools
Diffstat (limited to 'ui/qt5/intropage.hh')
-rw-r--r--ui/qt5/intropage.hh9
1 files changed, 8 insertions, 1 deletions
diff --git a/ui/qt5/intropage.hh b/ui/qt5/intropage.hh
index e1ed3d9..5c50d6d 100644
--- a/ui/qt5/intropage.hh
+++ b/ui/qt5/intropage.hh
@@ -1,12 +1,19 @@
#ifndef WELCOMEPAGE_HH
#define WELCOMEPAGE_HH
+#ifdef HAS_INSTALL_ENV
+#include <QPushButton>
+#endif
#include "horizonwizardpage.hh"
class IntroPage : public HorizonWizardPage {
public:
- IntroPage(QWidget *parent = 0);
+ IntroPage(QWidget *parent = nullptr);
int nextId() const;
+#ifdef HAS_INSTALL_ENV
+private:
+ QPushButton *toolButton;
+#endif
};
#endif // WELCOMEPAGE_HH