author | zautrix <zautrix> | 2005-01-16 08:49:00 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-16 08:49:00 (UTC) |
commit | 62ff81d5d292ddf3c6032b48f27a6daedf6a6cb0 (patch) (unidiff) | |
tree | ef89d1577b47959c172e644701bf9dc7541c2987 /korganizer | |
parent | 32795d059fa22cc9fd213db4b4d87e30866a7cb9 (diff) | |
download | kdepimpi-62ff81d5d292ddf3c6032b48f27a6daedf6a6cb0.zip kdepimpi-62ff81d5d292ddf3c6032b48f27a6daedf6a6cb0.tar.gz kdepimpi-62ff81d5d292ddf3c6032b48f27a6daedf6a6cb0.tar.bz2 |
beter time edit
-rw-r--r-- | korganizer/koeditorgeneralevent.cpp | 17 | ||||
-rw-r--r-- | korganizer/koeditorgeneraltodo.cpp | 12 | ||||
-rw-r--r-- | korganizer/ktimeedit.cpp | 106 | ||||
-rw-r--r-- | korganizer/ktimeedit.h | 3 |
4 files changed, 26 insertions, 112 deletions
diff --git a/korganizer/koeditorgeneralevent.cpp b/korganizer/koeditorgeneralevent.cpp index fc5be71..30b792b 100644 --- a/korganizer/koeditorgeneralevent.cpp +++ b/korganizer/koeditorgeneralevent.cpp | |||
@@ -205,240 +205,223 @@ void KOEditorGeneralEvent::startTimeChanged(QTime newtime) | |||
205 | mCurrEndDateTime = mCurrStartDateTime.addSecs(secsep); | 205 | mCurrEndDateTime = mCurrStartDateTime.addSecs(secsep); |
206 | mEndTimeEdit->setTime(mCurrEndDateTime.time()); | 206 | mEndTimeEdit->setTime(mCurrEndDateTime.time()); |
207 | mEndDateEdit->setDate(mCurrEndDateTime.date()); | 207 | mEndDateEdit->setDate(mCurrEndDateTime.date()); |
208 | 208 | ||
209 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); | 209 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); |
210 | } | 210 | } |
211 | 211 | ||
212 | void KOEditorGeneralEvent::endTimeChanged(QTime newtime) | 212 | void KOEditorGeneralEvent::endTimeChanged(QTime newtime) |
213 | { | 213 | { |
214 | // kdDebug() << "KOEditorGeneralEvent::endTimeChanged " << newtime.toString() << endl; | 214 | // kdDebug() << "KOEditorGeneralEvent::endTimeChanged " << newtime.toString() << endl; |
215 | 215 | ||
216 | QDateTime newdt(mCurrEndDateTime.date(), newtime); | 216 | QDateTime newdt(mCurrEndDateTime.date(), newtime); |
217 | mCurrEndDateTime = newdt; | 217 | mCurrEndDateTime = newdt; |
218 | 218 | ||
219 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); | 219 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); |
220 | } | 220 | } |
221 | 221 | ||
222 | void KOEditorGeneralEvent::startDateChanged(QDate newdate) | 222 | void KOEditorGeneralEvent::startDateChanged(QDate newdate) |
223 | { | 223 | { |
224 | int daysep = mCurrStartDateTime.daysTo(mCurrEndDateTime); | 224 | int daysep = mCurrStartDateTime.daysTo(mCurrEndDateTime); |
225 | 225 | ||
226 | mCurrStartDateTime.setDate(newdate); | 226 | mCurrStartDateTime.setDate(newdate); |
227 | 227 | ||
228 | // adjust end date so that the event has the same duration as before | 228 | // adjust end date so that the event has the same duration as before |
229 | mCurrEndDateTime.setDate(mCurrStartDateTime.date().addDays(daysep)); | 229 | mCurrEndDateTime.setDate(mCurrStartDateTime.date().addDays(daysep)); |
230 | mEndDateEdit->setDate(mCurrEndDateTime.date()); | 230 | mEndDateEdit->setDate(mCurrEndDateTime.date()); |
231 | 231 | ||
232 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); | 232 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); |
233 | } | 233 | } |
234 | 234 | ||
235 | void KOEditorGeneralEvent::endDateChanged(QDate newdate) | 235 | void KOEditorGeneralEvent::endDateChanged(QDate newdate) |
236 | { | 236 | { |
237 | QDateTime newdt(newdate, mCurrEndDateTime.time()); | 237 | QDateTime newdt(newdate, mCurrEndDateTime.time()); |
238 | 238 | ||
239 | if(newdt < mCurrStartDateTime) { | 239 | if(newdt < mCurrStartDateTime) { |
240 | // oops, we can't let that happen. | 240 | // oops, we can't let that happen. |
241 | newdt = mCurrStartDateTime; | 241 | newdt = mCurrStartDateTime; |
242 | mEndDateEdit->setDate(newdt.date()); | 242 | mEndDateEdit->setDate(newdt.date()); |
243 | mEndTimeEdit->setTime(newdt.time()); | 243 | mEndTimeEdit->setTime(newdt.time()); |
244 | } | 244 | } |
245 | mCurrEndDateTime = newdt; | 245 | mCurrEndDateTime = newdt; |
246 | 246 | ||
247 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); | 247 | emit dateTimesChanged(mCurrStartDateTime,mCurrEndDateTime); |
248 | } | 248 | } |
249 | 249 | ||
250 | void KOEditorGeneralEvent::setDefaults(QDateTime from,QDateTime to,bool allDay) | 250 | void KOEditorGeneralEvent::setDefaults(QDateTime from,QDateTime to,bool allDay) |
251 | { | 251 | { |
252 | mSummaryEdit->load(KOLocationBox::SUMMARYEVENT); | 252 | mSummaryEdit->load(KOLocationBox::SUMMARYEVENT); |
253 | mLocationEdit->load(KOLocationBox::LOCATION); | 253 | mLocationEdit->load(KOLocationBox::LOCATION); |
254 | KOEditorGeneral::setDefaults(allDay); | 254 | KOEditorGeneral::setDefaults(allDay); |
255 | 255 | ||
256 | mNoTimeButton->setChecked(allDay); | 256 | mNoTimeButton->setChecked(allDay); |
257 | timeStuffDisable(allDay); | 257 | timeStuffDisable(allDay); |
258 | mFreeTimeCombo->setCurrentItem( 0 ); | 258 | mFreeTimeCombo->setCurrentItem( 0 ); |
259 | setDateTimes(from,to); | 259 | setDateTimes(from,to); |
260 | } | 260 | } |
261 | 261 | ||
262 | void KOEditorGeneralEvent::readEvent( Event *event, bool tmpl ) | 262 | void KOEditorGeneralEvent::readEvent( Event *event, bool tmpl ) |
263 | { | 263 | { |
264 | QString tmpStr; | 264 | QString tmpStr; |
265 | 265 | ||
266 | mTemplate = tmpl; | 266 | mTemplate = tmpl; |
267 | // the rest is for the events only | 267 | // the rest is for the events only |
268 | mNoTimeButton->setChecked(event->doesFloat()); | 268 | mNoTimeButton->setChecked(event->doesFloat()); |
269 | timeStuffDisable(event->doesFloat()); | 269 | timeStuffDisable(event->doesFloat()); |
270 | 270 | ||
271 | setDateTimes(event->dtStart(),event->dtEnd()); | 271 | setDateTimes(event->dtStart(),event->dtEnd()); |
272 | 272 | ||
273 | mTemplate = false; | 273 | mTemplate = false; |
274 | switch( event->transparency() ) { | 274 | switch( event->transparency() ) { |
275 | case Event::Transparent: | 275 | case Event::Transparent: |
276 | mFreeTimeCombo->setCurrentItem(1); | 276 | mFreeTimeCombo->setCurrentItem(1); |
277 | break; | 277 | break; |
278 | case Event::Opaque: | 278 | case Event::Opaque: |
279 | mFreeTimeCombo->setCurrentItem(0); | 279 | mFreeTimeCombo->setCurrentItem(0); |
280 | break; | 280 | break; |
281 | } | 281 | } |
282 | 282 | ||
283 | mSummaryEdit->load(KOLocationBox::SUMMARYEVENT); | 283 | mSummaryEdit->load(KOLocationBox::SUMMARYEVENT); |
284 | mLocationEdit->load(KOLocationBox::LOCATION); | 284 | mLocationEdit->load(KOLocationBox::LOCATION); |
285 | readIncidence(event); | 285 | readIncidence(event); |
286 | } | 286 | } |
287 | 287 | ||
288 | void KOEditorGeneralEvent::writeEvent(Event *event) | 288 | void KOEditorGeneralEvent::writeEvent(Event *event) |
289 | { | 289 | { |
290 | // kdDebug() << "KOEditorGeneralEvent::writeEvent()" << endl; | 290 | // kdDebug() << "KOEditorGeneralEvent::writeEvent()" << endl; |
291 | 291 | ||
292 | writeIncidence(event); | 292 | writeIncidence(event); |
293 | 293 | ||
294 | QDate tmpDate; | 294 | QDate tmpDate; |
295 | QTime tmpTime; | 295 | QTime tmpTime; |
296 | QDateTime tmpDT; | 296 | QDateTime tmpDT; |
297 | 297 | ||
298 | // temp. until something better happens. | 298 | // temp. until something better happens. |
299 | QString tmpStr; | 299 | QString tmpStr; |
300 | 300 | ||
301 | if (mNoTimeButton->isChecked()) { | 301 | if (mNoTimeButton->isChecked()) { |
302 | event->setFloats(true); | 302 | event->setFloats(true); |
303 | // need to change this. | 303 | // need to change this. |
304 | tmpDate = mStartDateEdit->date(); | 304 | tmpDate = mStartDateEdit->date(); |
305 | tmpTime.setHMS(0,0,0); | 305 | tmpTime.setHMS(0,0,0); |
306 | tmpDT.setDate(tmpDate); | 306 | tmpDT.setDate(tmpDate); |
307 | tmpDT.setTime(tmpTime); | 307 | tmpDT.setTime(tmpTime); |
308 | event->setDtStart(tmpDT); | 308 | event->setDtStart(tmpDT); |
309 | 309 | ||
310 | tmpDate = mEndDateEdit->date(); | 310 | tmpDate = mEndDateEdit->date(); |
311 | tmpTime.setHMS(0,0,0); | 311 | tmpTime.setHMS(0,0,0); |
312 | tmpDT.setDate(tmpDate); | 312 | tmpDT.setDate(tmpDate); |
313 | tmpDT.setTime(tmpTime); | 313 | tmpDT.setTime(tmpTime); |
314 | event->setDtEnd(tmpDT); | 314 | event->setDtEnd(tmpDT); |
315 | } else { | 315 | } else { |
316 | event->setFloats(false); | 316 | event->setFloats(false); |
317 | 317 | ||
318 | // set date/time end | 318 | // set date/time end |
319 | tmpDate = mEndDateEdit->date(); | 319 | tmpDate = mEndDateEdit->date(); |
320 | tmpTime = mEndTimeEdit->getTime(); | 320 | tmpTime = mEndTimeEdit->getTime(); |
321 | tmpDT.setDate(tmpDate); | 321 | tmpDT.setDate(tmpDate); |
322 | tmpDT.setTime(tmpTime); | 322 | tmpDT.setTime(tmpTime); |
323 | event->setDtEnd(tmpDT); | 323 | event->setDtEnd(tmpDT); |
324 | 324 | ||
325 | // set date/time start | 325 | // set date/time start |
326 | tmpDate = mStartDateEdit->date(); | 326 | tmpDate = mStartDateEdit->date(); |
327 | tmpTime = mStartTimeEdit->getTime(); | 327 | tmpTime = mStartTimeEdit->getTime(); |
328 | tmpDT.setDate(tmpDate); | 328 | tmpDT.setDate(tmpDate); |
329 | tmpDT.setTime(tmpTime); | 329 | tmpDT.setTime(tmpTime); |
330 | event->setDtStart(tmpDT); | 330 | event->setDtStart(tmpDT); |
331 | } // check for float | 331 | } // check for float |
332 | mSummaryEdit->save(KOLocationBox::SUMMARYEVENT); | 332 | mSummaryEdit->save(KOLocationBox::SUMMARYEVENT); |
333 | 333 | ||
334 | event->setTransparency(mFreeTimeCombo->currentItem() > 0 | 334 | event->setTransparency(mFreeTimeCombo->currentItem() > 0 |
335 | ? KCal::Event::Transparent | 335 | ? KCal::Event::Transparent |
336 | : KCal::Event::Opaque); | 336 | : KCal::Event::Opaque); |
337 | 337 | ||
338 | // kdDebug() << "KOEditorGeneralEvent::writeEvent() done" << endl; | 338 | // kdDebug() << "KOEditorGeneralEvent::writeEvent() done" << endl; |
339 | } | 339 | } |
340 | 340 | ||
341 | void KOEditorGeneralEvent::setDuration() | 341 | void KOEditorGeneralEvent::setDuration() |
342 | { | 342 | { |
343 | QString tmpStr = "", catStr; | 343 | QString tmpStr = "", catStr; |
344 | int hourdiff, minutediff; | 344 | int hourdiff, minutediff; |
345 | // end<date is an accepted temporary state while typing, but don't show | 345 | // end<date is an accepted temporary state while typing, but don't show |
346 | // any duration if this happens | 346 | // any duration if this happens |
347 | if(mCurrEndDateTime >= mCurrStartDateTime) { | 347 | if(mCurrEndDateTime >= mCurrStartDateTime) { |
348 | 348 | ||
349 | if (mNoTimeButton->isChecked()) { | 349 | if (mNoTimeButton->isChecked()) { |
350 | int daydiff = mCurrStartDateTime.date().daysTo(mCurrEndDateTime.date()) + 1; | 350 | int daydiff = mCurrStartDateTime.date().daysTo(mCurrEndDateTime.date()) + 1; |
351 | tmpStr = i18n("Duration: "); | 351 | tmpStr = i18n("Duration: "); |
352 | tmpStr.append(i18n("1 Day","%n Days",daydiff)); | 352 | tmpStr.append(i18n("1 Day","%n Days",daydiff)); |
353 | } else { | 353 | } else { |
354 | int secto = mCurrStartDateTime.secsTo( mCurrEndDateTime ); | 354 | int secto = mCurrStartDateTime.secsTo( mCurrEndDateTime ); |
355 | hourdiff = secto / 3600; | 355 | hourdiff = secto / 3600; |
356 | minutediff = (secto/60 ) % 60; | 356 | minutediff = (secto/60 ) % 60; |
357 | if (hourdiff || minutediff){ | 357 | if (hourdiff || minutediff){ |
358 | tmpStr = i18n("Duration: "); | 358 | tmpStr = i18n("Duration: "); |
359 | if (hourdiff){ | 359 | if (hourdiff){ |
360 | catStr = i18n("1 h","%n h",hourdiff); | 360 | catStr = i18n("1 h","%n h",hourdiff); |
361 | tmpStr.append(catStr); | 361 | tmpStr.append(catStr); |
362 | } | 362 | } |
363 | if (hourdiff && minutediff){ | 363 | if (hourdiff && minutediff){ |
364 | tmpStr += i18n(", "); | 364 | tmpStr += i18n(", "); |
365 | } | 365 | } |
366 | if (minutediff){ | 366 | if (minutediff){ |
367 | catStr = i18n("1 min","%n min",minutediff); | 367 | catStr = i18n("1 min","%n min",minutediff); |
368 | tmpStr += catStr; | 368 | tmpStr += catStr; |
369 | } | 369 | } |
370 | } else tmpStr = ""; | 370 | } else tmpStr = ""; |
371 | } | 371 | } |
372 | } | 372 | } |
373 | mDurationLabel->setText(tmpStr); | 373 | mDurationLabel->setText(tmpStr); |
374 | } | 374 | } |
375 | 375 | ||
376 | void KOEditorGeneralEvent::emitDateTimeStr() | 376 | void KOEditorGeneralEvent::emitDateTimeStr() |
377 | { | 377 | { |
378 | KLocale *l = KGlobal::locale(); | 378 | KLocale *l = KGlobal::locale(); |
379 | 379 | ||
380 | QString from,to; | 380 | QString from,to; |
381 | if (mNoTimeButton->isChecked()) { | 381 | if (mNoTimeButton->isChecked()) { |
382 | from = l->formatDate(mCurrStartDateTime.date()); | 382 | from = l->formatDate(mCurrStartDateTime.date()); |
383 | to = l->formatDate(mCurrEndDateTime.date()); | 383 | to = l->formatDate(mCurrEndDateTime.date()); |
384 | } else { | 384 | } else { |
385 | from = l->formatDateTime(mCurrStartDateTime); | 385 | from = l->formatDateTime(mCurrStartDateTime); |
386 | to = l->formatDateTime(mCurrEndDateTime); | 386 | to = l->formatDateTime(mCurrEndDateTime); |
387 | } | 387 | } |
388 | 388 | ||
389 | QString str = i18n("From: %1 To: %2 %3").arg(from).arg(to) | 389 | QString str = i18n("From: %1 To: %2 %3").arg(from).arg(to) |
390 | .arg(mDurationLabel->text()); | 390 | .arg(mDurationLabel->text()); |
391 | 391 | ||
392 | emit dateTimeStrChanged(str); | 392 | emit dateTimeStrChanged(str); |
393 | } | 393 | } |
394 | 394 | ||
395 | bool KOEditorGeneralEvent::validateInput() | 395 | bool KOEditorGeneralEvent::validateInput() |
396 | { | 396 | { |
397 | // kdDebug() << "KOEditorGeneralEvent::validateInput()" << endl; | ||
398 | |||
399 | if (!mNoTimeButton->isChecked()) { | ||
400 | if (!mStartTimeEdit->inputIsValid()) { | ||
401 | KMessageBox::sorry( 0, | ||
402 | i18n("Please specify a valid start time, for example '%1'.") | ||
403 | .arg( KGlobal::locale()->formatTime( QTime::currentTime() ) ) ); | ||
404 | return false; | ||
405 | } | ||
406 | |||
407 | if (!mEndTimeEdit->inputIsValid()) { | ||
408 | KMessageBox::sorry( 0, | ||
409 | i18n("Please specify a valid end time, for example '%1'.") | ||
410 | .arg( KGlobal::locale()->formatTime( QTime::currentTime() ) ) ); | ||
411 | return false; | ||
412 | } | ||
413 | } | ||
414 | 397 | ||
415 | if (!mStartDateEdit->inputIsValid()) { | 398 | if (!mStartDateEdit->inputIsValid()) { |
416 | KMessageBox::sorry( 0, | 399 | KMessageBox::sorry( 0, |
417 | i18n("Please specify a valid start date, for example '%1'.") | 400 | i18n("Please specify a valid start date, for example '%1'.") |
418 | .arg( KGlobal::locale()->formatDate( QDate::currentDate() ) ) ); | 401 | .arg( KGlobal::locale()->formatDate( QDate::currentDate() ) ) ); |
419 | return false; | 402 | return false; |
420 | } | 403 | } |
421 | 404 | ||
422 | if (!mEndDateEdit->inputIsValid()) { | 405 | if (!mEndDateEdit->inputIsValid()) { |
423 | KMessageBox::sorry( 0, | 406 | KMessageBox::sorry( 0, |
424 | i18n("Please specify a valid end date, for example '%1'.") | 407 | i18n("Please specify a valid end date, for example '%1'.") |
425 | .arg( KGlobal::locale()->formatDate( QDate::currentDate() ) ) ); | 408 | .arg( KGlobal::locale()->formatDate( QDate::currentDate() ) ) ); |
426 | return false; | 409 | return false; |
427 | } | 410 | } |
428 | 411 | ||
429 | QDateTime startDt,endDt; | 412 | QDateTime startDt,endDt; |
430 | startDt.setDate(mStartDateEdit->date()); | 413 | startDt.setDate(mStartDateEdit->date()); |
431 | endDt.setDate(mEndDateEdit->date()); | 414 | endDt.setDate(mEndDateEdit->date()); |
432 | if (!mNoTimeButton->isChecked()) { | 415 | if (!mNoTimeButton->isChecked()) { |
433 | startDt.setTime(mStartTimeEdit->getTime()); | 416 | startDt.setTime(mStartTimeEdit->getTime()); |
434 | endDt.setTime(mEndTimeEdit->getTime()); | 417 | endDt.setTime(mEndTimeEdit->getTime()); |
435 | } | 418 | } |
436 | 419 | ||
437 | if (startDt > endDt) { | 420 | if (startDt > endDt) { |
438 | KMessageBox::sorry(0,i18n("The event ends before it starts.\n" | 421 | KMessageBox::sorry(0,i18n("The event ends before it starts.\n" |
439 | "Please correct dates and times.")); | 422 | "Please correct dates and times.")); |
440 | return false; | 423 | return false; |
441 | } | 424 | } |
442 | 425 | ||
443 | return KOEditorGeneral::validateInput(); | 426 | return KOEditorGeneral::validateInput(); |
444 | } | 427 | } |
diff --git a/korganizer/koeditorgeneraltodo.cpp b/korganizer/koeditorgeneraltodo.cpp index 7db7da0..158a7d3 100644 --- a/korganizer/koeditorgeneraltodo.cpp +++ b/korganizer/koeditorgeneraltodo.cpp | |||
@@ -195,272 +195,260 @@ void KOEditorGeneralTodo::setDefaults(QDateTime due,bool allDay) | |||
195 | } | 195 | } |
196 | 196 | ||
197 | enableTimeEdits( !allDay ); | 197 | enableTimeEdits( !allDay ); |
198 | 198 | ||
199 | mDueCheck->setChecked(false); | 199 | mDueCheck->setChecked(false); |
200 | enableDueEdit(false); | 200 | enableDueEdit(false); |
201 | 201 | ||
202 | alarmDisable(true); | 202 | alarmDisable(true); |
203 | 203 | ||
204 | mStartCheck->setChecked(false); | 204 | mStartCheck->setChecked(false); |
205 | enableStartEdit(false); | 205 | enableStartEdit(false); |
206 | 206 | ||
207 | mDueDateEdit->setDate(due.date()); | 207 | mDueDateEdit->setDate(due.date()); |
208 | mDueTimeEdit->setTime(due.time()); | 208 | mDueTimeEdit->setTime(due.time()); |
209 | 209 | ||
210 | mStartDateEdit->setDate(QDate::currentDate()); | 210 | mStartDateEdit->setDate(QDate::currentDate()); |
211 | mStartTimeEdit->setTime(QTime::currentTime()); | 211 | mStartTimeEdit->setTime(QTime::currentTime()); |
212 | 212 | ||
213 | mPriorityCombo->setCurrentItem(2); | 213 | mPriorityCombo->setCurrentItem(2); |
214 | mCompletedLabel->setText(i18n("completed"));; | 214 | mCompletedLabel->setText(i18n("completed"));; |
215 | mCompletedCombo->setCurrentItem(0); | 215 | mCompletedCombo->setCurrentItem(0); |
216 | } | 216 | } |
217 | 217 | ||
218 | void KOEditorGeneralTodo::readTodo(Todo *todo) | 218 | void KOEditorGeneralTodo::readTodo(Todo *todo) |
219 | { | 219 | { |
220 | 220 | ||
221 | mSummaryEdit->load(KOLocationBox::SUMMARYTODO); | 221 | mSummaryEdit->load(KOLocationBox::SUMMARYTODO); |
222 | mLocationEdit->load(KOLocationBox::LOCATION); | 222 | mLocationEdit->load(KOLocationBox::LOCATION); |
223 | KOEditorGeneral::readIncidence(todo); | 223 | KOEditorGeneral::readIncidence(todo); |
224 | 224 | ||
225 | QDateTime dueDT; | 225 | QDateTime dueDT; |
226 | 226 | ||
227 | if (todo->hasDueDate()) { | 227 | if (todo->hasDueDate()) { |
228 | enableAlarmEdit(true); | 228 | enableAlarmEdit(true); |
229 | dueDT = todo->dtDue(); | 229 | dueDT = todo->dtDue(); |
230 | mDueDateEdit->setDate(todo->dtDue().date()); | 230 | mDueDateEdit->setDate(todo->dtDue().date()); |
231 | mDueTimeEdit->setTime(todo->dtDue().time()); | 231 | mDueTimeEdit->setTime(todo->dtDue().time()); |
232 | mDueCheck->setChecked(true); | 232 | mDueCheck->setChecked(true); |
233 | } else { | 233 | } else { |
234 | alarmDisable(true); | 234 | alarmDisable(true); |
235 | mDueDateEdit->setEnabled(false); | 235 | mDueDateEdit->setEnabled(false); |
236 | mDueTimeEdit->setEnabled(false); | 236 | mDueTimeEdit->setEnabled(false); |
237 | mDueDateEdit->setDate(QDate::currentDate()); | 237 | mDueDateEdit->setDate(QDate::currentDate()); |
238 | mDueTimeEdit->setTime(QTime::currentTime()); | 238 | mDueTimeEdit->setTime(QTime::currentTime()); |
239 | mDueCheck->setChecked(false); | 239 | mDueCheck->setChecked(false); |
240 | } | 240 | } |
241 | 241 | ||
242 | if (todo->hasStartDate()) { | 242 | if (todo->hasStartDate()) { |
243 | mStartDateEdit->setDate(todo->dtStart().date()); | 243 | mStartDateEdit->setDate(todo->dtStart().date()); |
244 | mStartTimeEdit->setTime(todo->dtStart().time()); | 244 | mStartTimeEdit->setTime(todo->dtStart().time()); |
245 | mStartCheck->setChecked(true); | 245 | mStartCheck->setChecked(true); |
246 | } else { | 246 | } else { |
247 | mStartDateEdit->setEnabled(false); | 247 | mStartDateEdit->setEnabled(false); |
248 | mStartTimeEdit->setEnabled(false); | 248 | mStartTimeEdit->setEnabled(false); |
249 | mStartDateEdit->setDate(QDate::currentDate()); | 249 | mStartDateEdit->setDate(QDate::currentDate()); |
250 | mStartTimeEdit->setTime(QTime::currentTime()); | 250 | mStartTimeEdit->setTime(QTime::currentTime()); |
251 | mStartCheck->setChecked(false); | 251 | mStartCheck->setChecked(false); |
252 | } | 252 | } |
253 | 253 | ||
254 | mTimeButton->setChecked( !todo->doesFloat() ); | 254 | mTimeButton->setChecked( !todo->doesFloat() ); |
255 | 255 | ||
256 | mCompletedCombo->setCurrentItem(todo->percentComplete() / 20); | 256 | mCompletedCombo->setCurrentItem(todo->percentComplete() / 20); |
257 | if (todo->isCompleted() && todo->hasCompletedDate()) { | 257 | if (todo->isCompleted() && todo->hasCompletedDate()) { |
258 | mCompleted = todo->completed(); | 258 | mCompleted = todo->completed(); |
259 | } | 259 | } |
260 | setCompletedDate(); | 260 | setCompletedDate(); |
261 | 261 | ||
262 | mPriorityCombo->setCurrentItem(todo->priority()-1); | 262 | mPriorityCombo->setCurrentItem(todo->priority()-1); |
263 | } | 263 | } |
264 | 264 | ||
265 | void KOEditorGeneralTodo::writeTodo(Todo *todo) | 265 | void KOEditorGeneralTodo::writeTodo(Todo *todo) |
266 | { | 266 | { |
267 | KOEditorGeneral::writeIncidence(todo); | 267 | KOEditorGeneral::writeIncidence(todo); |
268 | 268 | ||
269 | // temp. until something better happens. | 269 | // temp. until something better happens. |
270 | QString tmpStr; | 270 | QString tmpStr; |
271 | 271 | ||
272 | todo->setHasDueDate(mDueCheck->isChecked()); | 272 | todo->setHasDueDate(mDueCheck->isChecked()); |
273 | todo->setHasStartDate(mStartCheck->isChecked()); | 273 | todo->setHasStartDate(mStartCheck->isChecked()); |
274 | 274 | ||
275 | QDate tmpDate; | 275 | QDate tmpDate; |
276 | QTime tmpTime; | 276 | QTime tmpTime; |
277 | QDateTime tmpDT; | 277 | QDateTime tmpDT; |
278 | if ( mTimeButton->isChecked() ) { | 278 | if ( mTimeButton->isChecked() ) { |
279 | todo->setFloats(false); | 279 | todo->setFloats(false); |
280 | 280 | ||
281 | // set due date/time | 281 | // set due date/time |
282 | tmpDate = mDueDateEdit->date(); | 282 | tmpDate = mDueDateEdit->date(); |
283 | tmpTime = mDueTimeEdit->getTime(); | 283 | tmpTime = mDueTimeEdit->getTime(); |
284 | tmpDT.setDate(tmpDate); | 284 | tmpDT.setDate(tmpDate); |
285 | tmpDT.setTime(tmpTime); | 285 | tmpDT.setTime(tmpTime); |
286 | todo->setDtDue(tmpDT); | 286 | todo->setDtDue(tmpDT); |
287 | 287 | ||
288 | // set start date/time | 288 | // set start date/time |
289 | tmpDate = mStartDateEdit->date(); | 289 | tmpDate = mStartDateEdit->date(); |
290 | tmpTime = mStartTimeEdit->getTime(); | 290 | tmpTime = mStartTimeEdit->getTime(); |
291 | tmpDT.setDate(tmpDate); | 291 | tmpDT.setDate(tmpDate); |
292 | tmpDT.setTime(tmpTime); | 292 | tmpDT.setTime(tmpTime); |
293 | todo->setDtStart(tmpDT); | 293 | todo->setDtStart(tmpDT); |
294 | } else { | 294 | } else { |
295 | todo->setFloats(true); | 295 | todo->setFloats(true); |
296 | 296 | ||
297 | // need to change this. | 297 | // need to change this. |
298 | tmpDate = mDueDateEdit->date(); | 298 | tmpDate = mDueDateEdit->date(); |
299 | tmpTime.setHMS(0,0,0); | 299 | tmpTime.setHMS(0,0,0); |
300 | tmpDT.setDate(tmpDate); | 300 | tmpDT.setDate(tmpDate); |
301 | tmpDT.setTime(tmpTime); | 301 | tmpDT.setTime(tmpTime); |
302 | todo->setDtDue(tmpDT); | 302 | todo->setDtDue(tmpDT); |
303 | 303 | ||
304 | tmpDate = mStartDateEdit->date(); | 304 | tmpDate = mStartDateEdit->date(); |
305 | tmpTime.setHMS(0,0,0); | 305 | tmpTime.setHMS(0,0,0); |
306 | tmpDT.setDate(tmpDate); | 306 | tmpDT.setDate(tmpDate); |
307 | tmpDT.setTime(tmpTime); | 307 | tmpDT.setTime(tmpTime); |
308 | todo->setDtStart(tmpDT); | 308 | todo->setDtStart(tmpDT); |
309 | } | 309 | } |
310 | 310 | ||
311 | todo->setPriority(mPriorityCombo->currentItem()+1); | 311 | todo->setPriority(mPriorityCombo->currentItem()+1); |
312 | 312 | ||
313 | // set completion state | 313 | // set completion state |
314 | todo->setPercentComplete(mCompletedCombo->currentItem() * 20); | 314 | todo->setPercentComplete(mCompletedCombo->currentItem() * 20); |
315 | 315 | ||
316 | if (mCompletedCombo->currentItem() == 5 && mCompleted.isValid()) { | 316 | if (mCompletedCombo->currentItem() == 5 && mCompleted.isValid()) { |
317 | todo->setCompleted(mCompleted); | 317 | todo->setCompleted(mCompleted); |
318 | } | 318 | } |
319 | mSummaryEdit->save(KOLocationBox::SUMMARYTODO); | 319 | mSummaryEdit->save(KOLocationBox::SUMMARYTODO); |
320 | } | 320 | } |
321 | 321 | ||
322 | void KOEditorGeneralTodo::enableDueEdit(bool enable) | 322 | void KOEditorGeneralTodo::enableDueEdit(bool enable) |
323 | { | 323 | { |
324 | mDueDateEdit->setEnabled( enable ); | 324 | mDueDateEdit->setEnabled( enable ); |
325 | 325 | ||
326 | if(mDueCheck->isChecked() || mStartCheck->isChecked()) { | 326 | if(mDueCheck->isChecked() || mStartCheck->isChecked()) { |
327 | mTimeButton->setEnabled(true); | 327 | mTimeButton->setEnabled(true); |
328 | } | 328 | } |
329 | else { | 329 | else { |
330 | mTimeButton->setEnabled(false); | 330 | mTimeButton->setEnabled(false); |
331 | mTimeButton->setChecked(false); | 331 | mTimeButton->setChecked(false); |
332 | } | 332 | } |
333 | 333 | ||
334 | if (enable) { | 334 | if (enable) { |
335 | mDueTimeEdit->setEnabled( mTimeButton->isChecked() ); | 335 | mDueTimeEdit->setEnabled( mTimeButton->isChecked() ); |
336 | } else { | 336 | } else { |
337 | mDueTimeEdit->setEnabled( false ); | 337 | mDueTimeEdit->setEnabled( false ); |
338 | } | 338 | } |
339 | } | 339 | } |
340 | 340 | ||
341 | void KOEditorGeneralTodo::enableStartEdit( bool enable ) | 341 | void KOEditorGeneralTodo::enableStartEdit( bool enable ) |
342 | { | 342 | { |
343 | mStartDateEdit->setEnabled( enable ); | 343 | mStartDateEdit->setEnabled( enable ); |
344 | 344 | ||
345 | if(mDueCheck->isChecked() || mStartCheck->isChecked()) { | 345 | if(mDueCheck->isChecked() || mStartCheck->isChecked()) { |
346 | mTimeButton->setEnabled(true); | 346 | mTimeButton->setEnabled(true); |
347 | } | 347 | } |
348 | else { | 348 | else { |
349 | mTimeButton->setEnabled(false); | 349 | mTimeButton->setEnabled(false); |
350 | mTimeButton->setChecked(false); | 350 | mTimeButton->setChecked(false); |
351 | } | 351 | } |
352 | 352 | ||
353 | if (enable) { | 353 | if (enable) { |
354 | mStartTimeEdit->setEnabled( mTimeButton->isChecked() ); | 354 | mStartTimeEdit->setEnabled( mTimeButton->isChecked() ); |
355 | } else { | 355 | } else { |
356 | mStartTimeEdit->setEnabled( false ); | 356 | mStartTimeEdit->setEnabled( false ); |
357 | } | 357 | } |
358 | } | 358 | } |
359 | 359 | ||
360 | void KOEditorGeneralTodo::enableTimeEdits(bool enable) | 360 | void KOEditorGeneralTodo::enableTimeEdits(bool enable) |
361 | { | 361 | { |
362 | if(mStartCheck->isChecked()) { | 362 | if(mStartCheck->isChecked()) { |
363 | mStartTimeEdit->setEnabled( enable ); | 363 | mStartTimeEdit->setEnabled( enable ); |
364 | } | 364 | } |
365 | if(mDueCheck->isChecked()) { | 365 | if(mDueCheck->isChecked()) { |
366 | mDueTimeEdit->setEnabled( enable ); | 366 | mDueTimeEdit->setEnabled( enable ); |
367 | } | 367 | } |
368 | } | 368 | } |
369 | 369 | ||
370 | void KOEditorGeneralTodo::showAlarm() | 370 | void KOEditorGeneralTodo::showAlarm() |
371 | { | 371 | { |
372 | if ( mDueCheck->isChecked() ) { | 372 | if ( mDueCheck->isChecked() ) { |
373 | alarmDisable(false); | 373 | alarmDisable(false); |
374 | } | 374 | } |
375 | else { | 375 | else { |
376 | alarmDisable(true); | 376 | alarmDisable(true); |
377 | } | 377 | } |
378 | } | 378 | } |
379 | 379 | ||
380 | bool KOEditorGeneralTodo::validateInput() | 380 | bool KOEditorGeneralTodo::validateInput() |
381 | { | 381 | { |
382 | if (mDueCheck->isChecked()) { | 382 | if (mDueCheck->isChecked()) { |
383 | if (!mDueDateEdit->inputIsValid()) { | 383 | if (!mDueDateEdit->inputIsValid()) { |
384 | KMessageBox::sorry(0,i18n("Please specify a valid due date.")); | 384 | KMessageBox::sorry(0,i18n("Please specify a valid due date.")); |
385 | return false; | 385 | return false; |
386 | } | 386 | } |
387 | if (mTimeButton->isChecked()) { | ||
388 | if (!mDueTimeEdit->inputIsValid()) { | ||
389 | KMessageBox::sorry(0,i18n("Please specify a valid due time.")); | ||
390 | return false; | ||
391 | } | ||
392 | } | ||
393 | } | 387 | } |
394 | 388 | ||
395 | if (mStartCheck->isChecked()) { | 389 | if (mStartCheck->isChecked()) { |
396 | if (!mStartDateEdit->inputIsValid()) { | 390 | if (!mStartDateEdit->inputIsValid()) { |
397 | KMessageBox::sorry(0,i18n("Please specify a valid start date.")); | 391 | KMessageBox::sorry(0,i18n("Please specify a valid start date.")); |
398 | return false; | 392 | return false; |
399 | } | 393 | } |
400 | if (mTimeButton->isChecked()) { | ||
401 | if (!mStartTimeEdit->inputIsValid()) { | ||
402 | KMessageBox::sorry(0,i18n("Please specify a valid start time.")); | ||
403 | return false; | ||
404 | } | ||
405 | } | ||
406 | } | 394 | } |
407 | 395 | ||
408 | if (mStartCheck->isChecked() && mDueCheck->isChecked()) { | 396 | if (mStartCheck->isChecked() && mDueCheck->isChecked()) { |
409 | QDateTime startDate; | 397 | QDateTime startDate; |
410 | QDateTime dueDate; | 398 | QDateTime dueDate; |
411 | startDate.setDate(mStartDateEdit->date()); | 399 | startDate.setDate(mStartDateEdit->date()); |
412 | dueDate.setDate(mDueDateEdit->date()); | 400 | dueDate.setDate(mDueDateEdit->date()); |
413 | if (mTimeButton->isChecked()) { | 401 | if (mTimeButton->isChecked()) { |
414 | startDate.setTime(mStartTimeEdit->getTime()); | 402 | startDate.setTime(mStartTimeEdit->getTime()); |
415 | dueDate.setTime(mDueTimeEdit->getTime()); | 403 | dueDate.setTime(mDueTimeEdit->getTime()); |
416 | } | 404 | } |
417 | if (startDate > dueDate) { | 405 | if (startDate > dueDate) { |
418 | KMessageBox::sorry(0, | 406 | KMessageBox::sorry(0, |
419 | i18n("The start date cannot be after the due date.")); | 407 | i18n("The start date cannot be after the due date.")); |
420 | return false; | 408 | return false; |
421 | } | 409 | } |
422 | } | 410 | } |
423 | 411 | ||
424 | return KOEditorGeneral::validateInput(); | 412 | return KOEditorGeneral::validateInput(); |
425 | } | 413 | } |
426 | 414 | ||
427 | void KOEditorGeneralTodo::completedChanged(int index) | 415 | void KOEditorGeneralTodo::completedChanged(int index) |
428 | { | 416 | { |
429 | if (index == 5) { | 417 | if (index == 5) { |
430 | mCompleted = QDateTime::currentDateTime(); | 418 | mCompleted = QDateTime::currentDateTime(); |
431 | } | 419 | } |
432 | setCompletedDate(); | 420 | setCompletedDate(); |
433 | } | 421 | } |
434 | 422 | ||
435 | void KOEditorGeneralTodo::setCompletedDate() | 423 | void KOEditorGeneralTodo::setCompletedDate() |
436 | { | 424 | { |
437 | if (mCompletedCombo->currentItem() == 5 && mCompleted.isValid()) { | 425 | if (mCompletedCombo->currentItem() == 5 && mCompleted.isValid()) { |
438 | mCompletedLabel->setText(i18n("completed on %1") | 426 | mCompletedLabel->setText(i18n("completed on %1") |
439 | .arg(KGlobal::locale()->formatDateTime(mCompleted))); | 427 | .arg(KGlobal::locale()->formatDateTime(mCompleted))); |
440 | } else { | 428 | } else { |
441 | mCompletedLabel->setText(i18n("completed")); | 429 | mCompletedLabel->setText(i18n("completed")); |
442 | } | 430 | } |
443 | } | 431 | } |
444 | 432 | ||
445 | void KOEditorGeneralTodo::modified (Todo* todo, int modification) | 433 | void KOEditorGeneralTodo::modified (Todo* todo, int modification) |
446 | { | 434 | { |
447 | switch (modification) { | 435 | switch (modification) { |
448 | case KOGlobals::PRIORITY_MODIFIED: | 436 | case KOGlobals::PRIORITY_MODIFIED: |
449 | mPriorityCombo->setCurrentItem(todo->priority()-1); | 437 | mPriorityCombo->setCurrentItem(todo->priority()-1); |
450 | break; | 438 | break; |
451 | case KOGlobals::COMPLETION_MODIFIED: | 439 | case KOGlobals::COMPLETION_MODIFIED: |
452 | mCompletedCombo->setCurrentItem(todo->percentComplete() / 20); | 440 | mCompletedCombo->setCurrentItem(todo->percentComplete() / 20); |
453 | if (todo->isCompleted() && todo->hasCompletedDate()) { | 441 | if (todo->isCompleted() && todo->hasCompletedDate()) { |
454 | mCompleted = todo->completed(); | 442 | mCompleted = todo->completed(); |
455 | } | 443 | } |
456 | setCompletedDate(); | 444 | setCompletedDate(); |
457 | break; | 445 | break; |
458 | case KOGlobals::CATEGORY_MODIFIED: | 446 | case KOGlobals::CATEGORY_MODIFIED: |
459 | setCategories (todo->categoriesStr ()); | 447 | setCategories (todo->categoriesStr ()); |
460 | break; | 448 | break; |
461 | case KOGlobals::UNKNOWN_MODIFIED: // fall through | 449 | case KOGlobals::UNKNOWN_MODIFIED: // fall through |
462 | default: | 450 | default: |
463 | readTodo( todo ); | 451 | readTodo( todo ); |
464 | break; | 452 | break; |
465 | } | 453 | } |
466 | } | 454 | } |
diff --git a/korganizer/ktimeedit.cpp b/korganizer/ktimeedit.cpp index f5a1c50..5222ac9 100644 --- a/korganizer/ktimeedit.cpp +++ b/korganizer/ktimeedit.cpp | |||
@@ -1,528 +1,474 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 1999 Preston Brown, Ian Dawes | 3 | Copyright (c) 1999 Preston Brown, Ian Dawes |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qkeycode.h> | 24 | #include <qkeycode.h> |
25 | #include <qcombobox.h> | 25 | #include <qcombobox.h> |
26 | #include <qdatetime.h> | 26 | #include <qdatetime.h> |
27 | #include <qlineedit.h> | 27 | #include <qlineedit.h> |
28 | #include <qlistbox.h> | ||
28 | #include <qapplication.h> | 29 | #include <qapplication.h> |
29 | 30 | ||
30 | #include <kmessagebox.h> | 31 | #include <kmessagebox.h> |
31 | #include <kglobal.h> | 32 | #include <kglobal.h> |
32 | #include <kdebug.h> | 33 | #include <kdebug.h> |
33 | #include <klocale.h> | 34 | #include <klocale.h> |
34 | #include <kpimglobalprefs.h> | 35 | #include <kpimglobalprefs.h> |
35 | 36 | ||
36 | #include "ktimeedit.h" | 37 | #include "ktimeedit.h" |
37 | #include "koprefs.h" | 38 | #include "koprefs.h" |
38 | #include <qvalidator.h> | 39 | #include <qvalidator.h> |
39 | 40 | ||
40 | // Validator for a time value with only hours and minutes (no seconds) | 41 | // Validator for a time value with only hours and minutes (no seconds) |
41 | // Mostly locale aware. Author: David Faure <faure@kde.org> | 42 | // Mostly locale aware. Author: David Faure <faure@kde.org> |
42 | class KOTimeValidator : public QValidator | ||
43 | { | ||
44 | public: | ||
45 | KOTimeValidator(QWidget* parent, const char* name=0) : QValidator(parent, name) {} | ||
46 | |||
47 | virtual State validate(QString& str, int& /*cursorPos*/) const | ||
48 | { | ||
49 | return Acceptable; | ||
50 | bool ok = false; | ||
51 | // TODO use KLocale::WithoutSeconds in HEAD | ||
52 | /*QTime time =*/ KGlobal::locale()->readTime(str, &ok); | ||
53 | if ( ok ) | ||
54 | return Acceptable; | ||
55 | // readTime doesn't help knowing when the string is "Intermediate". | ||
56 | int length = str.length(); | ||
57 | if ( !str ) // empty string? | ||
58 | return Invalid; // there should always be a ':' in it, right? | ||
59 | // HACK. Not fully locale aware etc. (esp. the separator is '.' in sv_SE...) | ||
60 | QChar sep = ':'; | ||
61 | // I want to allow "HH:", ":MM" and ":" to make editing easier | ||
62 | if ( str[0] == sep ) | ||
63 | { | ||
64 | if ( length == 1 ) // just ":" | ||
65 | return Intermediate; | ||
66 | QString minutes = str.mid(1); | ||
67 | int m = minutes.toInt(&ok); | ||
68 | if ( ok && m >= 0 && m < 60 ) | ||
69 | return Intermediate; | ||
70 | } else if ( str.at(str.length()-1) == sep ) | ||
71 | { | ||
72 | QString hours = str.left(length-1); | ||
73 | int h = hours.toInt(&ok); | ||
74 | if ( ok && h >= 0 && h < 24 ) | ||
75 | return Intermediate; | ||
76 | } | ||
77 | return Invalid; | ||
78 | } | ||
79 | }; | ||
80 | 43 | ||
81 | // KTimeWidget/QTimeEdit provide nicer editing, but don't provide a combobox. | 44 | // KTimeWidget/QTimeEdit provide nicer editing, but don't provide a combobox. |
82 | // Difficult to get all in one... | 45 | // Difficult to get all in one... |
83 | // But Qt-3.2 will offer QLineEdit::setMask, so a "99:99" mask would help. | 46 | // But Qt-3.2 will offer QLineEdit::setMask, so a "99:99" mask would help. |
84 | KOTimeEdit::KOTimeEdit(QWidget *parent, QTime qt, const char *name) | 47 | KOTimeEdit::KOTimeEdit(QWidget *parent, QTime qt, const char *name) |
85 | : QComboBox(TRUE, parent, name) | 48 | : QComboBox(TRUE, parent, name) |
86 | { | 49 | { |
87 | setInsertionPolicy(NoInsertion); | 50 | setInsertionPolicy(NoInsertion); |
88 | setValidator( new KOTimeValidator( this ) ); | ||
89 | mFlagKeyPressed = false; | 51 | mFlagKeyPressed = false; |
90 | 52 | ||
91 | if ( QApplication::desktop()->width() < 650 ) | 53 | if ( QApplication::desktop()->width() < 650 ) |
92 | setSizeLimit ( 6 ); | 54 | setSizeLimit ( 6 ); |
93 | mTime = qt; | 55 | mTime = qt; |
94 | 56 | ||
95 | // mNoTimeString = i18n("No Time"); | 57 | // mNoTimeString = i18n("No Time"); |
96 | // insertItem( mNoTimeString ); | 58 | // insertItem( mNoTimeString ); |
97 | 59 | ||
98 | // Fill combo box with selection of times in localized format. | 60 | // Fill combo box with selection of times in localized format. |
99 | QTime timeEntry(0,0,0); | 61 | QTime timeEntry(0,0,0); |
100 | do { | 62 | do { |
101 | insertItem(KGlobal::locale()->formatTime(timeEntry)); | 63 | insertItem(KGlobal::locale()->formatTime(timeEntry)); |
102 | timeEntry = timeEntry.addSecs(60*15); | 64 | timeEntry = timeEntry.addSecs(60*15); |
103 | } while (!timeEntry.isNull()); | 65 | } while (!timeEntry.isNull()); |
104 | // Add end of day. | 66 | // Add end of day. |
105 | insertItem( KGlobal::locale()->formatTime( QTime( 23, 59, 59 ) ) ); | 67 | insertItem( KGlobal::locale()->formatTime( QTime( 23, 59, 59 ) ) ); |
106 | 68 | ||
107 | updateText(); | 69 | updateText(); |
108 | setFocusPolicy(QWidget::StrongFocus); | 70 | setFocusPolicy(QWidget::StrongFocus); |
109 | 71 | ||
110 | connect(this, SIGNAL(activated(int)), this, SLOT(activ(int))); | 72 | connect(this, SIGNAL(activated(int)), this, SLOT(activ(int))); |
111 | connect(this, SIGNAL(highlighted(int)), this, SLOT(hilit(int))); | 73 | connect(this, SIGNAL(highlighted(int)), this, SLOT(hilit(int))); |
112 | connect(this,SIGNAL(textChanged(const QString&)),this,SLOT(changedText())); | 74 | connect(this,SIGNAL(textChanged(const QString&)),this,SLOT(changedText())); |
113 | QFontMetrics fm ( font() ); | 75 | QFontMetrics fm ( font() ); |
114 | QString timeString = "24:00"; | 76 | QString timeString = "24:00"; |
115 | if ( KPimGlobalPrefs::instance()->mPreferredTime == 1 ) | 77 | if ( KPimGlobalPrefs::instance()->mPreferredTime == 1 ) |
116 | timeString = "02:00pm"; | 78 | timeString = "02:00pm"; |
117 | int addSpace = 32; | 79 | int addSpace = 32; |
118 | if ( QApplication::desktop()->width() > 320 ) | 80 | if ( QApplication::desktop()->width() > 320 ) |
119 | timeString += ":00"; | 81 | timeString += ":00"; |
120 | setFixedWidth(fm.width( timeString ) + 32 ); | 82 | setFixedWidth(fm.width( timeString ) + 32 ); |
121 | 83 | ||
122 | // Highlight Background and Textcolor change from default | 84 | // Highlight Background and Textcolor change from default |
123 | QPalette palette = QWidget::palette(); | 85 | QPalette palette = QWidget::palette(); |
124 | unsigned char red, green, blue; | 86 | unsigned char red, green, blue; |
125 | red = palette.color( QPalette::Normal , QColorGroup::Background ).red() - 10; | 87 | red = palette.color( QPalette::Normal , QColorGroup::Background ).red() - 10; |
126 | green = palette.color( QPalette::Normal , QColorGroup::Background ).green() - 10; | 88 | green = palette.color( QPalette::Normal , QColorGroup::Background ).green() - 10; |
127 | blue = palette.color( QPalette::Normal , QColorGroup::Background ).blue() - 10; | 89 | blue = palette.color( QPalette::Normal , QColorGroup::Background ).blue() - 10; |
128 | palette.setColor( QColorGroup::Highlight, QColor(red,green,blue) ); | 90 | palette.setColor( QColorGroup::Highlight, QColor(red,green,blue) ); |
129 | palette.setColor( QColorGroup::HighlightedText, palette.color( QPalette::Normal , QColorGroup::Foreground ) ); | 91 | palette.setColor( QColorGroup::HighlightedText, palette.color( QPalette::Normal , QColorGroup::Foreground ) ); |
130 | setPalette( palette ); | 92 | setPalette( palette ); |
131 | } | 93 | } |
132 | 94 | ||
133 | KOTimeEdit::~KOTimeEdit() | 95 | KOTimeEdit::~KOTimeEdit() |
134 | { | 96 | { |
135 | } | 97 | } |
136 | 98 | ||
137 | bool KOTimeEdit::hasTime() const | 99 | bool KOTimeEdit::hasTime() const |
138 | { | 100 | { |
139 | // Can't happen | 101 | // Can't happen |
140 | if ( currentText().isEmpty() ) return false; | 102 | if ( currentText().isEmpty() ) return false; |
141 | //if ( currentText() == mNoTimeString ) return false; | 103 | //if ( currentText() == mNoTimeString ) return false; |
142 | 104 | ||
143 | return true; // always | 105 | return true; // always |
144 | } | 106 | } |
145 | 107 | ||
146 | QTime KOTimeEdit::getTime() const | 108 | QTime KOTimeEdit::getTime() const |
147 | { | 109 | { |
148 | //kdDebug(5850) << "KOTimeEdit::getTime(), currentText() = " << currentText() << endl; | 110 | return KGlobal::locale()->readTime(currentText()); |
149 | // TODO use KLocale::WithoutSeconds in HEAD | ||
150 | QTime time = KGlobal::locale()->readTime(currentText()); | ||
151 | // kdDebug(5850) << "KOTimeEdit::getTime(): " << time.toString() << endl; | ||
152 | return time; | ||
153 | } | 111 | } |
154 | /* | 112 | /* |
155 | QSizePolicy KOTimeEdit::sizePolicy() const | 113 | QSizePolicy KOTimeEdit::sizePolicy() const |
156 | { | 114 | { |
157 | // Set size policy to Fixed, because edit cannot contain more text than the | 115 | // Set size policy to Fixed, because edit cannot contain more text than the |
158 | // string representing the time. It doesn't make sense to provide more space. | 116 | // string representing the time. It doesn't make sense to provide more space. |
159 | QSizePolicy sizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed); | 117 | QSizePolicy sizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed); |
160 | 118 | ||
161 | return sizePolicy; | 119 | return sizePolicy; |
162 | } | 120 | } |
163 | */ | 121 | */ |
164 | void KOTimeEdit::setTime(QTime newTime) | 122 | void KOTimeEdit::setTime(QTime newTime) |
165 | { | 123 | { |
166 | if ( mTime != newTime ) | 124 | if ( mTime != newTime ) |
167 | { | 125 | { |
168 | kdDebug(5850) << "KOTimeEdit::setTime(): " << newTime.toString() << endl; | ||
169 | |||
170 | mTime = newTime; | 126 | mTime = newTime; |
171 | updateText(); | 127 | updateText(); |
172 | } | 128 | } |
173 | 129 | ||
174 | } | 130 | } |
175 | 131 | ||
176 | void KOTimeEdit::activ(int i) | 132 | void KOTimeEdit::activ(int i) |
177 | { | 133 | { |
178 | // The last entry, 23:59, is a special case | 134 | // The last entry, 23:59, is a special case |
179 | if( i == count() - 1 ) | 135 | if( i == count() - 1 ) |
180 | mTime = QTime( 23, 59, 0 ); | 136 | mTime = QTime( 23, 59, 0 ); |
181 | else | 137 | else |
182 | mTime = QTime(0,0,0).addSecs(i*15*60); | 138 | mTime = QTime(0,0,0).addSecs(i*15*60); |
183 | emit timeChanged(mTime); | 139 | emit timeChanged(mTime); |
184 | } | 140 | } |
185 | 141 | ||
186 | void KOTimeEdit::hilit(int ) | 142 | void KOTimeEdit::hilit(int ) |
187 | { | 143 | { |
188 | // we don't currently need to do anything here. | 144 | // we don't currently need to do anything here. |
189 | } | 145 | } |
190 | 146 | ||
191 | void KOTimeEdit::addTime(QTime qt, bool update) | 147 | void KOTimeEdit::addTime(QTime qt, bool update) |
192 | { | 148 | { |
193 | // Calculate the new time. | 149 | // Calculate the new time. |
194 | //qDebug("add h %d min %d ", qt.hour(),qt.minute() ); | 150 | //qDebug("add h %d min %d ", qt.hour(),qt.minute() ); |
195 | mTime = mTime.addSecs(qt.minute()*60+qt.hour()*3600); | 151 | mTime = mTime.addSecs(qt.minute()*60+qt.hour()*3600); |
196 | // if ( update ) | 152 | // if ( update ) |
197 | updateText(); | 153 | updateText(); |
198 | emit timeChanged(mTime); | 154 | emit timeChanged(mTime); |
199 | } | 155 | } |
200 | 156 | ||
201 | void KOTimeEdit::subTime(QTime qt, bool update) | 157 | void KOTimeEdit::subTime(QTime qt, bool update) |
202 | { | 158 | { |
203 | int h, m; | 159 | int h, m; |
204 | //qDebug("sub h %d min %d ", qt.hour(),qt.minute() ); | 160 | //qDebug("sub h %d min %d ", qt.hour(),qt.minute() ); |
205 | 161 | ||
206 | mTime = mTime.addSecs(-(qt.minute()*60+qt.hour()*3600)); | 162 | mTime = mTime.addSecs(-(qt.minute()*60+qt.hour()*3600)); |
207 | // store the newly calculated time. | 163 | // store the newly calculated time. |
208 | // mTime.setHMS(h, m, 0); | 164 | // mTime.setHMS(h, m, 0); |
209 | //if ( update ) | 165 | //if ( update ) |
210 | updateText(); | 166 | updateText(); |
211 | emit timeChanged(mTime); | 167 | emit timeChanged(mTime); |
212 | } | 168 | } |
213 | 169 | ||
214 | // void KOTimeEdit::mouseReleaseEvent ( QMouseEvent * ) | 170 | // void KOTimeEdit::mouseReleaseEvent ( QMouseEvent * ) |
215 | // { | 171 | // { |
216 | // qDebug("mouseReleaseEvent ( QMouseEvent * ) "); | 172 | // qDebug("mouseReleaseEvent ( QMouseEvent * ) "); |
217 | // } | 173 | // } |
218 | 174 | ||
219 | // void KOTimeEdit::focusInEvent ( QFocusEvent * ) | 175 | // void KOTimeEdit::focusInEvent ( QFocusEvent * ) |
220 | // { | 176 | // { |
221 | // qDebug("focusInEvent ( QFocusEvent * ) "); | 177 | // qDebug("focusInEvent ( QFocusEvent * ) "); |
222 | // } | 178 | // } |
223 | 179 | ||
224 | void KOTimeEdit::keyReleaseEvent(QKeyEvent *e) | 180 | void KOTimeEdit::keyReleaseEvent(QKeyEvent *e) |
225 | { | 181 | { |
226 | if ( !e->isAutoRepeat() ) { | 182 | if ( !e->isAutoRepeat() ) { |
227 | mFlagKeyPressed = false; | 183 | mFlagKeyPressed = false; |
228 | } | 184 | } |
229 | 185 | ||
230 | } | 186 | } |
231 | void KOTimeEdit::setSelect( int from, int to ) | 187 | void KOTimeEdit::setSelect( int from, int to ) |
232 | { | 188 | { |
233 | if ( KOPrefs::instance()->mHightlightDateTimeEdit) | 189 | if ( KOPrefs::instance()->mHightlightDateTimeEdit) |
234 | lineEdit()->setSelection( from , to ); | 190 | lineEdit()->setSelection( from , to ); |
235 | } | 191 | } |
236 | 192 | ||
237 | 193 | ||
238 | void KOTimeEdit::keyPressEvent(QKeyEvent *e) | 194 | void KOTimeEdit::keyPressEvent(QKeyEvent *e) |
239 | { | 195 | { |
240 | 196 | ||
241 | qApp->processEvents(); | 197 | qApp->processEvents(); |
242 | bool hour12Format = ( KPimGlobalPrefs::instance()->mPreferredTime == 1 ); | 198 | bool hour12Format = ( KPimGlobalPrefs::instance()->mPreferredTime == 1 ); |
243 | int maxpos = hour12Format?7:5; | 199 | int maxpos = hour12Format?7:5; |
244 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 200 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
245 | e->ignore(); | 201 | e->ignore(); |
246 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 202 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
247 | return; | 203 | return; |
248 | } | 204 | } |
249 | if (! e->isAutoRepeat() ) { | 205 | if (! e->isAutoRepeat() ) { |
250 | mFlagKeyPressed = true; | 206 | mFlagKeyPressed = true; |
251 | } | 207 | } |
252 | // Tap -> Focus Next Widget | 208 | // Tap -> Focus Next Widget |
253 | if ( e->key() == Key_Tab ) { | 209 | if ( e->key() == Key_Tab ) { |
254 | QComboBox::keyPressEvent(e); | 210 | QComboBox::keyPressEvent(e); |
255 | return; | 211 | return; |
256 | } | 212 | } |
257 | 213 | ||
258 | // save Text from QLineEdit and CursorPosition | 214 | // save Text from QLineEdit and CursorPosition |
259 | QString text = lineEdit()->text(); | 215 | QString text = lineEdit()->text(); |
260 | int cpos = lineEdit()->cursorPosition(); | 216 | int cpos = lineEdit()->cursorPosition(); |
261 | // qDebug("cpos %d ", cpos); | 217 | // qDebug("cpos %d ", cpos); |
262 | 218 | ||
263 | // Switch for arrows, backspace and escape | 219 | // Switch for arrows, backspace and escape |
264 | switch(e->key()) { | 220 | switch(e->key()) { |
265 | case Key_Escape: | 221 | case Key_Escape: |
266 | lineEdit()->deselect(); | 222 | lineEdit()->deselect(); |
267 | case Key_Tab: | 223 | case Key_Tab: |
268 | QComboBox::keyPressEvent(e); | 224 | QComboBox::keyPressEvent(e); |
269 | break; | 225 | break; |
270 | case Key_Up: | 226 | case Key_Up: |
271 | if ( e->state () == Qt::ControlButton ) { | 227 | if ( e->state () == Qt::ControlButton ) { |
272 | addTime(QTime(0,15,0), false ); | 228 | addTime(QTime(0,15,0), false ); |
273 | lineEdit()->setCursorPosition(3); | 229 | lineEdit()->setCursorPosition(3); |
274 | setSelect( 3 , 2 ); | 230 | setSelect( 3 , 2 ); |
275 | } | 231 | } |
276 | else | 232 | else |
277 | if ( e->state () == Qt::ShiftButton ) { | 233 | if ( e->state () == Qt::ShiftButton ) { |
278 | addTime(QTime(1,0,0), false ); | 234 | addTime(QTime(1,0,0), false ); |
279 | lineEdit()->setCursorPosition(0); | 235 | lineEdit()->setCursorPosition(0); |
280 | setSelect( 0 , 2 ); | 236 | setSelect( 0 , 2 ); |
281 | } | 237 | } |
282 | else | 238 | else |
283 | // switch time up, cursor location depend | 239 | // switch time up, cursor location depend |
284 | switch (cpos) { | 240 | switch (cpos) { |
285 | case 7: | 241 | case 7: |
286 | case 6: | 242 | case 6: |
287 | case 5: | 243 | case 5: |
288 | if(!hour12Format) { | 244 | if(!hour12Format) { |
289 | lineEdit()->setCursorPosition(cpos = 4); | 245 | lineEdit()->setCursorPosition(cpos = 4); |
290 | } else { | 246 | } else { |
291 | addTime(QTime(12,0,0), false ); | 247 | addTime(QTime(12,0,0), false ); |
292 | setSelect ( 5 , 2 ); | 248 | setSelect ( 5 , 2 ); |
293 | break; | 249 | break; |
294 | } | 250 | } |
295 | case 4: | 251 | case 4: |
296 | addTime(QTime(0,1,0), false ); | 252 | addTime(QTime(0,1,0), false ); |
297 | setSelect ( cpos , 1 ); | 253 | setSelect ( cpos , 1 ); |
298 | break; | 254 | break; |
299 | case 3: | 255 | case 3: |
300 | addTime(QTime(0,10,0), false ); | 256 | addTime(QTime(0,10,0), false ); |
301 | setSelect ( cpos , 1 ); | 257 | setSelect ( cpos , 1 ); |
302 | break; | 258 | break; |
303 | case 2: | 259 | case 2: |
304 | lineEdit()->setCursorPosition(--cpos); | 260 | lineEdit()->setCursorPosition(--cpos); |
305 | case 1: | 261 | case 1: |
306 | case 0: | 262 | case 0: |
307 | addTime(QTime(1,0,0), false ); | 263 | addTime(QTime(1,0,0), false ); |
308 | setSelect ( 0, 2 ); | 264 | setSelect ( 0, 2 ); |
309 | break; | 265 | break; |
310 | } | 266 | } |
311 | break; | 267 | break; |
312 | case Key_Down: | 268 | case Key_Down: |
313 | if ( e->state () == Qt::ControlButton ) { | 269 | if ( e->state () == Qt::ControlButton ) { |
314 | subTime(QTime(0,15,0), false ); | 270 | subTime(QTime(0,15,0), false ); |
315 | lineEdit()->setCursorPosition(3); | 271 | lineEdit()->setCursorPosition(3); |
316 | setSelect( 3 , 2 ); | 272 | setSelect( 3 , 2 ); |
317 | } | 273 | } |
318 | else | 274 | else |
319 | if ( e->state () == Qt::ShiftButton ) { | 275 | if ( e->state () == Qt::ShiftButton ) { |
320 | subTime(QTime(1,0,0), false ); | 276 | subTime(QTime(1,0,0), false ); |
321 | lineEdit()->setCursorPosition(0); | 277 | lineEdit()->setCursorPosition(0); |
322 | setSelect( 0 , 2 ); | 278 | setSelect( 0 , 2 ); |
323 | } | 279 | } |
324 | else | 280 | else |
325 | // switch time down, cursor location depend | 281 | // switch time down, cursor location depend |
326 | switch (cpos) { | 282 | switch (cpos) { |
327 | case 7: | 283 | case 7: |
328 | case 6: | 284 | case 6: |
329 | case 5: | 285 | case 5: |
330 | if(!hour12Format) { | 286 | if(!hour12Format) { |
331 | lineEdit()->setCursorPosition(cpos = 4); | 287 | lineEdit()->setCursorPosition(cpos = 4); |
332 | } else { | 288 | } else { |
333 | subTime(QTime(12,0,0), false ); | 289 | subTime(QTime(12,0,0), false ); |
334 | setSelect ( 5 , 2 ); | 290 | setSelect ( 5 , 2 ); |
335 | break; | 291 | break; |
336 | } | 292 | } |
337 | case 4: | 293 | case 4: |
338 | subTime(QTime(0,1,0), false ); | 294 | subTime(QTime(0,1,0), false ); |
339 | setSelect ( cpos , 1 ); | 295 | setSelect ( cpos , 1 ); |
340 | break; | 296 | break; |
341 | case 3: | 297 | case 3: |
342 | subTime(QTime(0,10,0), false ); | 298 | subTime(QTime(0,10,0), false ); |
343 | setSelect ( cpos , 1 ); | 299 | setSelect ( cpos , 1 ); |
344 | break; | 300 | break; |
345 | case 2: | 301 | case 2: |
346 | lineEdit()->setCursorPosition(--cpos); | 302 | lineEdit()->setCursorPosition(--cpos); |
347 | case 1: | 303 | case 1: |
348 | case 0: | 304 | case 0: |
349 | subTime(QTime(1,0,0), false ); | 305 | subTime(QTime(1,0,0), false ); |
350 | setSelect ( 0 , 2 ); | 306 | setSelect ( 0 , 2 ); |
351 | break; | 307 | break; |
352 | } | 308 | } |
353 | break; | 309 | break; |
354 | // set cursor to correct place | 310 | // set cursor to correct place |
355 | case Key_Left: | 311 | case Key_Left: |
356 | if ( cpos == 3 ) | 312 | if ( cpos == 3 ) |
357 | --cpos; | 313 | --cpos; |
358 | if ( cpos > 0) { | 314 | if ( cpos > 0) { |
359 | lineEdit()->setCursorPosition(--cpos); | 315 | lineEdit()->setCursorPosition(--cpos); |
360 | setSelect ( cpos , 1 ); | 316 | setSelect ( cpos , 1 ); |
361 | } | 317 | } |
362 | else | 318 | else |
363 | setSelect ( 0 , 1 ); | 319 | setSelect ( 0 , 1 ); |
364 | break; | 320 | break; |
365 | // set cursor to correct place | 321 | // set cursor to correct place |
366 | case Key_Right: | 322 | case Key_Right: |
367 | if ( cpos == 1 ) | 323 | if ( cpos == 1 ) |
368 | ++cpos; | 324 | ++cpos; |
369 | if ( cpos < maxpos ) { | 325 | if ( cpos < maxpos ) { |
370 | lineEdit()->setCursorPosition(++cpos); | 326 | lineEdit()->setCursorPosition(++cpos); |
371 | setSelect ( cpos , 1 ); | 327 | setSelect ( cpos , 1 ); |
372 | } | 328 | } |
373 | break; | 329 | break; |
374 | // rest | 330 | // rest |
375 | case Key_Prior: | 331 | case Key_Prior: |
376 | subTime(QTime(1,0,0)); | 332 | subTime(QTime(1,0,0)); |
377 | break; | 333 | break; |
378 | case Key_Next: | 334 | case Key_Next: |
379 | addTime(QTime(1,0,0)); | 335 | addTime(QTime(1,0,0)); |
380 | break; | 336 | break; |
381 | case Key_Backspace: | 337 | case Key_Backspace: |
338 | qDebug("+++++++++++back "); | ||
382 | if ( cpos > 0) { | 339 | if ( cpos > 0) { |
383 | if ( cpos == 3 ) | 340 | if ( cpos == 3 ) |
384 | --cpos; | 341 | --cpos; |
385 | if ( cpos > 5) | 342 | if ( cpos > 5) |
386 | cpos = 5; | 343 | cpos = 5; |
387 | text.at( cpos-1 ) = '0'; | 344 | text.at( cpos-1 ) = '0'; |
388 | lineEdit()->setText( text ); | 345 | lineEdit()->setText( text ); |
389 | lineEdit()->setCursorPosition(--cpos); | 346 | lineEdit()->setCursorPosition(--cpos); |
390 | setSelect ( cpos , 1 ); | 347 | setSelect ( cpos , 1 ); |
391 | changedText(); | 348 | changedText(); |
349 | qDebug("---------back "); | ||
392 | } | 350 | } |
393 | break; | 351 | break; |
394 | } // switch arrows | 352 | } // switch arrows |
395 | 353 | ||
396 | // if cursor at string end, alltext market and keyEvent don't ArrowLeft -> deselect and cpos | 354 | // if cursor at string end, alltext market and keyEvent don't ArrowLeft -> deselect and cpos |
397 | if( cpos > 4 && lineEdit()->markedText().length() == 5 && e->key() != Key_Left ) { | 355 | if( cpos > 4 && lineEdit()->markedText().length() == 5 && e->key() != Key_Left ) { |
398 | lineEdit()->deselect(); | 356 | lineEdit()->deselect(); |
399 | cpos = 0; | 357 | cpos = 0; |
400 | lineEdit()->setCursorPosition(cpos); | 358 | lineEdit()->setCursorPosition(cpos); |
401 | setSelect(cpos , 1); | 359 | setSelect(cpos , 1); |
402 | } | 360 | } |
403 | 361 | ||
404 | if ( cpos == 2 ) { | 362 | if ( cpos == 2 ) { |
405 | lineEdit()->setCursorPosition(++cpos); | 363 | lineEdit()->setCursorPosition(++cpos); |
406 | } | 364 | } |
407 | 365 | ||
408 | // num keys when cursorPos preEnd | 366 | // num keys when cursorPos preEnd |
409 | if ( cpos < 5 ) { | 367 | if ( cpos < 5 ) { |
410 | // switch another keys | 368 | // switch another keys |
411 | switch(e->key()) { | 369 | switch(e->key()) { |
412 | case Key_Delete: | 370 | case Key_Delete: |
413 | text.at( cpos ) = '0'; | 371 | text.at( cpos ) = '0'; |
414 | lineEdit()->setText( text ); | 372 | lineEdit()->setText( text ); |
415 | lineEdit()->setCursorPosition(cpos); | 373 | lineEdit()->setCursorPosition(cpos); |
416 | setSelect ( cpos , 1 ); | 374 | setSelect ( cpos , 1 ); |
417 | changedText(); | 375 | changedText(); |
418 | break; | 376 | break; |
419 | case Key_9: | 377 | case Key_9: |
420 | case Key_8: | 378 | case Key_8: |
421 | case Key_7: | 379 | case Key_7: |
422 | case Key_6: | 380 | case Key_6: |
423 | if ( !(cpos == 1 || cpos == 4) ) | 381 | if ( !(cpos == 1 || cpos == 4) ) |
424 | return; | 382 | return; |
425 | if ( cpos == 1 && text.at( 0 ) > '1') | 383 | if ( cpos == 1 && text.at( 0 ) > '1') |
426 | text.at( 0 ) = '1'; | 384 | text.at( 0 ) = '1'; |
427 | case Key_5: | 385 | case Key_5: |
428 | case Key_4: | 386 | case Key_4: |
429 | case Key_3: | 387 | case Key_3: |
430 | if ( cpos < 1 ) | 388 | if ( cpos < 1 ) |
431 | return; | 389 | return; |
432 | if ( hour12Format && cpos == 1 ) | 390 | if ( hour12Format && cpos == 1 ) |
433 | return; | 391 | return; |
434 | case Key_2: | 392 | case Key_2: |
435 | if ( hour12Format && cpos == 0 ) | 393 | if ( hour12Format && cpos == 0 ) |
436 | return; | 394 | return; |
437 | if ( cpos == 0 && text.at( 1 ) > '3') | 395 | if ( cpos == 0 && text.at( 1 ) > '3') |
438 | text.at( 1 ) = '3'; | 396 | text.at( 1 ) = '3'; |
439 | case Key_1: | 397 | case Key_1: |
440 | case Key_0: | 398 | case Key_0: |
441 | if ( hour12Format ) { | 399 | if ( hour12Format ) { |
442 | if ( e->key() == Key_0 && cpos == 1 && text.at( 0 ) == '0' ) | 400 | if ( e->key() == Key_0 && cpos == 1 && text.at( 0 ) == '0' ) |
443 | return; | 401 | return; |
444 | if ( e->key() == Key_0 && cpos == 0 && text.at( 1 ) == '0' ) | 402 | if ( e->key() == Key_0 && cpos == 0 && text.at( 1 ) == '0' ) |
445 | text.at( 1 ) = '1'; | 403 | text.at( 1 ) = '1'; |
446 | } | 404 | } |
447 | text.at( cpos ) = QChar ( e->key() ); | 405 | text.at( cpos ) = QChar ( e->key() ); |
448 | lineEdit()->setText( text ); | 406 | lineEdit()->setText( text ); |
449 | if ( cpos == 1 ) | 407 | if ( cpos == 1 ) |
450 | ++cpos; | 408 | ++cpos; |
451 | if ( cpos < 5) | 409 | if ( cpos < 5) |
452 | lineEdit()->setCursorPosition(++cpos); | 410 | lineEdit()->setCursorPosition(++cpos); |
453 | setSelect( cpos , 1 ); | 411 | setSelect( cpos , 1 ); |
454 | changedText(); | 412 | changedText(); |
455 | break; | 413 | break; |
456 | case Key_Home: | 414 | case Key_Home: |
457 | lineEdit()->setCursorPosition(0); | 415 | lineEdit()->setCursorPosition(0); |
458 | setSelect( cpos , 1 ); | 416 | setSelect( cpos , 1 ); |
459 | break; | 417 | break; |
460 | case Key_End: | 418 | case Key_End: |
461 | lineEdit()->setCursorPosition(5); | 419 | lineEdit()->setCursorPosition(5); |
462 | lineEdit()->deselect(); | 420 | lineEdit()->deselect(); |
463 | break; | 421 | break; |
464 | default: | 422 | default: |
465 | // QComboBox::keyPressEvent(e); | 423 | // QComboBox::keyPressEvent(e); |
466 | break; | 424 | break; |
467 | } // switch num keys | 425 | } // switch num keys |
468 | } else if ( cpos == 5 ) {// if cpos < 5 | 426 | } else if ( cpos == 5 ) {// if cpos < 5 |
469 | if ( hour12Format ) { | 427 | if ( hour12Format ) { |
470 | if ( e->key() == Key_A ) { | 428 | if ( e->key() == Key_A ) { |
471 | text.at( 5 ) = 'a'; | 429 | text.at( 5 ) = 'a'; |
472 | lineEdit()->setText( text ); | 430 | lineEdit()->setText( text ); |
473 | lineEdit()->setCursorPosition(5); | 431 | lineEdit()->setCursorPosition(5); |
474 | 432 | ||
475 | } else if ( e->key() == Key_P ) { | 433 | } else if ( e->key() == Key_P ) { |
476 | text.at( 5 ) = 'p'; | 434 | text.at( 5 ) = 'p'; |
477 | lineEdit()->setText( text ); | 435 | lineEdit()->setText( text ); |
478 | lineEdit()->setCursorPosition(5); | 436 | lineEdit()->setCursorPosition(5); |
479 | 437 | ||
480 | } | 438 | } |
481 | } | 439 | } |
482 | } | 440 | } |
483 | 441 | ||
484 | 442 | ||
485 | } | 443 | } |
486 | 444 | ||
487 | void KOTimeEdit::updateText() | 445 | void KOTimeEdit::updateText() |
488 | { | 446 | { |
489 | // kdDebug(5850) << "KOTimeEdit::updateText() " << endl | 447 | listBox()->blockSignals( true ); |
490 | QString s = KGlobal::locale()->formatTime(mTime); | 448 | blockSignals( true ); |
491 | // Set the text but without emitting signals, nor losing the cursor position | 449 | QString s = KGlobal::locale()->formatTime(mTime); |
492 | QLineEdit *line = lineEdit(); | 450 | // Set the text but without emitting signals, nor losing the cursor position |
493 | line->blockSignals(true); | 451 | QLineEdit *line = lineEdit(); |
494 | int pos = line->cursorPosition(); | 452 | line->blockSignals(true); |
495 | // qDebug(" settext *%s* ", s.latin1()); | 453 | int pos = line->cursorPosition(); |
496 | line->setText(s); | ||
497 | // line->setCursorPosition(pos); | ||
498 | // line->blockSignals(false); | ||
499 | |||
500 | // kdDebug(5850) << "KOTimeEdit::updateText(): " << s << endl; | ||
501 | |||
502 | if (!mTime.minute() % 15) { | ||
503 | setCurrentItem((mTime.hour()*4)+(mTime.minute()/15)); | 454 | setCurrentItem((mTime.hour()*4)+(mTime.minute()/15)); |
504 | } | 455 | line->setText(s); |
505 | line->setCursorPosition(pos); | 456 | line->setCursorPosition(pos); |
506 | line->blockSignals(false); | 457 | line->blockSignals(false); |
507 | 458 | blockSignals( false ); | |
508 | } | 459 | listBox()->blockSignals( false ); |
509 | 460 | ||
510 | bool KOTimeEdit::inputIsValid() const | ||
511 | { | ||
512 | int cursorPos = lineEdit()->cursorPosition(); | ||
513 | QString str = currentText(); | ||
514 | return validator()->validate( str, cursorPos ) == QValidator::Acceptable; | ||
515 | } | 461 | } |
516 | 462 | ||
517 | void KOTimeEdit::changedText() | 463 | void KOTimeEdit::changedText() |
518 | { | 464 | { |
519 | //kdDebug(5850) << "KOTimeEdit::changedText()" << endl; | 465 | int pos = lineEdit()->cursorPosition(); |
520 | if ( inputIsValid() ) | 466 | mTime = getTime(); |
521 | { | 467 | blockSignals( true ); |
522 | int pos = lineEdit()->cursorPosition(); | 468 | QString text = lineEdit()->text(); |
523 | mTime = getTime(); | 469 | setCurrentItem((mTime.hour()*4)+(mTime.minute()/15)); |
524 | // updateText(); | 470 | lineEdit()->setText(text); |
525 | emit timeChanged(mTime); | 471 | blockSignals( false ); |
526 | lineEdit()->setCursorPosition(pos); | 472 | emit timeChanged(mTime); |
527 | } | 473 | lineEdit()->setCursorPosition(pos); |
528 | } | 474 | } |
diff --git a/korganizer/ktimeedit.h b/korganizer/ktimeedit.h index 7923070..b3d842d 100644 --- a/korganizer/ktimeedit.h +++ b/korganizer/ktimeedit.h | |||
@@ -1,97 +1,94 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 1999 Preston Brown, Ian Dawes | 3 | Copyright (c) 1999 Preston Brown, Ian Dawes |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef _KTIMEEDIT_H | 23 | #ifndef _KTIMEEDIT_H |
24 | #define _KTIMEEDIT_H | 24 | #define _KTIMEEDIT_H |
25 | 25 | ||
26 | #include <qevent.h> | 26 | #include <qevent.h> |
27 | #include <qkeycode.h> | 27 | #include <qkeycode.h> |
28 | #include <qstring.h> | 28 | #include <qstring.h> |
29 | #include <qdatetime.h> | 29 | #include <qdatetime.h> |
30 | #include <qcombobox.h> | 30 | #include <qcombobox.h> |
31 | 31 | ||
32 | #include <kapplication.h> | 32 | #include <kapplication.h> |
33 | 33 | ||
34 | /** | 34 | /** |
35 | This is a class that provides an easy, user friendly way to edit times. | 35 | This is a class that provides an easy, user friendly way to edit times. |
36 | up/down/ increase or decrease time, respectively. | 36 | up/down/ increase or decrease time, respectively. |
37 | 37 | ||
38 | @short Provides a way to edit times in a user-friendly manner. | 38 | @short Provides a way to edit times in a user-friendly manner. |
39 | @author Preston Brown, Ian Dawes | 39 | @author Preston Brown, Ian Dawes |
40 | */ | 40 | */ |
41 | class KOTimeEdit : public QComboBox | 41 | class KOTimeEdit : public QComboBox |
42 | { | 42 | { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | public: | 44 | public: |
45 | /** constructs a new time edit. */ | 45 | /** constructs a new time edit. */ |
46 | KOTimeEdit(QWidget *parent=0, QTime qt=QTime(12,0), const char *name=0); | 46 | KOTimeEdit(QWidget *parent=0, QTime qt=QTime(12,0), const char *name=0); |
47 | 47 | ||
48 | virtual ~KOTimeEdit(); | 48 | virtual ~KOTimeEdit(); |
49 | 49 | ||
50 | /** | 50 | /** |
51 | Returns, if a time is selected. Can not return false anymore.... | 51 | Returns, if a time is selected. Can not return false anymore.... |
52 | */ | 52 | */ |
53 | bool hasTime() const; | 53 | bool hasTime() const; |
54 | 54 | ||
55 | /** returns the time that is currently set in the timeLineEdit. */ | 55 | /** returns the time that is currently set in the timeLineEdit. */ |
56 | QTime getTime() const; | 56 | QTime getTime() const; |
57 | 57 | ||
58 | /** returns the prefered size policy of the KOTimeEdit */ | 58 | /** returns the prefered size policy of the KOTimeEdit */ |
59 | //QSizePolicy sizePolicy() const; | 59 | //QSizePolicy sizePolicy() const; |
60 | 60 | ||
61 | /** return true if input is a valid time and false if not */ | ||
62 | bool inputIsValid() const; | ||
63 | |||
64 | signals: | 61 | signals: |
65 | /** | 62 | /** |
66 | Emitted every time the time displayed changes. "newt" is the new | 63 | Emitted every time the time displayed changes. "newt" is the new |
67 | time. | 64 | time. |
68 | */ | 65 | */ |
69 | void timeChanged(QTime newt); | 66 | void timeChanged(QTime newt); |
70 | 67 | ||
71 | public slots: | 68 | public slots: |
72 | /** used to set the time which is displayed to a specific value. */ | 69 | /** used to set the time which is displayed to a specific value. */ |
73 | void setTime(QTime qt); | 70 | void setTime(QTime qt); |
74 | 71 | ||
75 | protected slots: | 72 | protected slots: |
76 | void activ(int); | 73 | void activ(int); |
77 | void hilit(int); | 74 | void hilit(int); |
78 | void changedText(); | 75 | void changedText(); |
79 | 76 | ||
80 | protected: | 77 | protected: |
81 | void keyPressEvent(QKeyEvent *qke); | 78 | void keyPressEvent(QKeyEvent *qke); |
82 | void keyReleaseEvent(QKeyEvent *qke); | 79 | void keyReleaseEvent(QKeyEvent *qke); |
83 | void setSelect ( int, int ); | 80 | void setSelect ( int, int ); |
84 | bool mFlagKeyPressed; | 81 | bool mFlagKeyPressed; |
85 | void addTime(QTime qt, bool update = true ); | 82 | void addTime(QTime qt, bool update = true ); |
86 | void subTime(QTime qt, bool update = true ); | 83 | void subTime(QTime qt, bool update = true ); |
87 | // Update the lineedit text from mTime | 84 | // Update the lineedit text from mTime |
88 | void updateText(); | 85 | void updateText(); |
89 | // void mouseReleaseEvent ( QMouseEvent * ) ; | 86 | // void mouseReleaseEvent ( QMouseEvent * ) ; |
90 | //void focusInEvent ( QFocusEvent * ) ; | 87 | //void focusInEvent ( QFocusEvent * ) ; |
91 | 88 | ||
92 | private: | 89 | private: |
93 | QTime mTime; // the widget's displayed time. | 90 | QTime mTime; // the widget's displayed time. |
94 | //QString mNoTimeString; | 91 | //QString mNoTimeString; |
95 | }; | 92 | }; |
96 | 93 | ||
97 | #endif | 94 | #endif |