summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (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
@@ -11,24 +11,25 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include <qlabel.h>
#include <qlayout.h>
#include <qtimer.h>
+#include <qpe/qpeapplication.h>
#include <qpainter.h>
#include "owait.h"
#include <qpe/resource.h>
static int frame = 0;
OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
:QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) {
QHBoxLayout *hbox = new QHBoxLayout( this );
@@ -40,36 +41,38 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
hbox->activate();
m_pix = Resource::loadPixmap( "BigBusy" );
resize( 48, 48 );
m_timerLength = 10;
m_waitTimer = new QTimer( this );
connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) );
}
void OWait::timerEvent( QTimerEvent * ) {
- frame = (++frame) % 3;
+ frame = (++frame) % 4;
repaint();
}
void OWait::paintEvent( QPaintEvent * ) {
QPainter p( m_lb );
p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 );
}
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();
}
void OWait::hide() {
killTimers();
m_waitTimer->stop();
frame = 0;
QDialog::hide();
}
void OWait::setTimerLength( int length ) {
m_timerLength = length;