summaryrefslogtreecommitdiff
path: root/core/launcher/shutdownimpl.h
Unidiff
Diffstat (limited to 'core/launcher/shutdownimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/shutdownimpl.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/core/launcher/shutdownimpl.h b/core/launcher/shutdownimpl.h
index 54668f3..462f347 100644
--- a/core/launcher/shutdownimpl.h
+++ b/core/launcher/shutdownimpl.h
@@ -20,11 +20,13 @@
20#ifndef SHUTDOWNIMPL_H 20#ifndef SHUTDOWNIMPL_H
21#define SHUTDOWNIMPL_H 21#define SHUTDOWNIMPL_H
22 22
23#include "shutdown.h" 23#include <qwidget.h>
24 24
25class QTimer; 25class QTimer;
26class QLabel;
27class QProgressBar;
26 28
27class ShutdownImpl : public Shutdown 29class ShutdownImpl : public QWidget
28{ 30{
29 Q_OBJECT 31 Q_OBJECT
30public: 32public:
@@ -41,9 +43,12 @@ private slots:
41 void timeout(); 43 void timeout();
42 44
43private: 45private:
44 QTimer *timer; 46 QTimer *m_timer;
45 int progress; 47 int m_counter;
46 Type operation; 48 Type m_operation;
49
50 QLabel * m_info;
51 QProgressBar *m_progress;
47}; 52};
48 53
49#endif 54#endif