summaryrefslogtreecommitdiff
path: root/core/launcher/shutdownimpl.h
authorsandman <sandman>2002-06-27 01:44:44 (UTC)
committer sandman <sandman>2002-06-27 01:44:44 (UTC)
commit6d0df38a805c5560b0815df62b212d4be0913154 (patch) (unidiff)
tree3d6e276d877c4bfe2f1960ec62465cb5122bcade /core/launcher/shutdownimpl.h
parented8d1696ca8f0407cb7e6b91cc8d410dede5ccdc (diff)
downloadopie-6d0df38a805c5560b0815df62b212d4be0913154.zip
opie-6d0df38a805c5560b0815df62b212d4be0913154.tar.gz
opie-6d0df38a805c5560b0815df62b212d4be0913154.tar.bz2
Made the launcher dialog "liquid compatible":
remvoed the ui file and hand-coded the gui with smarter palette handling.
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
@@ -22,7 +22,9 @@
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{
@@ -43,5 +45,8 @@ private slots:
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};