summaryrefslogtreecommitdiff
path: root/core/launcher/wait.cpp
Side-by-side diff
Diffstat (limited to 'core/launcher/wait.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/wait.cpp21
1 files changed, 17 insertions, 4 deletions
diff --git a/core/launcher/wait.cpp b/core/launcher/wait.cpp
index 059e6f1..e1832dd 100644
--- a/core/launcher/wait.cpp
+++ b/core/launcher/wait.cpp
@@ -21,6 +21,7 @@
#include "wait.h"
#include <qpe/resource.h>
+#include <qpe/config.h>
#include <qwidget.h>
#include <qpixmap.h>
@@ -35,6 +36,8 @@ Wait::Wait( QWidget *parent ) : QWidget( parent ),
{
setFixedSize( pm.size() );
lastWaitObject = this;
+ centralWait = new WaitPopup( 0L );
+ centralWait->hide();
hide();
}
@@ -47,11 +50,21 @@ Wait *Wait::getWaitObject()
void Wait::setWaiting( bool w )
{
+ Config cfg ( "Launcher" );
+ cfg. setGroup ( "GUI" );
+
+
waiting = w;
- if ( w )
- show();
- else
- hide();
+ if ( w ) {
+ if ( cfg. readBoolEntry ( "BigBusy" ) ) {
+ centralWait->show();
+ } else {
+ show();
+ }
+ } else {
+ centralWait->hide();
+ hide();
+ }
}