-rw-r--r-- | libopie/owait.cpp | 7 | ||||
-rw-r--r-- | libopie/owait.h | 1 |
2 files changed, 5 insertions, 3 deletions
diff --git a/libopie/owait.cpp b/libopie/owait.cpp index 7ed66eb..c90bb72 100644 --- a/libopie/owait.cpp +++ b/libopie/owait.cpp | |||
@@ -20,63 +20,64 @@ | |||
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 <qpe/qpeapplication.h> |
24 | #include <qpainter.h> | 24 | #include <qpainter.h> |
25 | 25 | ||
26 | #include "owait.h" | 26 | #include "owait.h" |
27 | 27 | ||
28 | #include <qpe/resource.h> | 28 | #include <qpe/resource.h> |
29 | 29 | ||
30 | static int frame = 0; | 30 | static int frame = 0; |
31 | 31 | ||
32 | OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) | 32 | OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) |
33 | :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) { | 33 | :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) { |
34 | 34 | ||
35 | QHBoxLayout *hbox = new QHBoxLayout( this ); | 35 | QHBoxLayout *hbox = new QHBoxLayout( this ); |
36 | 36 | ||
37 | m_lb = new QLabel( this ); | 37 | m_lb = new QLabel( this ); |
38 | m_lb->setBackgroundMode ( NoBackground ); | 38 | m_lb->setBackgroundMode ( NoBackground ); |
39 | 39 | ||
40 | hbox->addWidget( m_lb ); | 40 | hbox->addWidget( m_lb ); |
41 | hbox->activate(); | 41 | hbox->activate(); |
42 | 42 | ||
43 | m_pix = Resource::loadPixmap( "BigBusy" ); | 43 | m_pix = Resource::loadPixmap( "BigBusy" ); |
44 | resize( 48, 48 ); | 44 | m_aniSize = m_pix.height(); |
45 | resize( m_aniSize, m_aniSize ); | ||
45 | 46 | ||
46 | m_timerLength = 10; | 47 | m_timerLength = 10; |
47 | 48 | ||
48 | m_waitTimer = new QTimer( this ); | 49 | m_waitTimer = new QTimer( this ); |
49 | connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) ); | 50 | connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) ); |
50 | } | 51 | } |
51 | 52 | ||
52 | void OWait::timerEvent( QTimerEvent * ) { | 53 | void OWait::timerEvent( QTimerEvent * ) { |
53 | frame = (++frame) % 4; | 54 | frame = (++frame) % 4; |
54 | repaint(); | 55 | repaint(); |
55 | } | 56 | } |
56 | 57 | ||
57 | void OWait::paintEvent( QPaintEvent * ) { | 58 | void OWait::paintEvent( QPaintEvent * ) { |
58 | QPainter p( m_lb ); | 59 | QPainter p( m_lb ); |
59 | p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 ); | 60 | p.drawPixmap( 0, 0, m_pix, m_aniSize * frame, 0, m_aniSize, m_aniSize ); |
60 | } | 61 | } |
61 | 62 | ||
62 | void OWait::show() { | 63 | void OWait::show() { |
63 | 64 | ||
64 | move( ( ( qApp->desktop()->width() ) / 2 ) - 24, ( ( qApp->desktop()->height() ) / 2 ) - 24 ); | 65 | move( ( ( qApp->desktop()->width() ) / 2 ) - ( m_aniSize / 2 ), ( ( qApp->desktop()->height() ) / 2 ) - ( m_aniSize / 2 ) ); |
65 | startTimer( 300 ); | 66 | startTimer( 300 ); |
66 | m_waitTimer->start( m_timerLength * 1000, true ); | 67 | m_waitTimer->start( m_timerLength * 1000, true ); |
67 | QDialog::show(); | 68 | QDialog::show(); |
68 | } | 69 | } |
69 | 70 | ||
70 | void OWait::hide() { | 71 | void OWait::hide() { |
71 | killTimers(); | 72 | killTimers(); |
72 | m_waitTimer->stop(); | 73 | m_waitTimer->stop(); |
73 | frame = 0; | 74 | frame = 0; |
74 | QDialog::hide(); | 75 | QDialog::hide(); |
75 | } | 76 | } |
76 | 77 | ||
77 | void OWait::setTimerLength( int length ) { | 78 | void OWait::setTimerLength( int length ) { |
78 | m_timerLength = length; | 79 | m_timerLength = length; |
79 | } | 80 | } |
80 | 81 | ||
81 | OWait::~OWait() { | 82 | OWait::~OWait() { |
82 | } | 83 | } |
diff --git a/libopie/owait.h b/libopie/owait.h index 98409cf..d22e141 100644 --- a/libopie/owait.h +++ b/libopie/owait.h | |||
@@ -42,27 +42,28 @@ public: | |||
42 | * reimplemented for control reasons | 42 | * reimplemented for control reasons |
43 | */ | 43 | */ |
44 | void show(); | 44 | void show(); |
45 | 45 | ||
46 | /** | 46 | /** |
47 | * Set the time before the icon will be automaticly hidden | 47 | * Set the time before the icon will be automaticly hidden |
48 | * @param length - time in seconds | 48 | * @param length - time in seconds |
49 | */ | 49 | */ |
50 | void setTimerLength( int length ); | 50 | void setTimerLength( int length ); |
51 | 51 | ||
52 | public slots: | 52 | public slots: |
53 | /** | 53 | /** |
54 | * reimplemented for control reasons | 54 | * reimplemented for control reasons |
55 | */ | 55 | */ |
56 | void hide(); | 56 | void hide(); |
57 | 57 | ||
58 | private: | 58 | private: |
59 | void timerEvent( QTimerEvent * ) ; | 59 | void timerEvent( QTimerEvent * ) ; |
60 | void paintEvent( QPaintEvent * ); | 60 | void paintEvent( QPaintEvent * ); |
61 | 61 | ||
62 | QPixmap m_pix; | 62 | QPixmap m_pix; |
63 | QLabel *m_lb; | 63 | QLabel *m_lb; |
64 | QTimer *m_waitTimer; | 64 | QTimer *m_waitTimer; |
65 | int m_timerLength; | 65 | int m_timerLength; |
66 | int m_aniSize; | ||
66 | }; | 67 | }; |
67 | 68 | ||
68 | #endif | 69 | #endif |