diff options
author | deva <deva> | 2009-03-20 13:13:17 +0000 |
---|---|---|
committer | deva <deva> | 2009-03-20 13:13:17 +0000 |
commit | 0735c0e1ee8f4fc75c44b8e5ef2971c46392339d (patch) | |
tree | b8c337ab4fcc65cc328386e9a7c5e5d5d014833e /client | |
parent | 8b21fec030a477c2d921461628afc20adc8f343b (diff) |
Fixed wierd bug introduced when upgrading to Qt4.5.
Diffstat (limited to 'client')
-rw-r--r-- | client/collapser.cc | 23 | ||||
-rw-r--r-- | client/collapser.h | 7 |
2 files changed, 21 insertions, 9 deletions
diff --git a/client/collapser.cc b/client/collapser.cc index ff1ab69..7d95946 100644 --- a/client/collapser.cc +++ b/client/collapser.cc @@ -36,6 +36,11 @@ Collapser::Collapser(QWidget *collapsed, QWidget *expanded, bool setcollapsed) this->collapsed = NULL; this->expanded = NULL; + timer = new QTimer(this); + timer->setSingleShot(true); + timer->setInterval(ANIM_INTERVAL); + connect(timer, SIGNAL(timeout()), this, SLOT(anim())); + setLayout(new QHBoxLayout()); layout()->setContentsMargins(0,0,0,0); @@ -110,10 +115,10 @@ void Collapser::collapse() emit collapsing(); t_anim.start(); + printf("(%d) collapsing\n", (int)this); is_collapsed = true; - killTimer(timer_id); - timer_id = startTimer(ANIM_INTERVAL); + timer->start(); } void Collapser::expand() @@ -121,6 +126,7 @@ void Collapser::expand() emit expanding(); t_anim.start(); + printf("(%d) expanding\n", (int)this); // show expanded if(collapsed) { @@ -134,8 +140,7 @@ void Collapser::expand() } is_collapsed = false; - killTimer(timer_id); - timer_id = startTimer(ANIM_INTERVAL); + timer->start(); } void Collapser::toggleCollapse() @@ -158,9 +163,10 @@ void Collapser::anim() e_height = sz.height(); } - killTimer(timer_id); + // killTimer(timer_id); double x = (double)(t_anim.elapsed()) / (double)ANIM_TIME; + printf("(%d) x: %f\n", (int)this, x); double y = 1; if(x < 1) { @@ -174,7 +180,9 @@ void Collapser::anim() } setFixedHeight(height); - timer_id = startTimer(ANIM_INTERVAL); + // timer_id = startTimer(ANIM_INTERVAL); + timer->start(); + } else { if(is_collapsed) { @@ -196,8 +204,9 @@ void Collapser::anim() } } - +/* void Collapser::timerEvent(QTimerEvent *) { anim(); } +*/ diff --git a/client/collapser.h b/client/collapser.h index 2a3581b..d74a4cf 100644 --- a/client/collapser.h +++ b/client/collapser.h @@ -29,6 +29,7 @@ #include <QWidget> #include <QTime> +#include <QTimer> class Collapser : public QWidget { Q_OBJECT @@ -50,13 +51,14 @@ public slots: void collapse(); void expand(); void toggleCollapse(); + void anim(); signals: void collapsing(); void expanding(); protected: - void timerEvent(QTimerEvent *); + // void timerEvent(QTimerEvent *); private: QWidget *collapsed; @@ -64,9 +66,10 @@ private: bool is_collapsed; - void anim(); QTime t_anim; int timer_id; + + QTimer *timer; }; #endif/*__PRACRO_COLLAPSER_H__*/ |