summaryrefslogtreecommitdiff
path: root/core/launcher/wait.h
Unidiff
Diffstat (limited to 'core/launcher/wait.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/wait.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/launcher/wait.h b/core/launcher/wait.h
index 519b654..6e5e41a 100644
--- a/core/launcher/wait.h
+++ b/core/launcher/wait.h
@@ -21,24 +21,26 @@
21#ifndef __WAIT_H__ 21#ifndef __WAIT_H__
22#define __WAIT_H__ 22#define __WAIT_H__
23 23
24#include <qpe/resource.h> 24#include <qpe/resource.h>
25 25
26#include <qwidget.h> 26#include <qwidget.h>
27#include <qlabel.h>
27#include <qpixmap.h> 28#include <qpixmap.h>
28#include <qpainter.h> 29#include <qpainter.h>
29 30#include "waitpopup.h"
30 31
31class Wait : public QWidget 32class Wait : public QWidget
32{ 33{
33public: 34public:
34 Wait( QWidget *parent ); 35 Wait( QWidget *parent );
35 void setWaiting( bool w ); 36 void setWaiting( bool w );
36 void paintEvent( QPaintEvent * ); 37 void paintEvent( QPaintEvent * );
37 static Wait *getWaitObject(); 38 static Wait *getWaitObject();
38private: 39private:
40 WaitPopup* centralWait;
39 QPixmap pm; 41 QPixmap pm;
40 bool waiting; 42 bool waiting;
41}; 43};
42 44
43 45
44#endif // __WAIT_H__ 46#endif // __WAIT_H__