summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/clock/clock.cpp3
-rw-r--r--noncore/tools/clock/setAlarm.cpp7
2 files changed, 8 insertions, 2 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp
index 9b9e644..a47793b 100644
--- a/noncore/tools/clock/clock.cpp
+++ b/noncore/tools/clock/clock.cpp
@@ -260,96 +260,99 @@ void Clock::slotReset()
260{ 260{
261 t->stop(); 261 t->stop();
262 swatch_start.start(); 262 swatch_start.start();
263 swatch_totalms = 0; 263 swatch_totalms = 0;
264 264
265 if (swatch_running ) 265 if (swatch_running )
266 t->start(1000); 266 t->start(1000);
267 267
268 updateClock(); 268 updateClock();
269} 269}
270 270
271void Clock::modeSelect( int m ) 271void Clock::modeSelect( int m )
272{ 272{
273 if ( m ) { 273 if ( m ) {
274 lcd->setNumDigits( 8+1+sw_prec ); 274 lcd->setNumDigits( 8+1+sw_prec );
275 lcd->setMinimumWidth( lcd->sizeHint().width() ); 275 lcd->setMinimumWidth( lcd->sizeHint().width() );
276 set->setEnabled( TRUE ); 276 set->setEnabled( TRUE );
277 reset->setEnabled( TRUE ); 277 reset->setEnabled( TRUE );
278 ampmLabel->hide(); 278 ampmLabel->hide();
279 279
280 if ( !swatch_running ) 280 if ( !swatch_running )
281 t->stop(); 281 t->stop();
282 } else { 282 } else {
283 lcd->setNumDigits( 5 ); 283 lcd->setNumDigits( 5 );
284 lcd->setMinimumWidth( lcd->sizeHint().width() ); 284 lcd->setMinimumWidth( lcd->sizeHint().width() );
285 set->setEnabled( FALSE ); 285 set->setEnabled( FALSE );
286 reset->setEnabled( FALSE ); 286 reset->setEnabled( FALSE );
287 t->start(1000); 287 t->start(1000);
288 } 288 }
289 updateClock(); 289 updateClock();
290} 290}
291 291
292//this sets the alarm time 292//this sets the alarm time
293void Clock::slotSetAlarm() 293void Clock::slotSetAlarm()
294{ 294{
295 if( !snoozeBtn->isHidden()) 295 if( !snoozeBtn->isHidden())
296 slotToggleAlarm(); 296 slotToggleAlarm();
297 Set_Alarm *setAlarmDlg; 297 Set_Alarm *setAlarmDlg;
298 setAlarmDlg = new Set_Alarm(this,"SetAlarm", TRUE); 298 setAlarmDlg = new Set_Alarm(this,"SetAlarm", TRUE);
299 int result = setAlarmDlg->exec(); 299 int result = setAlarmDlg->exec();
300 if(result == 1) { 300 if(result == 1) {
301 Config config( "qpe" ); 301 Config config( "qpe" );
302 config.setGroup("Time"); 302 config.setGroup("Time");
303 QString tmp; 303 QString tmp;
304 hour = setAlarmDlg->Hour_Slider->value(); 304 hour = setAlarmDlg->Hour_Slider->value();
305 minute = setAlarmDlg->Minute_Slider->value(); 305 minute = setAlarmDlg->Minute_Slider->value();
306 snoozeTime=setAlarmDlg->SnoozeSlider->value(); 306 snoozeTime=setAlarmDlg->SnoozeSlider->value();
307 if(ampm) { 307 if(ampm) {
308 if ( hour == 12 )
309 hour = 0;
310
308 if(setAlarmDlg->Pm_RadioButton->isChecked() && hour < 12 ) 311 if(setAlarmDlg->Pm_RadioButton->isChecked() && hour < 12 )
309 hour+=12; 312 hour+=12;
310 } 313 }
311 config.writeEntry("clockAlarmHour", tmp.setNum( hour ),10); 314 config.writeEntry("clockAlarmHour", tmp.setNum( hour ),10);
312 config.writeEntry("clockAlarmMinute",tmp.setNum( minute ),10); 315 config.writeEntry("clockAlarmMinute",tmp.setNum( minute ),10);
313 config.writeEntry("clockAlarmSnooze",tmp.setNum( snoozeTime ),10); 316 config.writeEntry("clockAlarmSnooze",tmp.setNum( snoozeTime ),10);
314 config.write(); 317 config.write();
315 } 318 }
316} 319}
317 320
318void Clock::slotSnooze() 321void Clock::slotSnooze()
319{ 322{
320 bSound=FALSE; 323 bSound=FALSE;
321 int warn = 0; 324 int warn = 0;
322 QTime t = QTime::currentTime(); 325 QTime t = QTime::currentTime();
323 QDateTime whenl( when.date(), t.addSecs( snoozeTime*60)); 326 QDateTime whenl( when.date(), t.addSecs( snoozeTime*60));
324 when=whenl; 327 when=whenl;
325 AlarmServer::addAlarm( when, 328 AlarmServer::addAlarm( when,
326 "QPE/Application/clock", 329 "QPE/Application/clock",
327 "alarm(QDateTime,int)", warn ); 330 "alarm(QDateTime,int)", warn );
328 331
329} 332}
330 333
331//toggles alarm on/off 334//toggles alarm on/off
332void Clock::slotToggleAlarm() 335void Clock::slotToggleAlarm()
333{ 336{
334 Config config( "qpe" ); 337 Config config( "qpe" );
335 config.setGroup("Time"); 338 config.setGroup("Time");
336 if(alarmBool) { 339 if(alarmBool) {
337 config.writeEntry("clockAlarmSet","FALSE"); 340 config.writeEntry("clockAlarmSet","FALSE");
338 alarmOffBtn->setText( tr( "Alarm Is Off" ) ); 341 alarmOffBtn->setText( tr( "Alarm Is Off" ) );
339 snoozeBtn->hide(); 342 snoozeBtn->hide();
340 alarmBool=FALSE; 343 alarmBool=FALSE;
341 alarmOff(); 344 alarmOff();
342 } else { 345 } else {
343 config.writeEntry("clockAlarmSet","TRUE"); 346 config.writeEntry("clockAlarmSet","TRUE");
344 alarmOffBtn->setText( tr( "Alarm Is On" ) ); 347 alarmOffBtn->setText( tr( "Alarm Is On" ) );
345 snoozeBtn->show(); 348 snoozeBtn->show();
346 alarmBool=TRUE; 349 alarmBool=TRUE;
347 alarmOn(); 350 alarmOn();
348 } 351 }
349 config.write(); 352 config.write();
350} 353}
351 354
352void Clock::alarmOn() 355void Clock::alarmOn()
353{ 356{
354 QDate d = QDate::currentDate(); 357 QDate d = QDate::currentDate();
355 QTime tm((int)hour,(int)minute,0); 358 QTime tm((int)hour,(int)minute,0);
diff --git a/noncore/tools/clock/setAlarm.cpp b/noncore/tools/clock/setAlarm.cpp
index 6b95e6a..bd964e0 100644
--- a/noncore/tools/clock/setAlarm.cpp
+++ b/noncore/tools/clock/setAlarm.cpp
@@ -87,98 +87,101 @@ Set_Alarm::Set_Alarm( QWidget* parent, const char* name, bool modal, WFlags fl
87 Am_RadioButton->setChecked(TRUE); 87 Am_RadioButton->setChecked(TRUE);
88 connect( Am_RadioButton, SIGNAL(toggled(bool)),this,SLOT( amButtonToggled(bool))); 88 connect( Am_RadioButton, SIGNAL(toggled(bool)),this,SLOT( amButtonToggled(bool)));
89 89
90 Set_AlarmLayout->addMultiCellWidget( Am_RadioButton, 0, 1, 3, 4 ); 90 Set_AlarmLayout->addMultiCellWidget( Am_RadioButton, 0, 1, 3, 4 );
91 91
92 92
93 Pm_RadioButton = new QRadioButton( this, "Pm_RadioButton" ); 93 Pm_RadioButton = new QRadioButton( this, "Pm_RadioButton" );
94 Pm_RadioButton->setText( tr( "PM" ) ); 94 Pm_RadioButton->setText( tr( "PM" ) );
95 connect( Pm_RadioButton, SIGNAL(toggled(bool)),this,SLOT( pmButtonToggled(bool))); 95 connect( Pm_RadioButton, SIGNAL(toggled(bool)),this,SLOT( pmButtonToggled(bool)));
96 96
97 Set_AlarmLayout->addMultiCellWidget(Pm_RadioButton, 1, 2, 3, 4 ); 97 Set_AlarmLayout->addMultiCellWidget(Pm_RadioButton, 1, 2, 3, 4 );
98 98
99 TextLabel3 = new QLabel( this, "TextLabel3" ); 99 TextLabel3 = new QLabel( this, "TextLabel3" );
100 TextLabel3->setText( tr( "Snooze Delay\n(minutes)" ) ); 100 TextLabel3->setText( tr( "Snooze Delay\n(minutes)" ) );
101 101
102 Set_AlarmLayout->addMultiCellWidget( TextLabel3, 3, 3, 0, 1 ); 102 Set_AlarmLayout->addMultiCellWidget( TextLabel3, 3, 3, 0, 1 );
103 103
104 Snooze_LCDNumber = new QLCDNumber( this, "Snooze_LCDNumber" ); 104 Snooze_LCDNumber = new QLCDNumber( this, "Snooze_LCDNumber" );
105 Snooze_LCDNumber->setFrameShape( QLCDNumber::Box ); 105 Snooze_LCDNumber->setFrameShape( QLCDNumber::Box );
106 Snooze_LCDNumber->setFrameShadow( QLCDNumber::Plain ); 106 Snooze_LCDNumber->setFrameShadow( QLCDNumber::Plain );
107 Snooze_LCDNumber->setSegmentStyle( QLCDNumber::Flat ); 107 Snooze_LCDNumber->setSegmentStyle( QLCDNumber::Flat );
108 108
109 Set_AlarmLayout->addMultiCellWidget( Snooze_LCDNumber, 3, 3, 1, 2 ); 109 Set_AlarmLayout->addMultiCellWidget( Snooze_LCDNumber, 3, 3, 1, 2 );
110 110
111 SnoozeSlider = new QSlider( this, "SnoozeSlider" ); 111 SnoozeSlider = new QSlider( this, "SnoozeSlider" );
112 SnoozeSlider->setMaxValue( 60 ); 112 SnoozeSlider->setMaxValue( 60 );
113 SnoozeSlider->setOrientation( QSlider::Horizontal ); 113 SnoozeSlider->setOrientation( QSlider::Horizontal );
114 connect(SnoozeSlider, SIGNAL( valueChanged(int)),this,SLOT(slotChangeSnooze(int))); 114 connect(SnoozeSlider, SIGNAL( valueChanged(int)),this,SLOT(slotChangeSnooze(int)));
115 115
116 Set_AlarmLayout->addMultiCellWidget( SnoozeSlider, 3, 3, 3, 4 ); 116 Set_AlarmLayout->addMultiCellWidget( SnoozeSlider, 3, 3, 3, 4 );
117 117
118 Config config( "qpe" ); 118 Config config( "qpe" );
119 config.setGroup("Time"); 119 config.setGroup("Time");
120 120
121 bool ok; 121 bool ok;
122 bool ampm = config.readBoolEntry( "AMPM", TRUE ); 122 bool ampm = config.readBoolEntry( "AMPM", TRUE );
123 QString alarmHour=config.readEntry("clockAlarmHour","8"); 123 QString alarmHour=config.readEntry("clockAlarmHour","8");
124 int i_alarmHour = alarmHour.toInt(&ok,10); 124 int i_alarmHour = alarmHour.toInt(&ok,10);
125 QString alarmMinute=config.readEntry("clockAlarmMinute","0"); 125 QString alarmMinute=config.readEntry("clockAlarmMinute","0");
126 QString snoozeTime=config.readEntry("clockAlarmSnooze","0"); 126 QString snoozeTime=config.readEntry("clockAlarmSnooze","0");
127 if(ampm) { 127 if(ampm) {
128 Hour_Slider->setMaxValue( 12); 128 Hour_Slider->setMaxValue( 12);
129 Hour_Slider->setMinValue( 1); 129 Hour_Slider->setMinValue( 1);
130 130
131 if( i_alarmHour > 12) { 131 if( i_alarmHour > 12) {
132 i_alarmHour = i_alarmHour - 12; 132 i_alarmHour = i_alarmHour - 12;
133 Pm_RadioButton->setChecked(TRUE); 133 Pm_RadioButton->setChecked(TRUE);
134 } 134 }
135 Hour_Slider->setValue( i_alarmHour); 135 else if ( i_alarmHour == 0 ) {
136 i_alarmHour = 12;
137 }
138 Hour_Slider->setValue( i_alarmHour );
136 Minute_Slider->setValue( alarmMinute.toInt(&ok,10) ); 139 Minute_Slider->setValue( alarmMinute.toInt(&ok,10) );
137 SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) ); 140 SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) );
138 } else { 141 } else {
139 Hour_Slider->setMaxValue( 23); 142 Hour_Slider->setMaxValue( 23);
140 Hour_Slider->setMinValue( 1); 143 Hour_Slider->setMinValue( 0);
141 Hour_Slider->setValue( i_alarmHour); 144 Hour_Slider->setValue( i_alarmHour);
142 Minute_Slider->setValue( alarmMinute.toInt(&ok,10) ); 145 Minute_Slider->setValue( alarmMinute.toInt(&ok,10) );
143 SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) ); 146 SnoozeSlider->setValue( snoozeTime.toInt(&ok,10) );
144 Am_RadioButton->hide(); 147 Am_RadioButton->hide();
145 Pm_RadioButton->hide(); 148 Pm_RadioButton->hide();
146 } 149 }
147 // signals and slots connections 150 // signals and slots connections
148} 151}
149 152
150Set_Alarm::~Set_Alarm() 153Set_Alarm::~Set_Alarm()
151{ 154{
152 155
153} 156}
154 157
155void Set_Alarm::slotChangeHour(int hour) 158void Set_Alarm::slotChangeHour(int hour)
156{ 159{
157 Hour_LCDNumber->display(hour); 160 Hour_LCDNumber->display(hour);
158} 161}
159 162
160void Set_Alarm::slotChangeMinute(int minute) 163void Set_Alarm::slotChangeMinute(int minute)
161{ 164{
162 Minute_LCDNumber->display(minute); 165 Minute_LCDNumber->display(minute);
163} 166}
164 167
165void Set_Alarm::slotChangeSnooze(int minute) 168void Set_Alarm::slotChangeSnooze(int minute)
166{ 169{
167 Snooze_LCDNumber->display(minute); 170 Snooze_LCDNumber->display(minute);
168} 171}
169 172
170void Set_Alarm::amButtonToggled(bool b) 173void Set_Alarm::amButtonToggled(bool b)
171{ 174{
172 if ( b) 175 if ( b)
173 Pm_RadioButton->setChecked(FALSE); 176 Pm_RadioButton->setChecked(FALSE);
174} 177}
175 178
176void Set_Alarm::pmButtonToggled(bool b) 179void Set_Alarm::pmButtonToggled(bool b)
177{ 180{
178 if (b) 181 if (b)
179 Am_RadioButton->setChecked(FALSE); 182 Am_RadioButton->setChecked(FALSE);
180} 183}
181 184
182void Set_Alarm::cleanUp() 185void Set_Alarm::cleanUp()
183{ 186{
184} 187}