author | harlekin <harlekin> | 2003-04-05 14:54:02 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-04-05 14:54:02 (UTC) |
commit | 2bfd529736f1dcf008540be2199cd3887a53c75c (patch) (unidiff) | |
tree | fbbd6ed437c28b77aab1388e025a219ffff1a35f | |
parent | 32faa31960652ee538fd3bcc8c248c850aed1a4b (diff) | |
download | opie-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 -) )
-rw-r--r-- | libopie/owait.cpp | 7 |
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 | |||
@@ -1,79 +1,82 @@ | |||
1 | /* This file is part of the OPIE libraries | 1 | /* This file is part of the OPIE libraries |
2 | Copyright (C) 2003 Maximilian Reiss (harlekin@handhelds.org) | 2 | Copyright (C) 2003 Maximilian Reiss (harlekin@handhelds.org) |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <qlabel.h> | 20 | #include <qlabel.h> |
21 | #include <qlayout.h> | 21 | #include <qlayout.h> |
22 | #include <qtimer.h> | 22 | #include <qtimer.h> |
23 | #include <qpe/qpeapplication.h> | ||
23 | #include <qpainter.h> | 24 | #include <qpainter.h> |
24 | 25 | ||
25 | #include "owait.h" | 26 | #include "owait.h" |
26 | 27 | ||
27 | #include <qpe/resource.h> | 28 | #include <qpe/resource.h> |
28 | 29 | ||
29 | static int frame = 0; | 30 | static int frame = 0; |
30 | 31 | ||
31 | OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) | 32 | OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) |
32 | :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) { | 33 | :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) { |
33 | 34 | ||
34 | QHBoxLayout *hbox = new QHBoxLayout( this ); | 35 | QHBoxLayout *hbox = new QHBoxLayout( this ); |
35 | 36 | ||
36 | m_lb = new QLabel( this ); | 37 | m_lb = new QLabel( this ); |
37 | m_lb->setBackgroundMode ( NoBackground ); | 38 | m_lb->setBackgroundMode ( NoBackground ); |
38 | 39 | ||
39 | hbox->addWidget( m_lb ); | 40 | hbox->addWidget( m_lb ); |
40 | hbox->activate(); | 41 | hbox->activate(); |
41 | 42 | ||
42 | m_pix = Resource::loadPixmap( "BigBusy" ); | 43 | m_pix = Resource::loadPixmap( "BigBusy" ); |
43 | resize( 48, 48 ); | 44 | resize( 48, 48 ); |
44 | 45 | ||
45 | m_timerLength = 10; | 46 | m_timerLength = 10; |
46 | 47 | ||
47 | m_waitTimer = new QTimer( this ); | 48 | m_waitTimer = new QTimer( this ); |
48 | connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) ); | 49 | connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) ); |
49 | } | 50 | } |
50 | 51 | ||
51 | void OWait::timerEvent( QTimerEvent * ) { | 52 | void OWait::timerEvent( QTimerEvent * ) { |
52 | frame = (++frame) % 3; | 53 | frame = (++frame) % 4; |
53 | repaint(); | 54 | repaint(); |
54 | } | 55 | } |
55 | 56 | ||
56 | void OWait::paintEvent( QPaintEvent * ) { | 57 | void OWait::paintEvent( QPaintEvent * ) { |
57 | QPainter p( m_lb ); | 58 | QPainter p( m_lb ); |
58 | p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 ); | 59 | p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 ); |
59 | } | 60 | } |
60 | 61 | ||
61 | void OWait::show() { | 62 | void OWait::show() { |
63 | |||
64 | move( ( ( qApp->desktop()->width() ) / 2 ) - 24, ( ( qApp->desktop()->height() ) / 2 ) - 24 ); | ||
62 | startTimer( 300 ); | 65 | startTimer( 300 ); |
63 | m_waitTimer->start( m_timerLength * 1000, true ); | 66 | m_waitTimer->start( m_timerLength * 1000, true ); |
64 | QDialog::show(); | 67 | QDialog::show(); |
65 | } | 68 | } |
66 | 69 | ||
67 | void OWait::hide() { | 70 | void OWait::hide() { |
68 | killTimers(); | 71 | killTimers(); |
69 | m_waitTimer->stop(); | 72 | m_waitTimer->stop(); |
70 | frame = 0; | 73 | frame = 0; |
71 | QDialog::hide(); | 74 | QDialog::hide(); |
72 | } | 75 | } |
73 | 76 | ||
74 | void OWait::setTimerLength( int length ) { | 77 | void OWait::setTimerLength( int length ) { |
75 | m_timerLength = length; | 78 | m_timerLength = length; |
76 | } | 79 | } |
77 | 80 | ||
78 | OWait::~OWait() { | 81 | OWait::~OWait() { |
79 | } | 82 | } |