Mercurial > hg > svgui
comparison widgets/ProgressDialog.h @ 1268:05d12869043e
Formatting changes to align more with SV style conventions
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 17 Apr 2018 10:47:38 +0100 |
parents | b68f3162b5a8 |
children | a18e78b9c78b |
comparison
equal
deleted
inserted
replaced
1267:b68f3162b5a8 | 1268:05d12869043e |
---|---|
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( | 28 ProgressDialog(QString message, |
29 QString message, | 29 bool cancellable, |
30 bool cancellable, | 30 int timeBeforeShow = 0, |
31 int timeBeforeShow = 0, | 31 QWidget *parent = 0, |
32 QWidget *parent = 0, | 32 Qt::WindowModality modality = Qt::NonModal); |
33 Qt::WindowModality modality = Qt::NonModal | |
34 ); | |
35 virtual ~ProgressDialog(); | 33 virtual ~ProgressDialog(); |
36 | 34 |
37 virtual bool isDefinite() const; | 35 virtual bool isDefinite() const; |
38 virtual void setDefinite(bool definite); | 36 virtual void setDefinite(bool definite); |
39 | 37 |