comparison widgets/ProgressDialog.h @ 1324:13d9b422f7fe zoom

Merge from default branch
author Chris Cannam
date Mon, 17 Sep 2018 13:51:31 +0100
parents 05d12869043e
children a18e78b9c78b
comparison
equal deleted inserted replaced
1183:57d192e26331 1324:13d9b422f7fe
23 class ProgressDialog : public ProgressReporter 23 class ProgressDialog : public ProgressReporter
24 { 24 {
25 Q_OBJECT 25 Q_OBJECT
26 26
27 public: 27 public:
28 ProgressDialog(QString message, bool cancellable, 28 ProgressDialog(QString message,
29 int timeBeforeShow = 0, QWidget *parent = 0); 29 bool cancellable,
30 int timeBeforeShow = 0,
31 QWidget *parent = 0,
32 Qt::WindowModality modality = Qt::NonModal);
30 virtual ~ProgressDialog(); 33 virtual ~ProgressDialog();
31 34
32 virtual bool isDefinite() const; 35 virtual bool isDefinite() const;
33 virtual void setDefinite(bool definite); 36 virtual void setDefinite(bool definite);
34 37