summaryrefslogtreecommitdiff
path: root/noncore/tools/clock/clock.cpp
Unidiff
Diffstat (limited to 'noncore/tools/clock/clock.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/clock/clock.cpp313
1 files changed, 235 insertions, 78 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp
index ef93e11..d5d77bc 100644
--- a/noncore/tools/clock/clock.cpp
+++ b/noncore/tools/clock/clock.cpp
@@ -10,60 +10,72 @@
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "clock.h" 21#include "clock.h"
22#include "setAlarm.h"
22 23
23#include <qpe/qpeapplication.h> 24#include <qpe/qpeapplication.h>
24#include <qpe/qcopenvelope_qws.h> 25#include <qpe/qcopenvelope_qws.h>
25#include <qpe/config.h> 26#include <qpe/config.h>
26#include <qpe/timestring.h> 27#include <qpe/timestring.h>
28#include <qpe/alarmserver.h>
29#include <qpe/sound.h>
30#include <qpe/resource.h>
31#include <qsound.h>
32#include <qtimer.h>
27 33
28#include <qlcdnumber.h> 34#include <qlcdnumber.h>
35#include <qslider.h>
29#include <qlabel.h> 36#include <qlabel.h>
30#include <qlayout.h> 37#include <qlayout.h>
31#include <qtimer.h> 38#include <qtimer.h>
32#include <qpushbutton.h> 39#include <qpushbutton.h>
33#include <qradiobutton.h> 40#include <qradiobutton.h>
34#include <qbuttongroup.h> 41#include <qbuttongroup.h>
35#include <qpainter.h> 42#include <qpainter.h>
43#include <qmessagebox.h>
44#include <qdatetime.h>
36 45
37#include <math.h> 46#include <math.h>
38 47
39 const double deg2rad = 0.017453292519943295769;// pi/180 48const double deg2rad = 0.017453292519943295769; // pi/180
40const int sw_prec = 2; 49const int sw_prec = 2;
41 50
42static void toggleScreenSaver( bool on ) 51static void toggleScreenSaver( bool on )
43{ 52{
44 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)" ); 53 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)" );
45 e << (on ? QPEApplication::Enable: QPEApplication::DisableSuspend ); 54 e << (on ? QPEApplication::Enable: QPEApplication::DisableSuspend );
46} 55}
47 56
48Clock::Clock( QWidget * parent, const char * name, WFlags f ) 57Clock::Clock( QWidget * parent, const char * name, WFlags f )
49 : QVBox( parent, name , f ) 58 : QVBox( parent, name , f )
50{ 59{
51 setSpacing( 4 ); 60 setSpacing( 4 );
52 setMargin( 1 ); 61 setMargin( 1 );
53 62
54 Config config( "qpe" ); 63 Config config( "qpe" );
55 config.setGroup("Time"); 64 config.setGroup("Time");
56 ampm = config.readBoolEntry( "AMPM", TRUE ); 65 ampm = config.readBoolEntry( "AMPM", TRUE );
57 66
67 snoozeBtn = new QPushButton ( this);
68 snoozeBtn->setText( tr( "Snooze" ) );
69
58 aclock = new AnalogClock( this ); 70 aclock = new AnalogClock( this );
59 aclock->display( QTime::currentTime() ); 71 aclock->display( QTime::currentTime() );
60 aclock->setLineWidth( 2 ); 72 aclock->setLineWidth( 2 );
61 73
62 QHBox *hb = new QHBox( this ); 74 QHBox *hb = new QHBox( this );
63 hb->setMargin( 0 ); 75 hb->setMargin( 0 );
64 QWidget *space = new QWidget( hb ); 76 QWidget *space = new QWidget( hb );
65 lcd = new QLCDNumber( hb ); 77 lcd = new QLCDNumber( hb );
66 lcd->setSegmentStyle( QLCDNumber::Flat ); 78 lcd->setSegmentStyle( QLCDNumber::Flat );
67 lcd->setFrameStyle( QFrame::NoFrame ); 79 lcd->setFrameStyle( QFrame::NoFrame );
68 lcd->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ) ); 80 lcd->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ) );
69 lcd->setFixedHeight( 23 ); 81 lcd->setFixedHeight( 23 );
@@ -89,161 +101,306 @@ Clock::Clock( QWidget * parent, const char * name, WFlags f )
89 clockRB = new QRadioButton ( tr( "Clock" ), controls ); 101 clockRB = new QRadioButton ( tr( "Clock" ), controls );
90 gl->addWidget( clockRB, 0, 0 ); 102 gl->addWidget( clockRB, 0, 0 );
91 grp->insert( clockRB ); 103 grp->insert( clockRB );
92 104
93 swatchRB = new QRadioButton ( tr( "Stopwatch" ), controls ); 105 swatchRB = new QRadioButton ( tr( "Stopwatch" ), controls );
94 gl->addWidget( swatchRB, 1, 0 ); 106 gl->addWidget( swatchRB, 1, 0 );
95 grp->insert( swatchRB ); 107 grp->insert( swatchRB );
96 108
97 connect( grp, SIGNAL(clicked(int)), this, SLOT(modeSelect(int)) ); 109 connect( grp, SIGNAL(clicked(int)), this, SLOT(modeSelect(int)) );
98 grp->setButton( 0 ); 110 grp->setButton( 0 );
99 111
100 set = new QPushButton ( controls ); 112 set = new QPushButton ( controls );
113 set->setMaximumSize(50,30);
101 gl->addWidget( set, 0, 1 ); 114 gl->addWidget( set, 0, 1 );
102 set->setText( tr( "Start" ) ); 115 set->setText( tr( "Start" ) );
103 set->setEnabled( FALSE ); 116 set->setEnabled( FALSE );
104 grp->insert( set ); 117 grp->insert( set );
105 118
106 reset = new QPushButton ( controls ); 119 reset = new QPushButton ( controls );
107 gl->addWidget( reset, 1, 1 ); 120 gl->addWidget( reset, 1, 1 );
108 reset->setText( tr( "Reset" ) ); 121 reset->setText( tr( "Reset" ) );
109 reset->setEnabled( FALSE ); 122 reset->setEnabled( FALSE );
110 grp->insert( reset ); 123 grp->insert( reset );
111 124
125 alarmOffBtn = new QPushButton ( controls );
126 alarmOffBtn->setMaximumSize(60,30);
127 gl->addWidget( alarmOffBtn, 0, 2 );
128
129 alarmBtn = new QPushButton ( controls );
130 alarmBtn->setMaximumSize(60,30);
131 gl->addWidget( alarmBtn, 1, 2 );
132 alarmBtn->setText( tr( "Set Alarm" ) );
133
112 connect( set, SIGNAL( pressed() ), SLOT( slotSet() ) ); 134 connect( set, SIGNAL( pressed() ), SLOT( slotSet() ) );
113 connect( reset, SIGNAL( clicked() ), SLOT( slotReset() ) ); 135 connect( reset, SIGNAL( clicked() ), SLOT( slotReset() ) );
114 136
137 connect( alarmBtn, SIGNAL( clicked() ), SLOT( slotSetAlarm() ) );
138 connect( snoozeBtn, SIGNAL( clicked() ), SLOT( slotSnooze() ) );
139 connect( alarmOffBtn, SIGNAL( clicked() ), SLOT( slotToggleAlarm() ) );
140
141 connect( qApp, SIGNAL(appMessage(const QCString&, const QByteArray&)),
142 this, SLOT(appMessage(const QCString&, const QByteArray&)) );
143
115 t = new QTimer( this ); 144 t = new QTimer( this );
116 connect( t, SIGNAL( timeout() ), SLOT( updateClock() ) ); 145 connect( t, SIGNAL( timeout() ), SLOT( updateClock() ) );
117 t->start( 1000 ); 146 t->start( 1000 );
118 147
119 connect( qApp, SIGNAL( timeChanged() ), SLOT( updateClock() ) ); 148 connect( qApp, SIGNAL( timeChanged() ), SLOT( updateClock() ) );
120 149
121 swatch_running = FALSE; 150 swatch_running = FALSE;
122 swatch_totalms = 0; 151 swatch_totalms = 0;
123 152
124 connect( qApp, SIGNAL(clockChanged(bool)), this, SLOT(changeClock(bool)) ); 153 connect( qApp, SIGNAL(clockChanged(bool)), this, SLOT(changeClock(bool)) );
125 154
155 QString tmp = config.readEntry("clockAlarmHour", "");
156 bool ok;
157 hour = tmp.toInt(&ok,10);
158 tmp = config.readEntry("clockAlarmMinute","");
159 minute = tmp.toInt(&ok,10);
160
161 if( config.readEntry("clockAlarmSet","FALSE") == "TRUE") {
162 alarmOffBtn->setText( tr( "Alarm On" ) );
163 alarmBool=TRUE;
164 snoozeBtn->show();
165 } else {
166 alarmOffBtn->setText( tr( "Alarm Off" ) );
167 alarmBool=FALSE;
168 snoozeBtn->hide();
169 }
170
126 QTimer::singleShot( 0, this, SLOT(updateClock()) ); 171 QTimer::singleShot( 0, this, SLOT(updateClock()) );
127 modeSelect(0); 172 modeSelect(0);
128} 173}
129 174
130Clock::~Clock() 175Clock::~Clock()
131{ 176{
132 toggleScreenSaver( true ); 177 toggleScreenSaver( true );
133} 178}
134 179
135void Clock::updateClock() 180void Clock::updateClock()
136{ 181{
137 if ( clockRB->isChecked() ) { 182 if ( clockRB->isChecked() ) {
138 QTime tm = QDateTime::currentDateTime().time(); 183 QTime tm = QDateTime::currentDateTime().time();
139 QString s; 184 QString s;
140 if ( ampm ) { 185 if ( ampm ) {
141 int hour = tm.hour(); 186 int hour = tm.hour();
142 if (hour == 0) 187 if (hour == 0)
143 hour = 12; 188 hour = 12;
144 if (hour > 12) 189 if (hour > 12)
145 hour -= 12; 190 hour -= 12;
146 s.sprintf( "%2d%c%02d", hour, ':', tm.minute() ); 191 s.sprintf( "%2d%c%02d", hour, ':', tm.minute() );
147 ampmLabel->setText( (tm.hour() >= 12) ? "PM" : "AM" ); 192 ampmLabel->setText( (tm.hour() >= 12) ? "PM" : "AM" );
148 ampmLabel->show(); 193 ampmLabel->show();
149 } else { 194 } else {
150 s.sprintf( "%2d%c%02d", tm.hour(), ':', tm.minute() ); 195 s.sprintf( "%2d%c%02d", tm.hour(), ':', tm.minute() );
151 ampmLabel->hide(); 196 ampmLabel->hide();
152 } 197 }
153 lcd->display( s ); 198 lcd->display( s );
154 lcd->repaint( FALSE ); 199 lcd->repaint( FALSE );
155 aclock->display( QTime::currentTime() ); 200 aclock->display( QTime::currentTime() );
156 date->setText( TimeString::longDateString( QDate::currentDate() ) ); 201 date->setText( TimeString::longDateString( QDate::currentDate() ) );
157 } else { 202 } else {
158 QTime swatch_time; 203 QTime swatch_time;
159 QString lcdtext; 204 QString lcdtext;
160 int totalms = swatch_totalms; 205 int totalms = swatch_totalms;
161 if ( swatch_running ) 206 if ( swatch_running )
162 totalms += swatch_start.elapsed(); 207 totalms += swatch_start.elapsed();
163 swatch_time = QTime(0,0,0).addMSecs(totalms); 208 swatch_time = QTime(0,0,0).addMSecs(totalms);
164 QString d = swatch_running ? QString(" ") 209 QString d = swatch_running ? QString(" ")
165 : QString::number(totalms%1000+1000); 210 : QString::number(totalms%1000+1000);
166 lcdtext = swatch_time.toString() + "." + d.right(3).left(sw_prec); 211 lcdtext = swatch_time.toString() + "." + d.right(3).left(sw_prec);
167 lcd->display( lcdtext ); 212 lcd->display( lcdtext );
168 lcd->repaint( FALSE ); 213 lcd->repaint( FALSE );
169 aclock->display( swatch_time ); 214 aclock->display( swatch_time );
170 date->setText( TimeString::longDateString( QDate::currentDate() ) ); 215 date->setText( TimeString::longDateString( QDate::currentDate() ) );
171 } 216 }
172} 217}
173 218
174void Clock::changeClock( bool a ) 219void Clock::changeClock( bool a )
175{ 220{
176 ampm = a; 221 ampm = a;
177 updateClock(); 222 updateClock();
178} 223}
179 224
180void Clock::clearClock( void ) 225void Clock::clearClock( void )
181{ 226{
182 lcd->display( QTime( 0,0,0 ).toString() ); 227 lcd->display( QTime( 0,0,0 ).toString() );
183 aclock->display( QTime( 0,0,0 ) ); 228 aclock->display( QTime( 0,0,0 ) );
184} 229}
185 230
186void Clock::slotSet() 231void Clock::slotSet()
187{ 232{
188 if ( t->isActive() ) { 233 if ( t->isActive() ) {
189 swatch_totalms += swatch_start.elapsed(); 234 swatch_totalms += swatch_start.elapsed();
190 set->setText( tr( "Start" ) ); 235 set->setText( tr( "Start" ) );
191 t->stop(); 236 t->stop();
192 swatch_running = FALSE; 237 swatch_running = FALSE;
193 toggleScreenSaver( TRUE ); 238 toggleScreenSaver( TRUE );
194 updateClock(); 239 updateClock();
195 } else { 240 } else {
196 swatch_start.start(); 241 swatch_start.start();
197 set->setText( tr( "Stop" ) ); 242 set->setText( tr( "Stop" ) );
198 t->start( 1000 ); 243 t->start( 1000 );
199 swatch_running = TRUE; 244 swatch_running = TRUE;
200 // disable screensaver while stop watch is running 245 // disable screensaver while stop watch is running
201 toggleScreenSaver( FALSE ); 246 toggleScreenSaver( FALSE );
202 } 247 }
203} 248}
204 249
205void Clock::slotReset() 250void Clock::slotReset()
206{ 251{
207 t->stop(); 252 t->stop();
208 swatch_start.start(); 253 swatch_start.start();
209 swatch_totalms = 0; 254 swatch_totalms = 0;
210 255
211 if (swatch_running ) 256 if (swatch_running )
212 t->start(1000); 257 t->start(1000);
213 258
214 updateClock(); 259 updateClock();
215} 260}
216 261
217void Clock::modeSelect( int m ) 262void Clock::modeSelect( int m )
218{ 263{
219 if ( m ) { 264 if ( m ) {
220 lcd->setNumDigits( 8+1+sw_prec ); 265 lcd->setNumDigits( 8+1+sw_prec );
221 lcd->setMinimumWidth( lcd->sizeHint().width() ); 266 lcd->setMinimumWidth( lcd->sizeHint().width() );
222 set->setEnabled( TRUE ); 267 set->setEnabled( TRUE );
223 reset->setEnabled( TRUE ); 268 reset->setEnabled( TRUE );
224 ampmLabel->hide(); 269 ampmLabel->hide();
225 270
226 if ( !swatch_running ) 271 if ( !swatch_running )
227 t->stop(); 272 t->stop();
228 } else { 273 } else {
229 lcd->setNumDigits( 5 ); 274 lcd->setNumDigits( 5 );
230 lcd->setMinimumWidth( lcd->sizeHint().width() ); 275 lcd->setMinimumWidth( lcd->sizeHint().width() );
231 set->setEnabled( FALSE ); 276 set->setEnabled( FALSE );
232 reset->setEnabled( FALSE ); 277 reset->setEnabled( FALSE );
233 t->start(1000); 278 t->start(1000);
234 } 279 }
235 updateClock(); 280 updateClock();
236} 281}
237 282
283//this sets the alarm time
284void Clock::slotSetAlarm()
285{
286 if( !snoozeBtn->isHidden())
287 slotToggleAlarm();
288 Set_Alarm *setAlarmDlg;
289 setAlarmDlg = new Set_Alarm(this,"SetAlarm", TRUE);
290 int result = setAlarmDlg->exec();
291 if(result == 1) {
292 Config config( "qpe" );
293 config.setGroup("Time");
294 QString tmp;
295 hour = setAlarmDlg->Hour_Slider->value();
296 minute = setAlarmDlg->Minute_Slider->value();
297 snoozeTime=setAlarmDlg->SnoozeSlider->value();
298 if(ampm) {
299 if(setAlarmDlg->Pm_RadioButton->isChecked() && hour < 12 )
300 hour+=12;
301 }
302 config.writeEntry("clockAlarmHour", tmp.setNum( hour ),10);
303 config.writeEntry("clockAlarmMinute",tmp.setNum( minute ),10);
304 config.writeEntry("clockAlarmSnooze",tmp.setNum( snoozeTime ),10);
305 config.write();
306 }
307}
308
309void Clock::slotSnooze()
310{
311 bSound=FALSE;
312 int warn;
313 QTime t = QTime::currentTime();
314 QDateTime whenl( when.date(), t.addSecs( snoozeTime*60));
315 when=whenl;
316 AlarmServer::addAlarm( when,
317 "QPE/Application/clock",
318 "alarm(QDateTime,int)", warn );
319
320}
321
322//toggles alarm on/off
323void Clock::slotToggleAlarm()
324{
325 Config config( "qpe" );
326 config.setGroup("Time");
327 if(alarmBool) {
328 config.writeEntry("clockAlarmSet","FALSE");
329 alarmOffBtn->setText( tr( "Alarm Off" ) );
330 snoozeBtn->hide();
331 alarmBool=FALSE;
332 alarmOff();
333 } else {
334 config.writeEntry("clockAlarmSet","TRUE");
335 alarmOffBtn->setText( tr( "Alarm On" ) );
336 snoozeBtn->show();
337 alarmBool=TRUE;
338 alarmOn();
339 }
340 config.write();
341}
342
343void Clock::alarmOn()
344{
345 QDate d = QDate::currentDate();
346 QTime tm((int)hour,(int)minute,0);
347 qDebug("Time set "+tm.toString());
348 QTime t = QTime::currentTime();
349 if( t > tm)
350 d = d.addDays(1);
351 int warn;
352 QDateTime whenl(d,tm);
353 when=whenl;
354 AlarmServer::addAlarm( when,
355 "QPE/Application/clock",
356 "alarm(QDateTime,int)", warn );
357 QMessageBox::message("Note","Alarm is set for:\n"+ whenl.toString());
358}
359
360void Clock::alarmOff()
361{
362 int warn;
363 bSound=FALSE;
364 AlarmServer::deleteAlarm( when,
365 "QPE/Application/clock",
366 "alarm(QDateTime,int)", warn );
367 qDebug("Alarm Off "+ when.toString());
368
369}
370
371void Clock::appMessage(const QCString& msg, const QByteArray& data)
372{
373 int stopTimer = 0;
374 int timerStay = 5000;
375 bSound=TRUE;
376 if ( msg == "alarm(QDateTime,int)" ) {
377 Sound::soundAlarm();
378 stopTimer = startTimer( timerStay);
379 }
380}
381
382void Clock::timerEvent( QTimerEvent *e )
383{
384 static int stop = 0;
385 if ( stop < 10 && bSound) {
386 Sound::soundAlarm();
387 stop++;
388 } else {
389 stop = 0;
390 killTimer( e->timerId() );
391 }
392}
393
394
238QSizePolicy AnalogClock::sizePolicy() const 395QSizePolicy AnalogClock::sizePolicy() const
239{ 396{
240 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); 397 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
241} 398}
242 399
243void AnalogClock::drawContents( QPainter *p ) 400void AnalogClock::drawContents( QPainter *p )
244{ 401{
245 QRect r = contentsRect(); 402 QRect r = contentsRect();
246 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 403 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 );
247 404
248 QPoint l1( r.x() + r.width() / 2, r.y() + 2 ); 405 QPoint l1( r.x() + r.width() / 2, r.y() + 2 );
249 QPoint l2( r.x() + r.width() / 2, r.y() + 8 ); 406 QPoint l2( r.x() + r.width() / 2, r.y() + 8 );
@@ -252,68 +409,68 @@ void AnalogClock::drawContents( QPainter *p )
252 QPoint h2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 409 QPoint h2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
253 410
254 QPoint m1( r.x() + r.width() / 2, r.y() + r.height() / 8 ); 411 QPoint m1( r.x() + r.width() / 2, r.y() + r.height() / 8 );
255 QPoint m2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 412 QPoint m2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
256 413
257 QPoint s1( r.x() + r.width() / 2, r.y() + 8 ); 414 QPoint s1( r.x() + r.width() / 2, r.y() + 8 );
258 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 415 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
259 416
260 QColor color( clear ? backgroundColor() : black ); 417 QColor color( clear ? backgroundColor() : black );
261 QTime time = clear ? prevTime : currTime; 418 QTime time = clear ? prevTime : currTime;
262 419
263 if ( clear && prevTime.secsTo(currTime) > 1 ) { 420 if ( clear && prevTime.secsTo(currTime) > 1 ) {
264 p->eraseRect( rect() ); 421 p->eraseRect( rect() );
265 return; 422 return;
266 } 423 }
267 424
268 if ( !clear ) { 425 if ( !clear ) {
269 // draw ticks 426 // draw ticks
270 p->setPen( QPen( color, 1 ) ); 427 p->setPen( QPen( color, 1 ) );
271 for ( int i = 0; i < 12; i++ ) 428 for ( int i = 0; i < 12; i++ )
272 p->drawLine( rotate( center, l1, i * 30 ), rotate( center, l2, i * 30 ) ); 429 p->drawLine( rotate( center, l1, i * 30 ), rotate( center, l2, i * 30 ) );
273 } 430 }
274 431
275 if ( !clear || prevTime.minute() != currTime.minute() || 432 if ( !clear || prevTime.minute() != currTime.minute() ||
276 prevTime.hour() != currTime.hour() ) { 433 prevTime.hour() != currTime.hour() ) {
277 // draw hour pointer 434 // draw hour pointer
278 h1 = rotate( center, h1, 30 * ( time.hour() % 12 ) + time.minute() / 2 ); 435 h1 = rotate( center, h1, 30 * ( time.hour() % 12 ) + time.minute() / 2 );
279 h2 = rotate( center, h2, 30 * ( time.hour() % 12 ) + time.minute() / 2 ); 436 h2 = rotate( center, h2, 30 * ( time.hour() % 12 ) + time.minute() / 2 );
280 p->setPen( QPen( color, 3 ) ); 437 p->setPen( QPen( color, 3 ) );
281 p->drawLine( h1, h2 ); 438 p->drawLine( h1, h2 );
282 } 439 }
283 440
284 if ( !clear || prevTime.minute() != currTime.minute() ) { 441 if ( !clear || prevTime.minute() != currTime.minute() ) {
285 // draw minute pointer 442 // draw minute pointer
286 m1 = rotate( center, m1, time.minute() * 6 ); 443 m1 = rotate( center, m1, time.minute() * 6 );
287 m2 = rotate( center, m2, time.minute() * 6 ); 444 m2 = rotate( center, m2, time.minute() * 6 );
288 p->setPen( QPen( color, 2 ) ); 445 p->setPen( QPen( color, 2 ) );
289 p->drawLine( m1, m2 ); 446 p->drawLine( m1, m2 );
290 } 447 }
291 448
292 // draw second pointer 449 // draw second pointer
293 s1 = rotate( center, s1, time.second() * 6 ); 450 s1 = rotate( center, s1, time.second() * 6 );
294 s2 = rotate( center, s2, time.second() * 6 ); 451 s2 = rotate( center, s2, time.second() * 6 );
295 p->setPen( QPen( color, 1 ) ); 452 p->setPen( QPen( color, 1 ) );
296 p->drawLine( s1, s2 ); 453 p->drawLine( s1, s2 );
297 454
298 if ( !clear ) 455 if ( !clear )
299 prevTime = currTime; 456 prevTime = currTime;
300} 457}
301 458
302void AnalogClock::display( const QTime& t ) 459void AnalogClock::display( const QTime& t )
303{ 460{
304 currTime = t; 461 currTime = t;
305 clear = true; 462 clear = true;
306 repaint( false ); 463 repaint( false );
307 clear = false; 464 clear = false;
308 repaint( false ); 465 repaint( false );
309} 466}
310 467
311QPoint AnalogClock::rotate( QPoint c, QPoint p, int a ) 468QPoint AnalogClock::rotate( QPoint c, QPoint p, int a )
312{ 469{
313 double angle = deg2rad * ( - a + 180 ); 470 double angle = deg2rad * ( - a + 180 );
314 double nx = c.x() - ( p.x() - c.x() ) * cos( angle ) - 471 double nx = c.x() - ( p.x() - c.x() ) * cos( angle ) -
315 ( p.y() - c.y() ) * sin( angle ); 472 ( p.y() - c.y() ) * sin( angle );
316 double ny = c.y() - ( p.y() - c.y() ) * cos( angle ) + 473 double ny = c.y() - ( p.y() - c.y() ) * cos( angle ) +
317 ( p.x() - c.x() ) * sin( angle ); 474 ( p.x() - c.x() ) * sin( angle );
318 return QPoint( nx, ny ); 475 return QPoint( nx, ny );
319} 476}