summaryrefslogtreecommitdiff
path: root/ui/qt5/runner/executorwizard.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-10 11:05:47 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-10 11:05:47 -0600
commitde766db11e5677dc830bfdf0a383e887f6de3404 (patch)
tree7d244d8727c294b3996436455beb78994e6e7e3c /ui/qt5/runner/executorwizard.hh
parent04f0270f9a5f28ec1d2fa029d7ee78c8d0e5f9b2 (diff)
downloadhorizon-de766db11e5677dc830bfdf0a383e887f6de3404.tar.gz
horizon-de766db11e5677dc830bfdf0a383e887f6de3404.tar.bz2
horizon-de766db11e5677dc830bfdf0a383e887f6de3404.tar.xz
horizon-de766db11e5677dc830bfdf0a383e887f6de3404.zip
Qt Runner: Add method to automatically close after completion
Diffstat (limited to 'ui/qt5/runner/executorwizard.hh')
-rw-r--r--ui/qt5/runner/executorwizard.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/qt5/runner/executorwizard.hh b/ui/qt5/runner/executorwizard.hh
index eb09bcc..f1f3662 100644
--- a/ui/qt5/runner/executorwizard.hh
+++ b/ui/qt5/runner/executorwizard.hh
@@ -23,8 +23,11 @@ public:
Page_Finished
};
- ExecutorWizard(QWidget *parent = nullptr);
+ ExecutorWizard(QWidget *parent = nullptr, bool automatic = false);
void reject();
+ bool isAutomatic() { return this->automatic; };
+private:
+ bool automatic;
};
#endif /* !EXECUTORWIZARD_HH */