summaryrefslogtreecommitdiff
path: root/noncore/tools
authorzecke <zecke>2004-08-22 23:17:08 (UTC)
committer zecke <zecke>2004-08-22 23:17:08 (UTC)
commita1cb5750328eb4e6d232568c5cc5b8ba7ef99eb5 (patch) (unidiff)
tree49a955d1eb6e44f9acd8c82908928082fd067409 /noncore/tools
parent3f4e6c92a607424e0af2c551525a2e4915fdc03e (diff)
downloadopie-a1cb5750328eb4e6d232568c5cc5b8ba7ef99eb5.zip
opie-a1cb5750328eb4e6d232568c5cc5b8ba7ef99eb5.tar.gz
opie-a1cb5750328eb4e6d232568c5cc5b8ba7ef99eb5.tar.bz2
Buffer painting which is hopefully flicker free and it works
with Phase and Liquid Styles
Diffstat (limited to 'noncore/tools') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/clock/analogclock.cpp112
-rw-r--r--noncore/tools/clock/analogclock.h3
2 files changed, 64 insertions, 51 deletions
diff --git a/noncore/tools/clock/analogclock.cpp b/noncore/tools/clock/analogclock.cpp
index c5f0155..16ecc5c 100644
--- a/noncore/tools/clock/analogclock.cpp
+++ b/noncore/tools/clock/analogclock.cpp
@@ -20,18 +20,29 @@
20 20
21#include "analogclock.h" 21#include "analogclock.h"
22 22
23#include <qtopia/global.h>
24
23#include <qlayout.h> 25#include <qlayout.h>
24#include <qpainter.h> 26#include <qpainter.h>
25#include <qtopia/global.h> 27#include <qpixmap.h>
28
26 29
27#include <math.h> 30#include <math.h>
28 31
29 const double deg2rad = 0.017453292519943295769;// pi/180 32 const double deg2rad = 0.017453292519943295769;// pi/180
30 33
31AnalogClock::AnalogClock( QWidget *parent, const char *name ) 34AnalogClock::AnalogClock( QWidget *parent, const char *name )
32 : QFrame( parent, name ), clear(false) 35 : QFrame( parent, name )
33{ 36{
34 setMinimumSize(50,50); 37 setMinimumSize(50,50);
38
39 /* initial the buffer pixmap */
40 QRect r = contentsRect();
41 _pixmap = new QPixmap( r.width(), r.height() );
42}
43
44AnalogClock::~AnalogClock() {
45 delete _pixmap;
35} 46}
36 47
37QSizePolicy AnalogClock::sizePolicy() const 48QSizePolicy AnalogClock::sizePolicy() const
@@ -39,15 +50,12 @@ QSizePolicy AnalogClock::sizePolicy() const
39 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); 50 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
40} 51}
41 52
42void AnalogClock::drawContents( QPainter *p ) 53void AnalogClock::drawContents( QPainter * )
43{ 54{
44#if !defined(NO_DEBUG) 55 /* no need to draw... */
45 static bool first = true; 56 if ( !isVisible() )
46 if ( first ) { 57 return;
47 //QTOPIA_PROFILE("first paint event"); 58
48 first = false;
49 }
50#endif
51 59
52 QRect r = contentsRect(); 60 QRect r = contentsRect();
53 61
@@ -56,6 +64,15 @@ void AnalogClock::drawContents( QPainter *p )
56 r.setHeight( r.width() ); 64 r.setHeight( r.width() );
57 } 65 }
58 66
67 /* resize the buffer */
68 if ( r.width() != _pixmap->width() ||
69 r.height() != _pixmap->height() )
70 _pixmap->resize( r.width(), r.height() );
71
72 QPainter p;
73 p.begin( _pixmap );
74
75
59 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 76 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 );
60 77
61 const int w_tick = r.width()/300+1; 78 const int w_tick = r.width()/300+1;
@@ -74,52 +91,50 @@ void AnalogClock::drawContents( QPainter *p )
74 QPoint s1( r.x() + r.width() / 2, r.y() + 8 ); 91 QPoint s1( r.x() + r.width() / 2, r.y() + 8 );
75 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 92 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
76 93
77 QColor color( clear ? backgroundColor() : black ); 94 /* fill the pixmap */
78 QTime time = clear ? prevTime : currTime; 95 _pixmap->fill( this, 0, 0 );
79 96
80 if ( clear && prevTime.secsTo(currTime) > 1 ) {
81 p->eraseRect( rect() );
82 return;
83 }
84 97
85 if ( !clear ) { 98 // draw ticks
86 // draw ticks 99 QColor color = black;
87 p->setPen( QPen( color, w_tick ) ); 100 p.setPen( QPen( color, w_tick ) );
88 for ( int i = 0; i < 12; i++ ) 101 for ( int i = 0; i < 12; i++ )
89 p->drawLine( rotate( center, l1, i * 30 ), rotate( center, l2, i * 30 ) ); 102 p.drawLine( rotate( center, l1, i * 30 ), rotate( center, l2, i * 30 ) );
90 }
91 103
92 if ( !clear || prevTime.minute() != currTime.minute() ||
93 prevTime.hour() != currTime.hour() ) {
94 // draw hour pointer
95 h1 = rotate( center, h1, 30 * ( time.hour() % 12 ) + time.minute() / 2 );
96 h2 = rotate( center, h2, 30 * ( time.hour() % 12 ) + time.minute() / 2 );
97 p->setPen( color );
98 p->setBrush( color );
99 drawHand( p, h1, h2 );
100 }
101 104
102 if ( !clear || prevTime.minute() != currTime.minute() ) { 105 // draw hour pointer
103 // draw minute pointer 106 h1 = rotate( center, h1, 30 * ( currTime.hour() % 12 ) + currTime.minute() / 2 );
104 m1 = rotate( center, m1, time.minute() * 6 ); 107 h2 = rotate( center, h2, 30 * ( currTime.hour() % 12 ) + currTime.minute() / 2 );
105 m2 = rotate( center, m2, time.minute() * 6 ); 108 p.setPen( color );
106 p->setPen( color ); 109 p.setBrush( color );
107 p->setBrush( color ); 110 drawHand( &p, h1, h2 );
108 drawHand( p, m1, m2 ); 111
109 } 112
113 // draw minute pointer
114 m1 = rotate( center, m1, currTime.minute() * 6 );
115 m2 = rotate( center, m2, currTime.minute() * 6 );
116 p.setPen( color );
117 p.setBrush( color );
118 drawHand( &p, m1, m2 );
110 119
111 // draw second pointer 120 // draw second pointer
112 s1 = rotate( center, s1, time.second() * 6 ); 121 s1 = rotate( center, s1, currTime.second() * 6 );
113 s2 = rotate( center, s2, time.second() * 6 ); 122 s2 = rotate( center, s2, currTime.second() * 6 );
114 p->setPen( QPen( color, w_sec ) ); 123 p.setPen( QPen( color, w_sec ) );
115 p->drawLine( s1, s2 ); 124 p.drawLine( s1, s2 );
116 125
117 // cap 126 // cap
118 p->setBrush(color); 127 p.setBrush(color);
119 p->drawEllipse( center.x()-w_hour/2, center.y()-w_hour/2, w_hour, w_hour ); 128 p.drawEllipse( center.x()-w_hour/2, center.y()-w_hour/2, w_hour, w_hour );
129
130 prevTime = currTime;
131
132 p.end();
120 133
121 if ( !clear ) 134 p.begin( this );
122 prevTime = currTime; 135 p.drawPixmap( 0, 0, *_pixmap );
136
137 /* leave */
123} 138}
124 139
125// Dijkstra's bisection algorithm to find the square root as an integer. 140// Dijkstra's bisection algorithm to find the square root as an integer.
@@ -186,9 +201,6 @@ void AnalogClock::drawHand( QPainter *p, QPoint p1, QPoint p2 )
186void AnalogClock::display( const QTime& t ) 201void AnalogClock::display( const QTime& t )
187{ 202{
188 currTime = t; 203 currTime = t;
189 clear = true;
190 repaint( false );
191 clear = false;
192 repaint( false ); 204 repaint( false );
193} 205}
194 206
diff --git a/noncore/tools/clock/analogclock.h b/noncore/tools/clock/analogclock.h
index 3aa035e..2287888 100644
--- a/noncore/tools/clock/analogclock.h
+++ b/noncore/tools/clock/analogclock.h
@@ -28,6 +28,7 @@ class AnalogClock : public QFrame
28 Q_OBJECT 28 Q_OBJECT
29public: 29public:
30 AnalogClock( QWidget *parent=0, const char *name=0 ); 30 AnalogClock( QWidget *parent=0, const char *name=0 );
31 ~AnalogClock();
31 32
32 QSizePolicy sizePolicy() const; 33 QSizePolicy sizePolicy() const;
33 34
@@ -42,7 +43,7 @@ private:
42 43
43 QTime currTime; 44 QTime currTime;
44 QTime prevTime; 45 QTime prevTime;
45 bool clear; 46 QPixmap *_pixmap;
46}; 47};
47 48
48#endif 49#endif