summaryrefslogtreecommitdiff
path: root/libopie
authorharlekin <harlekin>2003-04-05 14:54:02 (UTC)
committer harlekin <harlekin>2003-04-05 14:54:02 (UTC)
commit2bfd529736f1dcf008540be2199cd3887a53c75c (patch) (side-by-side diff)
treefbbd6ed437c28b77aab1388e025a219ffff1a35f /libopie
parent32faa31960652ee538fd3bcc8c248c850aed1a4b (diff)
downloadopie-2bfd529736f1dcf008540be2199cd3887a53c75c.zip
opie-2bfd529736f1dcf008540be2199cd3887a53c75c.tar.gz
opie-2bfd529736f1dcf008540be2199cd3887a53c75c.tar.bz2
get the animation right and allways show the busy indicator in the middle of the screen ( in all rotations -) )
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/owait.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/libopie/owait.cpp b/libopie/owait.cpp
index c7c4445..7ed66eb 100644
--- a/libopie/owait.cpp
+++ b/libopie/owait.cpp
@@ -20,6 +20,7 @@
#include <qlabel.h>
#include <qlayout.h>
#include <qtimer.h>
+#include <qpe/qpeapplication.h>
#include <qpainter.h>
#include "owait.h"
@@ -49,7 +50,7 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
}
void OWait::timerEvent( QTimerEvent * ) {
- frame = (++frame) % 3;
+ frame = (++frame) % 4;
repaint();
}
@@ -59,8 +60,10 @@ void OWait::paintEvent( QPaintEvent * ) {
}
void OWait::show() {
+
+ move( ( ( qApp->desktop()->width() ) / 2 ) - 24, ( ( qApp->desktop()->height() ) / 2 ) - 24 );
startTimer( 300 );
- m_waitTimer->start( m_timerLength * 1000, true );
+ m_waitTimer->start( m_timerLength * 1000, true );
QDialog::show();
}