author | zautrix <zautrix> | 2005-02-04 23:05:50 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-04 23:05:50 (UTC) |
commit | c6dceabcb41f6300ca97e69872fc801451944a32 (patch) (unidiff) | |
tree | 40a47b4c306329f47645f1ac7f2bc9420a67066c /korganizer | |
parent | 53099ae3a9ef02549536dab3dd6870b7a2874284 (diff) | |
download | kdepimpi-c6dceabcb41f6300ca97e69872fc801451944a32.zip kdepimpi-c6dceabcb41f6300ca97e69872fc801451944a32.tar.gz kdepimpi-c6dceabcb41f6300ca97e69872fc801451944a32.tar.bz2 |
nochn fixxx
-rw-r--r-- | korganizer/kotodoview.cpp | 21 | ||||
-rw-r--r-- | korganizer/kotodoview.h | 1 |
2 files changed, 14 insertions, 8 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 03a8f1c..1a1bce5 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -215,1089 +215,1094 @@ void KOTodoListView::contentsMousePressEvent(QMouseEvent* e) | |||
215 | // if the user clicked into the root decoration of the item, don't | 215 | // if the user clicked into the root decoration of the item, don't |
216 | // try to start a drag! | 216 | // try to start a drag! |
217 | if (p.x() > header()->sectionPos(header()->mapToIndex(0)) + | 217 | if (p.x() > header()->sectionPos(header()->mapToIndex(0)) + |
218 | treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + | 218 | treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + |
219 | itemMargin() || | 219 | itemMargin() || |
220 | p.x() < header()->sectionPos(header()->mapToIndex(0))) { | 220 | p.x() < header()->sectionPos(header()->mapToIndex(0))) { |
221 | if (e->button()==Qt::LeftButton) { | 221 | if (e->button()==Qt::LeftButton) { |
222 | mPressPos = e->pos(); | 222 | mPressPos = e->pos(); |
223 | mMousePressed = true; | 223 | mMousePressed = true; |
224 | } | 224 | } |
225 | } | 225 | } |
226 | } | 226 | } |
227 | #endif | 227 | #endif |
228 | QListView::contentsMousePressEvent(e); | 228 | QListView::contentsMousePressEvent(e); |
229 | } | 229 | } |
230 | void KOTodoListView::paintEvent(QPaintEvent* e) | 230 | void KOTodoListView::paintEvent(QPaintEvent* e) |
231 | { | 231 | { |
232 | emit paintNeeded(); | 232 | emit paintNeeded(); |
233 | QListView::paintEvent( e); | 233 | QListView::paintEvent( e); |
234 | } | 234 | } |
235 | void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) | 235 | void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) |
236 | { | 236 | { |
237 | 237 | ||
238 | #ifndef KORG_NODND | 238 | #ifndef KORG_NODND |
239 | //QListView::contentsMouseMoveEvent(e); | 239 | //QListView::contentsMouseMoveEvent(e); |
240 | if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > | 240 | if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > |
241 | QApplication::startDragDistance()*3) { | 241 | QApplication::startDragDistance()*3) { |
242 | mMousePressed = false; | 242 | mMousePressed = false; |
243 | QListViewItem *item = itemAt(contentsToViewport(mPressPos)); | 243 | QListViewItem *item = itemAt(contentsToViewport(mPressPos)); |
244 | if (item) { | 244 | if (item) { |
245 | DndFactory factory( mCalendar ); | 245 | DndFactory factory( mCalendar ); |
246 | ICalDrag *vd = factory.createDrag( | 246 | ICalDrag *vd = factory.createDrag( |
247 | ((KOTodoViewItem *)item)->todo(),viewport()); | 247 | ((KOTodoViewItem *)item)->todo(),viewport()); |
248 | internalDrop = false; | 248 | internalDrop = false; |
249 | // we cannot do any senseful here, because the DnD is still broken in Qt | 249 | // we cannot do any senseful here, because the DnD is still broken in Qt |
250 | if (vd->drag()) { | 250 | if (vd->drag()) { |
251 | if ( !internalDrop ) { | 251 | if ( !internalDrop ) { |
252 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); | 252 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); |
253 | qDebug("Dnd: External move: Delete drag source "); | 253 | qDebug("Dnd: External move: Delete drag source "); |
254 | } else | 254 | } else |
255 | qDebug("Dnd: Internal move "); | 255 | qDebug("Dnd: Internal move "); |
256 | 256 | ||
257 | } else { | 257 | } else { |
258 | if ( !internalDrop ) { | 258 | if ( !internalDrop ) { |
259 | qDebug("Dnd: External Copy"); | 259 | qDebug("Dnd: External Copy"); |
260 | } else | 260 | } else |
261 | qDebug("DnD: Internal copy: Copy pending"); | 261 | qDebug("DnD: Internal copy: Copy pending"); |
262 | } | 262 | } |
263 | } | 263 | } |
264 | } | 264 | } |
265 | #endif | 265 | #endif |
266 | } | 266 | } |
267 | void KOTodoListView::keyPressEvent ( QKeyEvent * e ) | 267 | void KOTodoListView::keyPressEvent ( QKeyEvent * e ) |
268 | { | 268 | { |
269 | 269 | ||
270 | QListViewItem* cn; | 270 | QListViewItem* cn; |
271 | if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { | 271 | if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { |
272 | cn = currentItem(); | 272 | cn = currentItem(); |
273 | if ( cn ) { | 273 | if ( cn ) { |
274 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); | 274 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); |
275 | if ( ci ){ | 275 | if ( ci ){ |
276 | if ( e->state() == ShiftButton ) | 276 | if ( e->state() == ShiftButton ) |
277 | ci->setOn( false ); | 277 | ci->setOn( false ); |
278 | else | 278 | else |
279 | ci->setOn( true ); | 279 | ci->setOn( true ); |
280 | cn = cn->itemBelow(); | 280 | cn = cn->itemBelow(); |
281 | if ( cn ) { | 281 | if ( cn ) { |
282 | setCurrentItem ( cn ); | 282 | setCurrentItem ( cn ); |
283 | ensureItemVisible ( cn ); | 283 | ensureItemVisible ( cn ); |
284 | } | 284 | } |
285 | 285 | ||
286 | } | 286 | } |
287 | } | 287 | } |
288 | 288 | ||
289 | return; | 289 | return; |
290 | } | 290 | } |
291 | 291 | ||
292 | // qDebug("KOTodoListView::keyPressEvent "); | 292 | // qDebug("KOTodoListView::keyPressEvent "); |
293 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { | 293 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { |
294 | switch ( e->key() ) { | 294 | switch ( e->key() ) { |
295 | case Qt::Key_Down: | 295 | case Qt::Key_Down: |
296 | case Qt::Key_Up: | 296 | case Qt::Key_Up: |
297 | QListView::keyPressEvent ( e ); | 297 | QListView::keyPressEvent ( e ); |
298 | break; | 298 | break; |
299 | case Qt::Key_Left: | 299 | case Qt::Key_Left: |
300 | case Qt::Key_Right: | 300 | case Qt::Key_Right: |
301 | QListView::keyPressEvent ( e ); | 301 | QListView::keyPressEvent ( e ); |
302 | e->accept(); | 302 | e->accept(); |
303 | return; | 303 | return; |
304 | break; | 304 | break; |
305 | default: | 305 | default: |
306 | e->ignore(); | 306 | e->ignore(); |
307 | break; | 307 | break; |
308 | } | 308 | } |
309 | return; | 309 | return; |
310 | } | 310 | } |
311 | e->ignore(); | 311 | e->ignore(); |
312 | } | 312 | } |
313 | void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) | 313 | void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) |
314 | { | 314 | { |
315 | QListView::contentsMouseReleaseEvent(e); | 315 | QListView::contentsMouseReleaseEvent(e); |
316 | mMousePressed = false; | 316 | mMousePressed = false; |
317 | } | 317 | } |
318 | 318 | ||
319 | void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) | 319 | void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) |
320 | { | 320 | { |
321 | if (!e) return; | 321 | if (!e) return; |
322 | 322 | ||
323 | QPoint vp = contentsToViewport(e->pos()); | 323 | QPoint vp = contentsToViewport(e->pos()); |
324 | 324 | ||
325 | QListViewItem *item = itemAt(vp); | 325 | QListViewItem *item = itemAt(vp); |
326 | 326 | ||
327 | emit double_Clicked(item); | 327 | emit double_Clicked(item); |
328 | if (!item) return; | 328 | if (!item) return; |
329 | 329 | ||
330 | emit doubleClicked(item,vp,0); | 330 | emit doubleClicked(item,vp,0); |
331 | } | 331 | } |
332 | 332 | ||
333 | ///////////////////////////////////////////////////////////////////////////// | 333 | ///////////////////////////////////////////////////////////////////////////// |
334 | 334 | ||
335 | KOQuickTodo::KOQuickTodo(QWidget *parent) : | 335 | KOQuickTodo::KOQuickTodo(QWidget *parent) : |
336 | QLineEdit(parent) | 336 | QLineEdit(parent) |
337 | { | 337 | { |
338 | setText(i18n("Click to add a new Todo")); | 338 | setText(i18n("Click to add a new Todo")); |
339 | } | 339 | } |
340 | 340 | ||
341 | void KOQuickTodo::focusInEvent(QFocusEvent *ev) | 341 | void KOQuickTodo::focusInEvent(QFocusEvent *ev) |
342 | { | 342 | { |
343 | if ( text()==i18n("Click to add a new Todo") ) | 343 | if ( text()==i18n("Click to add a new Todo") ) |
344 | setText(""); | 344 | setText(""); |
345 | QLineEdit::focusInEvent(ev); | 345 | QLineEdit::focusInEvent(ev); |
346 | } | 346 | } |
347 | 347 | ||
348 | void KOQuickTodo::focusOutEvent(QFocusEvent *ev) | 348 | void KOQuickTodo::focusOutEvent(QFocusEvent *ev) |
349 | { | 349 | { |
350 | setText(i18n("Click to add a new Todo")); | 350 | setText(i18n("Click to add a new Todo")); |
351 | QLineEdit::focusOutEvent(ev); | 351 | QLineEdit::focusOutEvent(ev); |
352 | } | 352 | } |
353 | 353 | ||
354 | ///////////////////////////////////////////////////////////////////////////// | 354 | ///////////////////////////////////////////////////////////////////////////// |
355 | 355 | ||
356 | KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : | 356 | KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : |
357 | KOrg::BaseView(calendar,parent,name) | 357 | KOrg::BaseView(calendar,parent,name) |
358 | { | 358 | { |
359 | mPendingUpdateBeforeRepaint = false; | 359 | mPendingUpdateBeforeRepaint = false; |
360 | isFlatDisplay = false; | 360 | isFlatDisplay = false; |
361 | mNavigator = 0; | 361 | mNavigator = 0; |
362 | QBoxLayout *topLayout = new QVBoxLayout(this); | 362 | QBoxLayout *topLayout = new QVBoxLayout(this); |
363 | mName = QString ( name ); | 363 | mName = QString ( name ); |
364 | mBlockUpdate = false; | 364 | mBlockUpdate = false; |
365 | mQuickAdd = new KOQuickTodo(this); | 365 | mQuickAdd = new KOQuickTodo(this); |
366 | topLayout->addWidget(mQuickAdd); | 366 | topLayout->addWidget(mQuickAdd); |
367 | 367 | ||
368 | if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide(); | 368 | if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide(); |
369 | 369 | ||
370 | mTodoListView = new KOTodoListView(calendar,this, name ); | 370 | mTodoListView = new KOTodoListView(calendar,this, name ); |
371 | topLayout->addWidget(mTodoListView); | 371 | topLayout->addWidget(mTodoListView); |
372 | //mTodoListView->header()->setMaximumHeight(30); | 372 | //mTodoListView->header()->setMaximumHeight(30); |
373 | mTodoListView->setRootIsDecorated(true); | 373 | mTodoListView->setRootIsDecorated(true); |
374 | mTodoListView->setAllColumnsShowFocus(true); | 374 | mTodoListView->setAllColumnsShowFocus(true); |
375 | 375 | ||
376 | mTodoListView->setShowSortIndicator(true); | 376 | mTodoListView->setShowSortIndicator(true); |
377 | 377 | ||
378 | mTodoListView->addColumn(i18n("Todo")); | 378 | mTodoListView->addColumn(i18n("Todo")); |
379 | mTodoListView->addColumn(i18n("Prio")); | 379 | mTodoListView->addColumn(i18n("Prio")); |
380 | mTodoListView->setColumnAlignment(1,AlignHCenter); | 380 | mTodoListView->setColumnAlignment(1,AlignHCenter); |
381 | mTodoListView->addColumn(i18n("Complete")); | 381 | mTodoListView->addColumn(i18n("Complete")); |
382 | mTodoListView->setColumnAlignment(2,AlignCenter); | 382 | mTodoListView->setColumnAlignment(2,AlignCenter); |
383 | 383 | ||
384 | mTodoListView->addColumn(i18n("Due Date")); | 384 | mTodoListView->addColumn(i18n("Due Date")); |
385 | mTodoListView->setColumnAlignment(3,AlignLeft); | 385 | mTodoListView->setColumnAlignment(3,AlignLeft); |
386 | mTodoListView->addColumn(i18n("Due Time")); | 386 | mTodoListView->addColumn(i18n("Due Time")); |
387 | mTodoListView->setColumnAlignment(4,AlignHCenter); | 387 | mTodoListView->setColumnAlignment(4,AlignHCenter); |
388 | 388 | ||
389 | mTodoListView->addColumn(i18n("Start Date")); | 389 | mTodoListView->addColumn(i18n("Start Date")); |
390 | mTodoListView->setColumnAlignment(5,AlignLeft); | 390 | mTodoListView->setColumnAlignment(5,AlignLeft); |
391 | mTodoListView->addColumn(i18n("Start Time")); | 391 | mTodoListView->addColumn(i18n("Start Time")); |
392 | mTodoListView->setColumnAlignment(6,AlignHCenter); | 392 | mTodoListView->setColumnAlignment(6,AlignHCenter); |
393 | 393 | ||
394 | mTodoListView->addColumn(i18n("Cancelled")); | 394 | mTodoListView->addColumn(i18n("Cancelled")); |
395 | mTodoListView->addColumn(i18n("Categories")); | 395 | mTodoListView->addColumn(i18n("Categories")); |
396 | #if 0 | 396 | #if 0 |
397 | mTodoListView->addColumn(i18n("Sort Id")); | 397 | mTodoListView->addColumn(i18n("Sort Id")); |
398 | mTodoListView->setColumnAlignment(4,AlignHCenter); | 398 | mTodoListView->setColumnAlignment(4,AlignHCenter); |
399 | #endif | 399 | #endif |
400 | 400 | ||
401 | mTodoListView->setMinimumHeight( 60 ); | 401 | mTodoListView->setMinimumHeight( 60 ); |
402 | mTodoListView->setItemsRenameable( true ); | 402 | mTodoListView->setItemsRenameable( true ); |
403 | mTodoListView->setRenameable( 0 ); | 403 | mTodoListView->setRenameable( 0 ); |
404 | mTodoListView->setColumnWidth( 0, 120 ); | 404 | mTodoListView->setColumnWidth( 0, 120 ); |
405 | mTodoListView->setColumnWidthMode(0, QListView::Manual); | 405 | mTodoListView->setColumnWidthMode(0, QListView::Manual); |
406 | mTodoListView->setColumnWidthMode(1, QListView::Manual); | 406 | mTodoListView->setColumnWidthMode(1, QListView::Manual); |
407 | mTodoListView->setColumnWidthMode(2, QListView::Manual); | 407 | mTodoListView->setColumnWidthMode(2, QListView::Manual); |
408 | mTodoListView->setColumnWidthMode(3, QListView::Manual); | 408 | mTodoListView->setColumnWidthMode(3, QListView::Manual); |
409 | mTodoListView->setColumnWidthMode(4, QListView::Manual); | 409 | mTodoListView->setColumnWidthMode(4, QListView::Manual); |
410 | mTodoListView->setColumnWidthMode(5, QListView::Manual); | 410 | mTodoListView->setColumnWidthMode(5, QListView::Manual); |
411 | mTodoListView->setColumnWidthMode(6, QListView::Manual); | 411 | mTodoListView->setColumnWidthMode(6, QListView::Manual); |
412 | mTodoListView->setColumnWidthMode(7, QListView::Manual); | 412 | mTodoListView->setColumnWidthMode(7, QListView::Manual); |
413 | mTodoListView->setColumnWidthMode(8, QListView::Manual); | 413 | mTodoListView->setColumnWidthMode(8, QListView::Manual); |
414 | 414 | ||
415 | 415 | ||
416 | new KOTodoViewWhatsThis(mTodoListView->viewport(),this); | 416 | new KOTodoViewWhatsThis(mTodoListView->viewport(),this); |
417 | 417 | ||
418 | mPriorityPopupMenu = new QPopupMenu(this); | 418 | mPriorityPopupMenu = new QPopupMenu(this); |
419 | for (int i = 1; i <= 5; i++) { | 419 | for (int i = 1; i <= 5; i++) { |
420 | QString label = QString ("%1").arg (i); | 420 | QString label = QString ("%1").arg (i); |
421 | mPriority[mPriorityPopupMenu->insertItem (label)] = i; | 421 | mPriority[mPriorityPopupMenu->insertItem (label)] = i; |
422 | } | 422 | } |
423 | connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); | 423 | connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); |
424 | 424 | ||
425 | mPercentageCompletedPopupMenu = new QPopupMenu(this); | 425 | mPercentageCompletedPopupMenu = new QPopupMenu(this); |
426 | for (int i = 0; i <= 100; i+=20) { | 426 | for (int i = 0; i <= 100; i+=20) { |
427 | QString label = QString ("%1 %").arg (i); | 427 | QString label = QString ("%1 %").arg (i); |
428 | mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; | 428 | mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; |
429 | } | 429 | } |
430 | connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); | 430 | connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); |
431 | 431 | ||
432 | 432 | ||
433 | 433 | ||
434 | mItemPopupMenu = new QPopupMenu(this); | 434 | mItemPopupMenu = new QPopupMenu(this); |
435 | mItemPopupMenu->insertItem(i18n("Show..."), this, | 435 | mItemPopupMenu->insertItem(i18n("Show..."), this, |
436 | SLOT (showTodo())); | 436 | SLOT (showTodo())); |
437 | mItemPopupMenu->insertItem(i18n("Edit..."), this, | 437 | mItemPopupMenu->insertItem(i18n("Edit..."), this, |
438 | SLOT (editTodo())); | 438 | SLOT (editTodo())); |
439 | mItemPopupMenu->insertItem( i18n("Delete"), this, | 439 | mItemPopupMenu->insertItem( i18n("Delete"), this, |
440 | SLOT (deleteTodo())); | 440 | SLOT (deleteTodo())); |
441 | mItemPopupMenu->insertItem( i18n("Clone..."), this, | 441 | mItemPopupMenu->insertItem( i18n("Clone..."), this, |
442 | SLOT (cloneTodo())); | 442 | SLOT (cloneTodo())); |
443 | mItemPopupMenu->insertItem( i18n("Move..."), this, | 443 | mItemPopupMenu->insertItem( i18n("Move..."), this, |
444 | SLOT (moveTodo())); | 444 | SLOT (moveTodo())); |
445 | mItemPopupMenu->insertItem( i18n("Beam..."), this, | 445 | mItemPopupMenu->insertItem( i18n("Beam..."), this, |
446 | SLOT (beamTodo())); | 446 | SLOT (beamTodo())); |
447 | mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, | 447 | mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, |
448 | SLOT (cancelTodo())); | 448 | SLOT (cancelTodo())); |
449 | mItemPopupMenu->insertSeparator(); | 449 | mItemPopupMenu->insertSeparator(); |
450 | 450 | ||
451 | mItemPopupMenu->insertItem( i18n("New Todo..."), this, | 451 | mItemPopupMenu->insertItem( i18n("New Todo..."), this, |
452 | SLOT (newTodo())); | 452 | SLOT (newTodo())); |
453 | mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, | 453 | mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, |
454 | SLOT (newSubTodo())); | 454 | SLOT (newSubTodo())); |
455 | mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, | 455 | mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, |
456 | SLOT (unparentTodo()),0,21); | 456 | SLOT (unparentTodo()),0,21); |
457 | mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, | 457 | mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, |
458 | SLOT (reparentTodo()),0,22); | 458 | SLOT (reparentTodo()),0,22); |
459 | mItemPopupMenu->insertSeparator(); | 459 | mItemPopupMenu->insertSeparator(); |
460 | #if 0 | 460 | #if 0 |
461 | mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed"), | 461 | mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed"), |
462 | this, SLOT( purgeCompleted() ) ); | 462 | this, SLOT( purgeCompleted() ) ); |
463 | mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), | 463 | mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), |
464 | this, SLOT( toggleCompleted() ),0, 33 ); | 464 | this, SLOT( toggleCompleted() ),0, 33 ); |
465 | mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), | 465 | mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), |
466 | this, SLOT( toggleQuickTodo() ),0, 34 ); | 466 | this, SLOT( toggleQuickTodo() ),0, 34 ); |
467 | mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), | 467 | mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), |
468 | this, SLOT( toggleRunning() ),0, 35 ); | 468 | this, SLOT( toggleRunning() ),0, 35 ); |
469 | 469 | ||
470 | #endif | 470 | #endif |
471 | mPopupMenu = new QPopupMenu(this); | 471 | mPopupMenu = new QPopupMenu(this); |
472 | mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, | 472 | mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, |
473 | SLOT (newTodo()),0,1); | 473 | SLOT (newTodo()),0,1); |
474 | mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed"), | 474 | mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed"), |
475 | this, SLOT(purgeCompleted()),0,2); | 475 | this, SLOT(purgeCompleted()),0,2); |
476 | mPopupMenu->insertItem(i18n("Show Completed"), | 476 | mPopupMenu->insertItem(i18n("Show Completed"), |
477 | this, SLOT( toggleCompleted() ),0,3 ); | 477 | this, SLOT( toggleCompleted() ),0,3 ); |
478 | mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), | 478 | mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), |
479 | this, SLOT( toggleQuickTodo() ),0,4 ); | 479 | this, SLOT( toggleQuickTodo() ),0,4 ); |
480 | mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), | 480 | mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), |
481 | this, SLOT( toggleRunning() ),0,5 ); | 481 | this, SLOT( toggleRunning() ),0,5 ); |
482 | mPopupMenu->insertItem(i18n(" set all open","Display all opened"), | 482 | mPopupMenu->insertItem(i18n(" set all open","Display all opened"), |
483 | this, SLOT( setAllOpen() ),0,6 ); | 483 | this, SLOT( setAllOpen() ),0,6 ); |
484 | mPopupMenu->insertItem(i18n(" set all close","Display all closed"), | 484 | mPopupMenu->insertItem(i18n(" set all close","Display all closed"), |
485 | this, SLOT( setAllClose() ),0,7 ); | 485 | this, SLOT( setAllClose() ),0,7 ); |
486 | mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), | 486 | mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), |
487 | this, SLOT( setAllFlat() ),0,8 ); | 487 | this, SLOT( setAllFlat() ),0,8 ); |
488 | mDocPrefs = new DocPrefs( name ); | 488 | mDocPrefs = new DocPrefs( name ); |
489 | 489 | ||
490 | mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); | 490 | mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); |
491 | mPopupMenu->setCheckable( true ); | 491 | mPopupMenu->setCheckable( true ); |
492 | mItemPopupMenu->setCheckable( true ); | 492 | mItemPopupMenu->setCheckable( true ); |
493 | 493 | ||
494 | 494 | ||
495 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); | 495 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); |
496 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); | 496 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); |
497 | 497 | ||
498 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); | 498 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); |
499 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); | 499 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); |
500 | 500 | ||
501 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); | 501 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); |
502 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); | 502 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); |
503 | 503 | ||
504 | 504 | ||
505 | // Double clicking conflicts with opening/closing the subtree | 505 | // Double clicking conflicts with opening/closing the subtree |
506 | connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), | 506 | connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), |
507 | SLOT( editItem( QListViewItem *) ) ); | 507 | SLOT( editItem( QListViewItem *) ) ); |
508 | /* | 508 | /* |
509 | connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, | 509 | connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, |
510 | const QPoint &,int ) ), | 510 | const QPoint &,int ) ), |
511 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); | 511 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); |
512 | */ | 512 | */ |
513 | connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, | 513 | connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, |
514 | const QPoint &,int ) ), | 514 | const QPoint &,int ) ), |
515 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); | 515 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); |
516 | connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), | 516 | connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), |
517 | SLOT( itemClicked( QListViewItem * ) ) ); | 517 | SLOT( itemClicked( QListViewItem * ) ) ); |
518 | connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), | 518 | connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), |
519 | SLOT( itemDoubleClicked( QListViewItem * ) ) ); | 519 | SLOT( itemDoubleClicked( QListViewItem * ) ) ); |
520 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), | 520 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), |
521 | SLOT( updateView() ) ); | 521 | SLOT( updateView() ) ); |
522 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), | 522 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), |
523 | SLOT( todoModified(Todo *, int) ) ); | 523 | SLOT( todoModified(Todo *, int) ) ); |
524 | connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), | 524 | connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), |
525 | SLOT( itemStateChanged( QListViewItem * ) ) ); | 525 | SLOT( itemStateChanged( QListViewItem * ) ) ); |
526 | connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), | 526 | connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), |
527 | SLOT( itemStateChanged( QListViewItem * ) ) ); | 527 | SLOT( itemStateChanged( QListViewItem * ) ) ); |
528 | connect( mTodoListView, SIGNAL( paintNeeded() ), | 528 | connect( mTodoListView, SIGNAL( paintNeeded() ), |
529 | SLOT( paintNeeded()) ); | 529 | SLOT( paintNeeded()) ); |
530 | 530 | ||
531 | #if 0 | 531 | #if 0 |
532 | connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), | 532 | connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), |
533 | SLOT(selectionChanged(QListViewItem *))); | 533 | SLOT(selectionChanged(QListViewItem *))); |
534 | connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), | 534 | connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), |
535 | SLOT(selectionChanged(QListViewItem *))); | 535 | SLOT(selectionChanged(QListViewItem *))); |
536 | connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), | 536 | connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), |
537 | SLOT(selectionChanged(QListViewItem *))); | 537 | SLOT(selectionChanged(QListViewItem *))); |
538 | #endif | 538 | #endif |
539 | 539 | ||
540 | connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); | 540 | connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); |
541 | connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); | 541 | connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); |
542 | connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); | 542 | connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); |
543 | 543 | ||
544 | connect( mTodoListView, SIGNAL(selectionChanged() ), | 544 | connect( mTodoListView, SIGNAL(selectionChanged() ), |
545 | SLOT( processSelectionChange() ) ); | 545 | SLOT( processSelectionChange() ) ); |
546 | connect( mQuickAdd, SIGNAL( returnPressed () ), | 546 | connect( mQuickAdd, SIGNAL( returnPressed () ), |
547 | SLOT( addQuickTodo() ) ); | 547 | SLOT( addQuickTodo() ) ); |
548 | 548 | ||
549 | } | 549 | } |
550 | 550 | ||
551 | KOTodoView::~KOTodoView() | 551 | KOTodoView::~KOTodoView() |
552 | { | 552 | { |
553 | delete mDocPrefs; | 553 | delete mDocPrefs; |
554 | } | 554 | } |
555 | QString KOTodoView::getWhatsThisText(QPoint p) | 555 | QString KOTodoView::getWhatsThisText(QPoint p) |
556 | { | 556 | { |
557 | KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); | 557 | KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); |
558 | if ( item ) | 558 | if ( item ) |
559 | return KIncidenceFormatter::instance()->getFormattedText( item->todo() ); | 559 | return KIncidenceFormatter::instance()->getFormattedText( item->todo() ); |
560 | return i18n("That is the todo view" ); | 560 | return i18n("That is the todo view" ); |
561 | 561 | ||
562 | } | 562 | } |
563 | 563 | ||
564 | void KOTodoView::jumpToDate () | 564 | void KOTodoView::jumpToDate () |
565 | { | 565 | { |
566 | // if (mActiveItem) { | 566 | // if (mActiveItem) { |
567 | // mActiveItem->todo()); | 567 | // mActiveItem->todo()); |
568 | // if ( mActiveItem->todo()->hasDueDate() ) | 568 | // if ( mActiveItem->todo()->hasDueDate() ) |
569 | // emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); | 569 | // emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); |
570 | } | 570 | } |
571 | void KOTodoView::paintNeeded() | 571 | void KOTodoView::paintNeeded() |
572 | { | 572 | { |
573 | if ( mPendingUpdateBeforeRepaint ) { | 573 | if ( mPendingUpdateBeforeRepaint ) { |
574 | updateView(); | 574 | updateView(); |
575 | mPendingUpdateBeforeRepaint = false; | 575 | mPendingUpdateBeforeRepaint = false; |
576 | } | 576 | } |
577 | } | 577 | } |
578 | void KOTodoView::paintEvent(QPaintEvent * pevent) | 578 | void KOTodoView::paintEvent(QPaintEvent * pevent) |
579 | { | 579 | { |
580 | if ( mPendingUpdateBeforeRepaint ) { | 580 | if ( mPendingUpdateBeforeRepaint ) { |
581 | updateView(); | 581 | updateView(); |
582 | mPendingUpdateBeforeRepaint = false; | 582 | mPendingUpdateBeforeRepaint = false; |
583 | } | 583 | } |
584 | KOrg::BaseView::paintEvent( pevent); | 584 | KOrg::BaseView::paintEvent( pevent); |
585 | } | 585 | } |
586 | 586 | ||
587 | void KOTodoView::updateView() | 587 | void KOTodoView::updateView() |
588 | { | 588 | { |
589 | pendingSubtodo = 0; | 589 | pendingSubtodo = 0; |
590 | if ( mBlockUpdate ) { | 590 | if ( mBlockUpdate ) { |
591 | return; | 591 | return; |
592 | } | 592 | } |
593 | if ( !isVisible() ) { | 593 | if ( !isVisible() ) { |
594 | mPendingUpdateBeforeRepaint = true; | 594 | mPendingUpdateBeforeRepaint = true; |
595 | return; | 595 | return; |
596 | } | 596 | } |
597 | //qDebug("KOTodoView::updateView() %x", this); | 597 | //qDebug("KOTodoView::updateView() %x", this); |
598 | if ( isFlatDisplay ) { | 598 | if ( isFlatDisplay ) { |
599 | setAllFlat(); | 599 | displayAllFlat(); |
600 | return; | 600 | return; |
601 | } | 601 | } |
602 | //qDebug("update "); | 602 | //qDebug("update "); |
603 | // kdDebug() << "KOTodoView::updateView()" << endl; | 603 | // kdDebug() << "KOTodoView::updateView()" << endl; |
604 | QFont fo = KOPrefs::instance()->mTodoViewFont; | 604 | QFont fo = KOPrefs::instance()->mTodoViewFont; |
605 | mTodoListView->clear(); | 605 | mTodoListView->clear(); |
606 | if ( mName == "todolistsmall" ) { | 606 | if ( mName == "todolistsmall" ) { |
607 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { | 607 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { |
608 | int ps = fo.pointSize() -2; | 608 | int ps = fo.pointSize() -2; |
609 | if ( ps > 12 ) | 609 | if ( ps > 12 ) |
610 | ps -= 2; | 610 | ps -= 2; |
611 | fo.setPointSize( ps ); | 611 | fo.setPointSize( ps ); |
612 | } | 612 | } |
613 | } | 613 | } |
614 | 614 | ||
615 | mTodoListView->setFont( fo ); | 615 | mTodoListView->setFont( fo ); |
616 | // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); | 616 | // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); |
617 | //mTodoListView->header()->setMaximumHeight(fm.height()); | 617 | //mTodoListView->header()->setMaximumHeight(fm.height()); |
618 | QPtrList<Todo> todoList = calendar()->todos(); | 618 | QPtrList<Todo> todoList = calendar()->todos(); |
619 | 619 | ||
620 | /* | 620 | /* |
621 | kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; | 621 | kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; |
622 | Event *t; | 622 | Event *t; |
623 | for(t = todoList.first(); t; t = todoList.next()) { | 623 | for(t = todoList.first(); t; t = todoList.next()) { |
624 | kdDebug() << " " << t->getSummary() << endl; | 624 | kdDebug() << " " << t->getSummary() << endl; |
625 | 625 | ||
626 | if (t->getRelatedTo()) { | 626 | if (t->getRelatedTo()) { |
627 | kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl; | 627 | kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl; |
628 | } | 628 | } |
629 | 629 | ||
630 | QPtrList<Event> l = t->getRelations(); | 630 | QPtrList<Event> l = t->getRelations(); |
631 | Event *c; | 631 | Event *c; |
632 | for(c=l.first();c;c=l.next()) { | 632 | for(c=l.first();c;c=l.next()) { |
633 | kdDebug() << " - relation: " << c->getSummary() << endl; | 633 | kdDebug() << " - relation: " << c->getSummary() << endl; |
634 | } | 634 | } |
635 | } | 635 | } |
636 | */ | 636 | */ |
637 | 637 | ||
638 | // Put for each Event a KOTodoViewItem in the list view. Don't rely on a | 638 | // Put for each Event a KOTodoViewItem in the list view. Don't rely on a |
639 | // specific order of events. That means that we have to generate parent items | 639 | // specific order of events. That means that we have to generate parent items |
640 | // recursively for proper hierarchical display of Todos. | 640 | // recursively for proper hierarchical display of Todos. |
641 | mTodoMap.clear(); | 641 | mTodoMap.clear(); |
642 | Todo *todo; | 642 | Todo *todo; |
643 | todo = todoList.first();// todo; todo = todoList.next()) { | 643 | todo = todoList.first();// todo; todo = todoList.next()) { |
644 | while ( todo ) { | 644 | while ( todo ) { |
645 | bool next = true; | 645 | bool next = true; |
646 | // qDebug("todo %s ", todo->summary().latin1()); | 646 | // qDebug("todo %s ", todo->summary().latin1()); |
647 | Incidence *incidence = todo->relatedTo(); | 647 | Incidence *incidence = todo->relatedTo(); |
648 | while ( incidence ) { | 648 | while ( incidence ) { |
649 | if ( incidence->type() == "Todo") { | 649 | if ( incidence->type() == "Todo") { |
650 | //qDebug("related %s ",incidence->summary().latin1() ); | 650 | //qDebug("related %s ",incidence->summary().latin1() ); |
651 | if ( !(todoList.contains ( ((Todo* )incidence ) ) )) { | 651 | if ( !(todoList.contains ( ((Todo* )incidence ) ) )) { |
652 | //qDebug("related not found "); | 652 | //qDebug("related not found "); |
653 | todoList.remove( ); | 653 | todoList.remove( ); |
654 | todo = todoList.current(); | 654 | todo = todoList.current(); |
655 | next = false; | 655 | next = false; |
656 | incidence = 0; | 656 | incidence = 0; |
657 | 657 | ||
658 | } else { | 658 | } else { |
659 | //qDebug("related found "); | 659 | //qDebug("related found "); |
660 | incidence = incidence->relatedTo(); | 660 | incidence = incidence->relatedTo(); |
661 | } | 661 | } |
662 | } else | 662 | } else |
663 | incidence = 0; | 663 | incidence = 0; |
664 | } | 664 | } |
665 | if ( next ) | 665 | if ( next ) |
666 | todo = todoList.next(); | 666 | todo = todoList.next(); |
667 | } | 667 | } |
668 | // qDebug("again .... "); | 668 | // qDebug("again .... "); |
669 | // for(todo = todoList.first(); todo; todo = todoList.next()) { | 669 | // for(todo = todoList.first(); todo; todo = todoList.next()) { |
670 | 670 | ||
671 | // qDebug("yytodo %s ", todo->summary().latin1()); | 671 | // qDebug("yytodo %s ", todo->summary().latin1()); |
672 | // } | 672 | // } |
673 | //qDebug("for "); | 673 | //qDebug("for "); |
674 | for(todo = todoList.first(); todo; todo = todoList.next()) { | 674 | for(todo = todoList.first(); todo; todo = todoList.next()) { |
675 | if (!mTodoMap.contains(todo) && checkTodo( todo ) ) | 675 | if (!mTodoMap.contains(todo) && checkTodo( todo ) ) |
676 | { | 676 | { |
677 | insertTodoItem(todo); | 677 | insertTodoItem(todo); |
678 | } | 678 | } |
679 | } | 679 | } |
680 | //qDebug("for end "); | 680 | //qDebug("for end "); |
681 | // Restore opened/closed state | 681 | // Restore opened/closed state |
682 | mTodoListView->blockSignals( true ); | 682 | mTodoListView->blockSignals( true ); |
683 | if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); | 683 | if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); |
684 | mTodoListView->blockSignals( false ); | 684 | mTodoListView->blockSignals( false ); |
685 | mTodoListView->setFocus(); | 685 | mTodoListView->setFocus(); |
686 | processSelectionChange(); | 686 | processSelectionChange(); |
687 | } | 687 | } |
688 | 688 | ||
689 | bool KOTodoView::checkTodo( Todo * todo ) | 689 | bool KOTodoView::checkTodo( Todo * todo ) |
690 | { | 690 | { |
691 | 691 | ||
692 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) | 692 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) |
693 | return false; | 693 | return false; |
694 | if ( !todo->isCompleted() ) { | 694 | if ( !todo->isCompleted() ) { |
695 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) | 695 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) |
696 | return true; | 696 | return true; |
697 | } | 697 | } |
698 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { | 698 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { |
699 | if ( todo->hasStartDate() ) | 699 | if ( todo->hasStartDate() ) |
700 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) | 700 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) |
701 | return false; | 701 | return false; |
702 | if ( todo->hasDueDate() ) | 702 | if ( todo->hasDueDate() ) |
703 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) | 703 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) |
704 | return false; | 704 | return false; |
705 | } | 705 | } |
706 | return true; | 706 | return true; |
707 | } | 707 | } |
708 | 708 | ||
709 | void KOTodoView::restoreItemState( QListViewItem *item ) | 709 | void KOTodoView::restoreItemState( QListViewItem *item ) |
710 | { | 710 | { |
711 | pendingSubtodo = 0; | 711 | pendingSubtodo = 0; |
712 | while( item ) { | 712 | while( item ) { |
713 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 713 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
714 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); | 714 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); |
715 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); | 715 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); |
716 | item = item->nextSibling(); | 716 | item = item->nextSibling(); |
717 | } | 717 | } |
718 | } | 718 | } |
719 | 719 | ||
720 | 720 | ||
721 | QMap<Todo *,KOTodoViewItem *>::ConstIterator | 721 | QMap<Todo *,KOTodoViewItem *>::ConstIterator |
722 | KOTodoView::insertTodoItem(Todo *todo) | 722 | KOTodoView::insertTodoItem(Todo *todo) |
723 | { | 723 | { |
724 | 724 | ||
725 | // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; | 725 | // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; |
726 | // TODO: Check, if dynmaic cast is necessary | 726 | // TODO: Check, if dynmaic cast is necessary |
727 | 727 | ||
728 | pendingSubtodo = 0; | 728 | pendingSubtodo = 0; |
729 | Incidence *incidence = todo->relatedTo(); | 729 | Incidence *incidence = todo->relatedTo(); |
730 | if (incidence && incidence->type() == "Todo") { | 730 | if (incidence && incidence->type() == "Todo") { |
731 | Todo *relatedTodo = static_cast<Todo *>(incidence); | 731 | Todo *relatedTodo = static_cast<Todo *>(incidence); |
732 | 732 | ||
733 | // kdDebug() << " has Related" << endl; | 733 | // kdDebug() << " has Related" << endl; |
734 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; | 734 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; |
735 | itemIterator = mTodoMap.find(relatedTodo); | 735 | itemIterator = mTodoMap.find(relatedTodo); |
736 | if (itemIterator == mTodoMap.end()) { | 736 | if (itemIterator == mTodoMap.end()) { |
737 | // kdDebug() << " related not yet in list" << endl; | 737 | // kdDebug() << " related not yet in list" << endl; |
738 | itemIterator = insertTodoItem (relatedTodo); | 738 | itemIterator = insertTodoItem (relatedTodo); |
739 | } | 739 | } |
740 | // isn't this pretty stupid? We give one Todo to the KOTodoViewItem | 740 | // isn't this pretty stupid? We give one Todo to the KOTodoViewItem |
741 | // and one into the map. Sure finding is more easy but why? -zecke | 741 | // and one into the map. Sure finding is more easy but why? -zecke |
742 | KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); | 742 | KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); |
743 | return mTodoMap.insert(todo,todoItem); | 743 | return mTodoMap.insert(todo,todoItem); |
744 | } else { | 744 | } else { |
745 | // kdDebug() << " no Related" << endl; | 745 | // kdDebug() << " no Related" << endl; |
746 | // see above -zecke | 746 | // see above -zecke |
747 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); | 747 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); |
748 | return mTodoMap.insert(todo,todoItem); | 748 | return mTodoMap.insert(todo,todoItem); |
749 | } | 749 | } |
750 | } | 750 | } |
751 | 751 | ||
752 | 752 | ||
753 | void KOTodoView::updateConfig() | 753 | void KOTodoView::updateConfig() |
754 | { | 754 | { |
755 | updateView(); | 755 | updateView(); |
756 | mTodoListView->repaintContents(); | 756 | mTodoListView->repaintContents(); |
757 | } | 757 | } |
758 | 758 | ||
759 | QPtrList<Incidence> KOTodoView::selectedIncidences() | 759 | QPtrList<Incidence> KOTodoView::selectedIncidences() |
760 | { | 760 | { |
761 | QPtrList<Incidence> selected; | 761 | QPtrList<Incidence> selected; |
762 | 762 | ||
763 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); | 763 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); |
764 | // if (!item) item = mActiveItem; | 764 | // if (!item) item = mActiveItem; |
765 | if (item) selected.append(item->todo()); | 765 | if (item) selected.append(item->todo()); |
766 | 766 | ||
767 | return selected; | 767 | return selected; |
768 | } | 768 | } |
769 | 769 | ||
770 | QPtrList<Todo> KOTodoView::selectedTodos() | 770 | QPtrList<Todo> KOTodoView::selectedTodos() |
771 | { | 771 | { |
772 | QPtrList<Todo> selected; | 772 | QPtrList<Todo> selected; |
773 | 773 | ||
774 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); | 774 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); |
775 | // if (!item) item = mActiveItem; | 775 | // if (!item) item = mActiveItem; |
776 | if (item) selected.append(item->todo()); | 776 | if (item) selected.append(item->todo()); |
777 | 777 | ||
778 | return selected; | 778 | return selected; |
779 | } | 779 | } |
780 | 780 | ||
781 | void KOTodoView::changeEventDisplay(Event *, int) | 781 | void KOTodoView::changeEventDisplay(Event *, int) |
782 | { | 782 | { |
783 | updateView(); | 783 | updateView(); |
784 | } | 784 | } |
785 | 785 | ||
786 | void KOTodoView::showDates(const QDate &, const QDate &) | 786 | void KOTodoView::showDates(const QDate &, const QDate &) |
787 | { | 787 | { |
788 | } | 788 | } |
789 | 789 | ||
790 | void KOTodoView::showEvents(QPtrList<Event>) | 790 | void KOTodoView::showEvents(QPtrList<Event>) |
791 | { | 791 | { |
792 | kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; | 792 | kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; |
793 | } | 793 | } |
794 | 794 | ||
795 | void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, | 795 | void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, |
796 | const QDate &td) | 796 | const QDate &td) |
797 | { | 797 | { |
798 | #ifndef KORG_NOPRINTER | 798 | #ifndef KORG_NOPRINTER |
799 | calPrinter->preview(CalPrinter::Todolist, fd, td); | 799 | calPrinter->preview(CalPrinter::Todolist, fd, td); |
800 | #endif | 800 | #endif |
801 | } | 801 | } |
802 | 802 | ||
803 | void KOTodoView::editItem(QListViewItem *item ) | 803 | void KOTodoView::editItem(QListViewItem *item ) |
804 | { | 804 | { |
805 | // qDebug("editItem(QListViewItem *item ) "); | 805 | // qDebug("editItem(QListViewItem *item ) "); |
806 | emit editTodoSignal(((KOTodoViewItem *)item)->todo()); | 806 | emit editTodoSignal(((KOTodoViewItem *)item)->todo()); |
807 | } | 807 | } |
808 | 808 | ||
809 | void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) | 809 | void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) |
810 | { | 810 | { |
811 | emit showTodoSignal(((KOTodoViewItem *)item)->todo()); | 811 | emit showTodoSignal(((KOTodoViewItem *)item)->todo()); |
812 | } | 812 | } |
813 | 813 | ||
814 | void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) | 814 | void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) |
815 | { | 815 | { |
816 | pendingSubtodo = 0; | 816 | pendingSubtodo = 0; |
817 | mActiveItem = (KOTodoViewItem *)item; | 817 | mActiveItem = (KOTodoViewItem *)item; |
818 | if (item) { | 818 | if (item) { |
819 | switch (column){ | 819 | switch (column){ |
820 | case 1: | 820 | case 1: |
821 | mPriorityPopupMenu->popup(QCursor::pos ()); break; | 821 | mPriorityPopupMenu->popup(QCursor::pos ()); break; |
822 | case 2: | 822 | case 2: |
823 | mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; | 823 | mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; |
824 | case 3: | 824 | case 3: |
825 | moveTodo(); | 825 | moveTodo(); |
826 | break; | 826 | break; |
827 | case 8: | 827 | case 8: |
828 | getCategoryPopupMenu((KOTodoViewItem *)item)->popup(QCursor::pos ()); break; | 828 | getCategoryPopupMenu((KOTodoViewItem *)item)->popup(QCursor::pos ()); break; |
829 | default: | 829 | default: |
830 | mItemPopupMenu->popup(QCursor::pos()); | 830 | mItemPopupMenu->popup(QCursor::pos()); |
831 | } | 831 | } |
832 | } else mPopupMenu->popup(QCursor::pos()); | 832 | } else mPopupMenu->popup(QCursor::pos()); |
833 | } | 833 | } |
834 | void KOTodoView::newTodo() | 834 | void KOTodoView::newTodo() |
835 | { | 835 | { |
836 | emit newTodoSignal(); | 836 | emit newTodoSignal(); |
837 | } | 837 | } |
838 | 838 | ||
839 | void KOTodoView::newSubTodo() | 839 | void KOTodoView::newSubTodo() |
840 | { | 840 | { |
841 | if (mActiveItem) { | 841 | if (mActiveItem) { |
842 | emit newSubTodoSignal(mActiveItem->todo()); | 842 | emit newSubTodoSignal(mActiveItem->todo()); |
843 | } | 843 | } |
844 | } | 844 | } |
845 | void KOTodoView::unparentTodo() | 845 | void KOTodoView::unparentTodo() |
846 | { | 846 | { |
847 | if (mActiveItem) { | 847 | if (mActiveItem) { |
848 | emit unparentTodoSignal(mActiveItem->todo()); | 848 | emit unparentTodoSignal(mActiveItem->todo()); |
849 | } | 849 | } |
850 | } | 850 | } |
851 | 851 | ||
852 | void KOTodoView::reparentTodo() | 852 | void KOTodoView::reparentTodo() |
853 | { | 853 | { |
854 | if (mActiveItem) { | 854 | if (mActiveItem) { |
855 | qDebug("KOTodoView::reparentTodo() "); | 855 | qDebug("KOTodoView::reparentTodo() "); |
856 | topLevelWidget()->setCaption(i18n("Click on new parent item")); | 856 | topLevelWidget()->setCaption(i18n("Click on new parent item")); |
857 | pendingSubtodo = mActiveItem; | 857 | pendingSubtodo = mActiveItem; |
858 | } | 858 | } |
859 | } | 859 | } |
860 | void KOTodoView::editTodo() | 860 | void KOTodoView::editTodo() |
861 | { | 861 | { |
862 | if (mActiveItem) { | 862 | if (mActiveItem) { |
863 | emit editTodoSignal(mActiveItem->todo()); | 863 | emit editTodoSignal(mActiveItem->todo()); |
864 | } | 864 | } |
865 | } | 865 | } |
866 | void KOTodoView::cloneTodo() | 866 | void KOTodoView::cloneTodo() |
867 | { | 867 | { |
868 | if (mActiveItem) { | 868 | if (mActiveItem) { |
869 | emit cloneTodoSignal((Incidence*)mActiveItem->todo()); | 869 | emit cloneTodoSignal((Incidence*)mActiveItem->todo()); |
870 | } | 870 | } |
871 | } | 871 | } |
872 | void KOTodoView::cancelTodo() | 872 | void KOTodoView::cancelTodo() |
873 | { | 873 | { |
874 | if (mActiveItem) { | 874 | if (mActiveItem) { |
875 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); | 875 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); |
876 | } | 876 | } |
877 | } | 877 | } |
878 | void KOTodoView::moveTodo() | 878 | void KOTodoView::moveTodo() |
879 | { | 879 | { |
880 | if (mActiveItem) { | 880 | if (mActiveItem) { |
881 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); | 881 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); |
882 | } | 882 | } |
883 | } | 883 | } |
884 | void KOTodoView::beamTodo() | 884 | void KOTodoView::beamTodo() |
885 | { | 885 | { |
886 | if (mActiveItem) { | 886 | if (mActiveItem) { |
887 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); | 887 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); |
888 | } | 888 | } |
889 | } | 889 | } |
890 | 890 | ||
891 | 891 | ||
892 | void KOTodoView::showTodo() | 892 | void KOTodoView::showTodo() |
893 | { | 893 | { |
894 | if (mActiveItem) { | 894 | if (mActiveItem) { |
895 | emit showTodoSignal(mActiveItem->todo()); | 895 | emit showTodoSignal(mActiveItem->todo()); |
896 | } | 896 | } |
897 | } | 897 | } |
898 | 898 | ||
899 | void KOTodoView::deleteTodo() | 899 | void KOTodoView::deleteTodo() |
900 | { | 900 | { |
901 | if (mActiveItem) { | 901 | if (mActiveItem) { |
902 | emit deleteTodoSignal(mActiveItem->todo()); | 902 | emit deleteTodoSignal(mActiveItem->todo()); |
903 | } | 903 | } |
904 | } | 904 | } |
905 | 905 | ||
906 | void KOTodoView::setNewPriority(int index) | 906 | void KOTodoView::setNewPriority(int index) |
907 | { | 907 | { |
908 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 908 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
909 | mActiveItem->todo()->setPriority(mPriority[index]); | 909 | mActiveItem->todo()->setPriority(mPriority[index]); |
910 | mActiveItem->construct(); | 910 | mActiveItem->construct(); |
911 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); | 911 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); |
912 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 912 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
913 | } | 913 | } |
914 | } | 914 | } |
915 | 915 | ||
916 | void KOTodoView::setNewPercentage(int index) | 916 | void KOTodoView::setNewPercentage(int index) |
917 | { | 917 | { |
918 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 918 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
919 | 919 | ||
920 | if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { | 920 | if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { |
921 | mActiveItem->setOn( true ); | 921 | mActiveItem->setOn( true ); |
922 | return; | 922 | return; |
923 | } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { | 923 | } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { |
924 | KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); | 924 | KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); |
925 | if ( par && par->isOn() ) | 925 | if ( par && par->isOn() ) |
926 | par->setOn( false ); | 926 | par->setOn( false ); |
927 | } | 927 | } |
928 | if (mPercentage[index] == 100) { | 928 | if (mPercentage[index] == 100) { |
929 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); | 929 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); |
930 | } else { | 930 | } else { |
931 | mActiveItem->todo()->setCompleted(false); | 931 | mActiveItem->todo()->setCompleted(false); |
932 | } | 932 | } |
933 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); | 933 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); |
934 | mActiveItem->construct(); | 934 | mActiveItem->construct(); |
935 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); | 935 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); |
936 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 936 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
937 | } | 937 | } |
938 | } | 938 | } |
939 | 939 | ||
940 | 940 | ||
941 | QPopupMenu * KOTodoView::getCategoryPopupMenu (KOTodoViewItem *todoItem) | 941 | QPopupMenu * KOTodoView::getCategoryPopupMenu (KOTodoViewItem *todoItem) |
942 | { | 942 | { |
943 | QPopupMenu* tempMenu = new QPopupMenu (this); | 943 | QPopupMenu* tempMenu = new QPopupMenu (this); |
944 | QStringList checkedCategories = todoItem->todo()->categories (); | 944 | QStringList checkedCategories = todoItem->todo()->categories (); |
945 | 945 | ||
946 | tempMenu->setCheckable (true); | 946 | tempMenu->setCheckable (true); |
947 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); | 947 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); |
948 | it != KOPrefs::instance()->mCustomCategories.end (); | 948 | it != KOPrefs::instance()->mCustomCategories.end (); |
949 | ++it) { | 949 | ++it) { |
950 | int index = tempMenu->insertItem (*it); | 950 | int index = tempMenu->insertItem (*it); |
951 | mCategory[index] = *it; | 951 | mCategory[index] = *it; |
952 | if (checkedCategories.find (*it) != checkedCategories.end ()) tempMenu->setItemChecked (index, true); | 952 | if (checkedCategories.find (*it) != checkedCategories.end ()) tempMenu->setItemChecked (index, true); |
953 | } | 953 | } |
954 | 954 | ||
955 | connect (tempMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); | 955 | connect (tempMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); |
956 | return tempMenu; | 956 | return tempMenu; |
957 | 957 | ||
958 | 958 | ||
959 | } | 959 | } |
960 | void KOTodoView::changedCategories(int index) | 960 | void KOTodoView::changedCategories(int index) |
961 | { | 961 | { |
962 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 962 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
963 | QStringList categories = mActiveItem->todo()->categories (); | 963 | QStringList categories = mActiveItem->todo()->categories (); |
964 | if (categories.find (mCategory[index]) != categories.end ()) | 964 | if (categories.find (mCategory[index]) != categories.end ()) |
965 | categories.remove (mCategory[index]); | 965 | categories.remove (mCategory[index]); |
966 | else | 966 | else |
967 | categories.insert (categories.end(), mCategory[index]); | 967 | categories.insert (categories.end(), mCategory[index]); |
968 | categories.sort (); | 968 | categories.sort (); |
969 | mActiveItem->todo()->setCategories (categories); | 969 | mActiveItem->todo()->setCategories (categories); |
970 | mActiveItem->construct(); | 970 | mActiveItem->construct(); |
971 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 971 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
972 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); | 972 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); |
973 | } | 973 | } |
974 | } | 974 | } |
975 | void KOTodoView::itemDoubleClicked(QListViewItem *item) | 975 | void KOTodoView::itemDoubleClicked(QListViewItem *item) |
976 | { | 976 | { |
977 | if ( pendingSubtodo != 0 ) { | 977 | if ( pendingSubtodo != 0 ) { |
978 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); | 978 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); |
979 | } | 979 | } |
980 | pendingSubtodo = 0; | 980 | pendingSubtodo = 0; |
981 | if (!item) { | 981 | if (!item) { |
982 | newTodo(); | 982 | newTodo(); |
983 | return; | 983 | return; |
984 | } | 984 | } |
985 | if ( KOPrefs::instance()->mEditOnDoubleClick ) | 985 | if ( KOPrefs::instance()->mEditOnDoubleClick ) |
986 | editItem( item ); | 986 | editItem( item ); |
987 | else | 987 | else |
988 | showItem( item , QPoint(), 0 ); | 988 | showItem( item , QPoint(), 0 ); |
989 | } | 989 | } |
990 | void KOTodoView::itemClicked(QListViewItem *item) | 990 | void KOTodoView::itemClicked(QListViewItem *item) |
991 | { | 991 | { |
992 | 992 | ||
993 | if (!item) { | 993 | if (!item) { |
994 | if ( pendingSubtodo != 0 ) { | 994 | if ( pendingSubtodo != 0 ) { |
995 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); | 995 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); |
996 | } | 996 | } |
997 | pendingSubtodo = 0; | 997 | pendingSubtodo = 0; |
998 | return; | 998 | return; |
999 | } | 999 | } |
1000 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 1000 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
1001 | if ( pendingSubtodo != 0 ) { | 1001 | if ( pendingSubtodo != 0 ) { |
1002 | bool allowReparent = true; | 1002 | bool allowReparent = true; |
1003 | QListViewItem *par = item; | 1003 | QListViewItem *par = item; |
1004 | while ( par ) { | 1004 | while ( par ) { |
1005 | if ( par == pendingSubtodo ) { | 1005 | if ( par == pendingSubtodo ) { |
1006 | allowReparent = false; | 1006 | allowReparent = false; |
1007 | break; | 1007 | break; |
1008 | } | 1008 | } |
1009 | par = par->parent(); | 1009 | par = par->parent(); |
1010 | } | 1010 | } |
1011 | if ( !allowReparent ) { | 1011 | if ( !allowReparent ) { |
1012 | topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); | 1012 | topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); |
1013 | qDebug("Recursive reparenting not possible "); | 1013 | qDebug("Recursive reparenting not possible "); |
1014 | pendingSubtodo = 0; | 1014 | pendingSubtodo = 0; |
1015 | } else { | 1015 | } else { |
1016 | Todo* newParent = todoItem->todo(); | 1016 | Todo* newParent = todoItem->todo(); |
1017 | Todo* newSub = pendingSubtodo->todo(); | 1017 | Todo* newSub = pendingSubtodo->todo(); |
1018 | pendingSubtodo = 0; | 1018 | pendingSubtodo = 0; |
1019 | emit reparentTodoSignal( newParent,newSub ); | 1019 | emit reparentTodoSignal( newParent,newSub ); |
1020 | return; | 1020 | return; |
1021 | } | 1021 | } |
1022 | } | 1022 | } |
1023 | #if 0 | 1023 | #if 0 |
1024 | // handled by the item itself | 1024 | // handled by the item itself |
1025 | bool completed = todoItem->todo()->isCompleted(); // Completed or not? | 1025 | bool completed = todoItem->todo()->isCompleted(); // Completed or not? |
1026 | qDebug("com %d ",completed ); | 1026 | qDebug("com %d ",completed ); |
1027 | qDebug("itemclicked "); | 1027 | qDebug("itemclicked "); |
1028 | if (todoItem->isOn()) { | 1028 | if (todoItem->isOn()) { |
1029 | qDebug("on "); | 1029 | qDebug("on "); |
1030 | if (!completed) { | 1030 | if (!completed) { |
1031 | qDebug("set true "); | 1031 | qDebug("set true "); |
1032 | todoItem->todo()->setCompleted(QDateTime::currentDateTime()); | 1032 | todoItem->todo()->setCompleted(QDateTime::currentDateTime()); |
1033 | } | 1033 | } |
1034 | } else { | 1034 | } else { |
1035 | qDebug("not on "); | 1035 | qDebug("not on "); |
1036 | if (completed) { | 1036 | if (completed) { |
1037 | qDebug("set false "); | 1037 | qDebug("set false "); |
1038 | todoItem->todo()->setCompleted(false); | 1038 | todoItem->todo()->setCompleted(false); |
1039 | } | 1039 | } |
1040 | } | 1040 | } |
1041 | #endif | 1041 | #endif |
1042 | } | 1042 | } |
1043 | 1043 | ||
1044 | void KOTodoView::setDocumentId( const QString &id ) | 1044 | void KOTodoView::setDocumentId( const QString &id ) |
1045 | { | 1045 | { |
1046 | kdDebug() << "KOTodoView::setDocumentId()" << endl; | 1046 | kdDebug() << "KOTodoView::setDocumentId()" << endl; |
1047 | 1047 | ||
1048 | mDocPrefs->setDoc( id ); | 1048 | mDocPrefs->setDoc( id ); |
1049 | } | 1049 | } |
1050 | 1050 | ||
1051 | void KOTodoView::itemStateChanged( QListViewItem *item ) | 1051 | void KOTodoView::itemStateChanged( QListViewItem *item ) |
1052 | { | 1052 | { |
1053 | if (!item) return; | 1053 | if (!item) return; |
1054 | 1054 | ||
1055 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 1055 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
1056 | 1056 | ||
1057 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; | 1057 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; |
1058 | 1058 | ||
1059 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); | 1059 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); |
1060 | } | 1060 | } |
1061 | 1061 | ||
1062 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const | 1062 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const |
1063 | { | 1063 | { |
1064 | mTodoListView->saveLayout(config,group); | 1064 | mTodoListView->saveLayout(config,group); |
1065 | } | 1065 | } |
1066 | 1066 | ||
1067 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) | 1067 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) |
1068 | { | 1068 | { |
1069 | mTodoListView->restoreLayout(config,group); | 1069 | mTodoListView->restoreLayout(config,group); |
1070 | } | 1070 | } |
1071 | 1071 | ||
1072 | void KOTodoView::processSelectionChange() | 1072 | void KOTodoView::processSelectionChange() |
1073 | { | 1073 | { |
1074 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; | 1074 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; |
1075 | 1075 | ||
1076 | KOTodoViewItem *item = | 1076 | KOTodoViewItem *item = |
1077 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); | 1077 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); |
1078 | 1078 | ||
1079 | if ( !item ) { | 1079 | if ( !item ) { |
1080 | emit incidenceSelected( 0 ); | 1080 | emit incidenceSelected( 0 ); |
1081 | } else { | 1081 | } else { |
1082 | emit incidenceSelected( item->todo() ); | 1082 | emit incidenceSelected( item->todo() ); |
1083 | } | 1083 | } |
1084 | } | 1084 | } |
1085 | 1085 | ||
1086 | void KOTodoView::modified(bool b) | 1086 | void KOTodoView::modified(bool b) |
1087 | { | 1087 | { |
1088 | emit isModified(b); | 1088 | emit isModified(b); |
1089 | } | 1089 | } |
1090 | void KOTodoView::setTodoModified( Todo* todo ) | 1090 | void KOTodoView::setTodoModified( Todo* todo ) |
1091 | { | 1091 | { |
1092 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); | 1092 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); |
1093 | } | 1093 | } |
1094 | void KOTodoView::clearSelection() | 1094 | void KOTodoView::clearSelection() |
1095 | { | 1095 | { |
1096 | mTodoListView->selectAll( false ); | 1096 | mTodoListView->selectAll( false ); |
1097 | } | 1097 | } |
1098 | void KOTodoView::setAllOpen() | 1098 | void KOTodoView::setAllOpen() |
1099 | { | 1099 | { |
1100 | if ( isFlatDisplay ) { | 1100 | if ( isFlatDisplay ) { |
1101 | isFlatDisplay = false; | 1101 | isFlatDisplay = false; |
1102 | mPopupMenu->setItemChecked( 8,false ); | 1102 | mPopupMenu->setItemChecked( 8,false ); |
1103 | updateView(); | 1103 | updateView(); |
1104 | } | 1104 | } |
1105 | setOpen(mTodoListView->firstChild(), true); | 1105 | setOpen(mTodoListView->firstChild(), true); |
1106 | } | 1106 | } |
1107 | void KOTodoView::setAllClose() | 1107 | void KOTodoView::setAllClose() |
1108 | { | 1108 | { |
1109 | if ( isFlatDisplay ) { | 1109 | if ( isFlatDisplay ) { |
1110 | isFlatDisplay = false; | 1110 | isFlatDisplay = false; |
1111 | mPopupMenu->setItemChecked( 8,false ); | 1111 | mPopupMenu->setItemChecked( 8,false ); |
1112 | updateView(); | 1112 | updateView(); |
1113 | } | 1113 | } |
1114 | setOpen(mTodoListView->firstChild(), false); | 1114 | setOpen(mTodoListView->firstChild(), false); |
1115 | } | 1115 | } |
1116 | void KOTodoView::setOpen( QListViewItem* item, bool setOpenI) | 1116 | void KOTodoView::setOpen( QListViewItem* item, bool setOpenI) |
1117 | { | 1117 | { |
1118 | 1118 | ||
1119 | while ( item ) { | 1119 | while ( item ) { |
1120 | setOpen( item->firstChild(), setOpenI ); | 1120 | setOpen( item->firstChild(), setOpenI ); |
1121 | item->setOpen( setOpenI ); | 1121 | item->setOpen( setOpenI ); |
1122 | item = item->nextSibling(); | 1122 | item = item->nextSibling(); |
1123 | } | 1123 | } |
1124 | } | 1124 | } |
1125 | 1125 | ||
1126 | void KOTodoView::setAllFlat() | 1126 | void KOTodoView::displayAllFlat() |
1127 | { | 1127 | { |
1128 | if ( isFlatDisplay ) { | ||
1129 | isFlatDisplay = false; | ||
1130 | mPopupMenu->setItemChecked( 8,false ); | ||
1131 | updateView(); | ||
1132 | return; | ||
1133 | } | ||
1134 | pendingSubtodo = 0; | 1128 | pendingSubtodo = 0; |
1135 | if ( mBlockUpdate ) { | 1129 | if ( mBlockUpdate ) { |
1136 | return; | 1130 | return; |
1137 | } | 1131 | } |
1138 | mPopupMenu->setItemChecked( 8,true ); | 1132 | mPopupMenu->setItemChecked( 8,true ); |
1139 | isFlatDisplay = true; | 1133 | isFlatDisplay = true; |
1140 | QPtrList<Todo> todoList = calendar()->todos(); | 1134 | QPtrList<Todo> todoList = calendar()->todos(); |
1141 | mTodoMap.clear(); | 1135 | mTodoMap.clear(); |
1142 | mTodoListView->clear(); | 1136 | mTodoListView->clear(); |
1143 | Todo *todo; | 1137 | Todo *todo; |
1144 | for(todo = todoList.first(); todo; todo = todoList.next()) { | 1138 | for(todo = todoList.first(); todo; todo = todoList.next()) { |
1145 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); | 1139 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); |
1146 | mTodoMap.insert(todo,todoItem); | 1140 | mTodoMap.insert(todo,todoItem); |
1147 | } | 1141 | } |
1148 | mTodoListView->setFocus(); | 1142 | mTodoListView->setFocus(); |
1149 | processSelectionChange(); | 1143 | processSelectionChange(); |
1150 | } | 1144 | } |
1151 | 1145 | ||
1146 | void KOTodoView::setAllFlat() | ||
1147 | { | ||
1148 | if ( isFlatDisplay ) { | ||
1149 | isFlatDisplay = false; | ||
1150 | mPopupMenu->setItemChecked( 8,false ); | ||
1151 | updateView(); | ||
1152 | return; | ||
1153 | } | ||
1154 | displayAllFlat(); | ||
1155 | } | ||
1156 | |||
1152 | void KOTodoView::purgeCompleted() | 1157 | void KOTodoView::purgeCompleted() |
1153 | { | 1158 | { |
1154 | emit purgeCompletedSignal(); | 1159 | emit purgeCompletedSignal(); |
1155 | } | 1160 | } |
1156 | void KOTodoView::toggleQuickTodo() | 1161 | void KOTodoView::toggleQuickTodo() |
1157 | { | 1162 | { |
1158 | if ( mQuickAdd->isVisible() ) { | 1163 | if ( mQuickAdd->isVisible() ) { |
1159 | mQuickAdd->hide(); | 1164 | mQuickAdd->hide(); |
1160 | KOPrefs::instance()->mEnableQuickTodo = false; | 1165 | KOPrefs::instance()->mEnableQuickTodo = false; |
1161 | } | 1166 | } |
1162 | else { | 1167 | else { |
1163 | mQuickAdd->show(); | 1168 | mQuickAdd->show(); |
1164 | KOPrefs::instance()->mEnableQuickTodo = true; | 1169 | KOPrefs::instance()->mEnableQuickTodo = true; |
1165 | } | 1170 | } |
1166 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); | 1171 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); |
1167 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); | 1172 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); |
1168 | } | 1173 | } |
1169 | 1174 | ||
1170 | void KOTodoView::toggleRunning() | 1175 | void KOTodoView::toggleRunning() |
1171 | { | 1176 | { |
1172 | KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos; | 1177 | KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos; |
1173 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); | 1178 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); |
1174 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); | 1179 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); |
1175 | updateView(); | 1180 | updateView(); |
1176 | } | 1181 | } |
1177 | 1182 | ||
1178 | void KOTodoView::toggleCompleted() | 1183 | void KOTodoView::toggleCompleted() |
1179 | { | 1184 | { |
1180 | KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo; | 1185 | KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo; |
1181 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); | 1186 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); |
1182 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); | 1187 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); |
1183 | updateView(); | 1188 | updateView(); |
1184 | } | 1189 | } |
1185 | 1190 | ||
1186 | void KOTodoView::addQuickTodo() | 1191 | void KOTodoView::addQuickTodo() |
1187 | { | 1192 | { |
1188 | Todo *todo = new Todo(); | 1193 | Todo *todo = new Todo(); |
1189 | todo->setSummary(mQuickAdd->text()); | 1194 | todo->setSummary(mQuickAdd->text()); |
1190 | todo->setOrganizer(KOPrefs::instance()->email()); | 1195 | todo->setOrganizer(KOPrefs::instance()->email()); |
1191 | CalFilter * cf = mCalendar->filter(); | 1196 | CalFilter * cf = mCalendar->filter(); |
1192 | if ( cf ) { | 1197 | if ( cf ) { |
1193 | if ( cf->isEnabled()&& cf->showCategories()) { | 1198 | if ( cf->isEnabled()&& cf->showCategories()) { |
1194 | todo->setCategories(cf->categoryList()); | 1199 | todo->setCategories(cf->categoryList()); |
1195 | } | 1200 | } |
1196 | if ( cf->isEnabled() ) | 1201 | if ( cf->isEnabled() ) |
1197 | todo->setSecrecy( cf->getSecrecy()); | 1202 | todo->setSecrecy( cf->getSecrecy()); |
1198 | } | 1203 | } |
1199 | mCalendar->addTodo(todo); | 1204 | mCalendar->addTodo(todo); |
1200 | mQuickAdd->setText(""); | 1205 | mQuickAdd->setText(""); |
1201 | todoModified (todo, KOGlobals::EVENTADDED ); | 1206 | todoModified (todo, KOGlobals::EVENTADDED ); |
1202 | updateView(); | 1207 | updateView(); |
1203 | } | 1208 | } |
1204 | void KOTodoView::keyPressEvent ( QKeyEvent * e ) | 1209 | void KOTodoView::keyPressEvent ( QKeyEvent * e ) |
1205 | { | 1210 | { |
1206 | // e->ignore(); | 1211 | // e->ignore(); |
1207 | //return; | 1212 | //return; |
1208 | //qDebug("KOTodoView::keyPressEvent "); | 1213 | //qDebug("KOTodoView::keyPressEvent "); |
1209 | switch ( e->key() ) { | 1214 | switch ( e->key() ) { |
1210 | case Qt::Key_Down: | 1215 | case Qt::Key_Down: |
1211 | case Qt::Key_Up: | 1216 | case Qt::Key_Up: |
1212 | QWidget::keyPressEvent ( e ); | 1217 | QWidget::keyPressEvent ( e ); |
1213 | break; | 1218 | break; |
1214 | 1219 | ||
1215 | case Qt::Key_Q: | 1220 | case Qt::Key_Q: |
1216 | toggleQuickTodo(); | 1221 | toggleQuickTodo(); |
1217 | break; | 1222 | break; |
1218 | case Qt::Key_U: | 1223 | case Qt::Key_U: |
1219 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { | 1224 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { |
1220 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); | 1225 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); |
1221 | unparentTodo(); | 1226 | unparentTodo(); |
1222 | e->accept(); | 1227 | e->accept(); |
1223 | } else | 1228 | } else |
1224 | e->ignore(); | 1229 | e->ignore(); |
1225 | break; | 1230 | break; |
1226 | case Qt::Key_S: | 1231 | case Qt::Key_S: |
1227 | if ( e->state() == Qt::ControlButton ) { | 1232 | if ( e->state() == Qt::ControlButton ) { |
1228 | e->ignore(); | 1233 | e->ignore(); |
1229 | break; | 1234 | break; |
1230 | } | 1235 | } |
1231 | if ( e->state() == Qt::ShiftButton ) { | 1236 | if ( e->state() == Qt::ShiftButton ) { |
1232 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); | 1237 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); |
1233 | reparentTodo(); | 1238 | reparentTodo(); |
1234 | e->accept(); | 1239 | e->accept(); |
1235 | } else | 1240 | } else |
1236 | e->ignore(); | 1241 | e->ignore(); |
1237 | break; | 1242 | break; |
1238 | case Qt::Key_P: | 1243 | case Qt::Key_P: |
1239 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { | 1244 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { |
1240 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); | 1245 | mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); |
1241 | if ( pendingSubtodo ) | 1246 | if ( pendingSubtodo ) |
1242 | itemClicked(mActiveItem); | 1247 | itemClicked(mActiveItem); |
1243 | e->accept(); | 1248 | e->accept(); |
1244 | } else | 1249 | } else |
1245 | e->ignore(); | 1250 | e->ignore(); |
1246 | break; | 1251 | break; |
1247 | case Qt::Key_Escape: | 1252 | case Qt::Key_Escape: |
1248 | if ( pendingSubtodo ) { | 1253 | if ( pendingSubtodo ) { |
1249 | itemClicked(0); | 1254 | itemClicked(0); |
1250 | e->accept(); | 1255 | e->accept(); |
1251 | } else | 1256 | } else |
1252 | e->ignore(); | 1257 | e->ignore(); |
1253 | break; | 1258 | break; |
1254 | default: | 1259 | default: |
1255 | e->ignore(); | 1260 | e->ignore(); |
1256 | } | 1261 | } |
1257 | 1262 | ||
1258 | if ( true ) { | 1263 | if ( true ) { |
1259 | if ( e->key() == Qt::Key_I ) { | 1264 | if ( e->key() == Qt::Key_I ) { |
1260 | KOTodoViewItem*cn = (KOTodoViewItem*)mTodoListView->currentItem(); | 1265 | KOTodoViewItem*cn = (KOTodoViewItem*)mTodoListView->currentItem(); |
1261 | if ( cn ) { | 1266 | if ( cn ) { |
1262 | mActiveItem = cn; | 1267 | mActiveItem = cn; |
1263 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); | 1268 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); |
1264 | if ( ci ){ | 1269 | if ( ci ){ |
1265 | showTodo(); | 1270 | showTodo(); |
1266 | cn = (KOTodoViewItem*)cn->itemBelow(); | 1271 | cn = (KOTodoViewItem*)cn->itemBelow(); |
1267 | if ( cn ) { | 1272 | if ( cn ) { |
1268 | mTodoListView->setCurrentItem ( cn ); | 1273 | mTodoListView->setCurrentItem ( cn ); |
1269 | mTodoListView->ensureItemVisible ( cn ); | 1274 | mTodoListView->ensureItemVisible ( cn ); |
1270 | } | 1275 | } |
1271 | 1276 | ||
1272 | } | 1277 | } |
1273 | } | 1278 | } |
1274 | e->accept(); | 1279 | e->accept(); |
1275 | 1280 | ||
1276 | } | 1281 | } |
1277 | 1282 | ||
1278 | } | 1283 | } |
1279 | 1284 | ||
1280 | } | 1285 | } |
1281 | void KOTodoView::updateTodo( Todo * t, int type ) | 1286 | void KOTodoView::updateTodo( Todo * t, int type ) |
1282 | { | 1287 | { |
1283 | if ( mBlockUpdate) | 1288 | if ( mBlockUpdate) |
1284 | return; | 1289 | return; |
1285 | 1290 | ||
1286 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; | 1291 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; |
1287 | itemIterator = mTodoMap.find(t); | 1292 | itemIterator = mTodoMap.find(t); |
1288 | if (itemIterator != mTodoMap.end()) { | 1293 | if (itemIterator != mTodoMap.end()) { |
1289 | (*itemIterator)->construct(); | 1294 | (*itemIterator)->construct(); |
1290 | } else { | 1295 | } else { |
1291 | if ( type == KOGlobals::EVENTADDED ) { | 1296 | if ( type == KOGlobals::EVENTADDED ) { |
1292 | insertTodoItem( t ); | 1297 | insertTodoItem( t ); |
1293 | } | 1298 | } |
1294 | } | 1299 | } |
1295 | 1300 | ||
1296 | } | 1301 | } |
1297 | 1302 | ||
1298 | void KOTodoView::todoModified(Todo * t , int p ) | 1303 | void KOTodoView::todoModified(Todo * t , int p ) |
1299 | { | 1304 | { |
1300 | mBlockUpdate = true; | 1305 | mBlockUpdate = true; |
1301 | emit todoModifiedSignal ( t, p ); | 1306 | emit todoModifiedSignal ( t, p ); |
1302 | mBlockUpdate = false; | 1307 | mBlockUpdate = false; |
1303 | } | 1308 | } |
diff --git a/korganizer/kotodoview.h b/korganizer/kotodoview.h index 1642132..462f0a6 100644 --- a/korganizer/kotodoview.h +++ b/korganizer/kotodoview.h | |||
@@ -1,254 +1,255 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000, 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000, 2001 Cornelius Schumacher <schumacher@kde.org> |
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 KOTODOVIEW_H | 23 | #ifndef KOTODOVIEW_H |
24 | #define KOTODOVIEW_H | 24 | #define KOTODOVIEW_H |
25 | 25 | ||
26 | #include <qfont.h> | 26 | #include <qfont.h> |
27 | #include <qfontmetrics.h> | 27 | #include <qfontmetrics.h> |
28 | #include <qlineedit.h> | 28 | #include <qlineedit.h> |
29 | #include <qptrlist.h> | 29 | #include <qptrlist.h> |
30 | #include <qstrlist.h> | 30 | #include <qstrlist.h> |
31 | #include <qlistbox.h> | 31 | #include <qlistbox.h> |
32 | #include <qpopupmenu.h> | 32 | #include <qpopupmenu.h> |
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | #include <qmap.h> | 34 | #include <qmap.h> |
35 | #include <qlistview.h> | 35 | #include <qlistview.h> |
36 | #include <klistview.h> | 36 | #include <klistview.h> |
37 | 37 | ||
38 | #include <libkcal/calendar.h> | 38 | #include <libkcal/calendar.h> |
39 | #include <libkcal/todo.h> | 39 | #include <libkcal/todo.h> |
40 | 40 | ||
41 | #include <korganizer/baseview.h> | 41 | #include <korganizer/baseview.h> |
42 | 42 | ||
43 | #include "kotodoviewitem.h" | 43 | #include "kotodoviewitem.h" |
44 | #include "koprefs.h" | 44 | #include "koprefs.h" |
45 | #include "koglobals.h" | 45 | #include "koglobals.h" |
46 | #include "datenavigator.h" | 46 | #include "datenavigator.h" |
47 | 47 | ||
48 | class QDragEnterEvent; | 48 | class QDragEnterEvent; |
49 | class QDragMoveEvent; | 49 | class QDragMoveEvent; |
50 | class QDragLeaveEvent; | 50 | class QDragLeaveEvent; |
51 | class QDropEvent; | 51 | class QDropEvent; |
52 | 52 | ||
53 | class DocPrefs; | 53 | class DocPrefs; |
54 | 54 | ||
55 | class KOTodoListView : public KListView | 55 | class KOTodoListView : public KListView |
56 | { | 56 | { |
57 | Q_OBJECT | 57 | Q_OBJECT |
58 | public: | 58 | public: |
59 | KOTodoListView(Calendar *,QWidget *parent=0,const char *name=0); | 59 | KOTodoListView(Calendar *,QWidget *parent=0,const char *name=0); |
60 | virtual ~KOTodoListView() {} | 60 | virtual ~KOTodoListView() {} |
61 | 61 | ||
62 | signals: | 62 | signals: |
63 | void paintNeeded(); | 63 | void paintNeeded(); |
64 | void todoDropped(Todo *, int); | 64 | void todoDropped(Todo *, int); |
65 | void double_Clicked(QListViewItem *item); | 65 | void double_Clicked(QListViewItem *item); |
66 | void reparentTodoSignal( Todo *,Todo * ); | 66 | void reparentTodoSignal( Todo *,Todo * ); |
67 | void unparentTodoSignal(Todo *); | 67 | void unparentTodoSignal(Todo *); |
68 | void deleteTodo( Todo * ); | 68 | void deleteTodo( Todo * ); |
69 | protected: | 69 | protected: |
70 | void contentsDragEnterEvent(QDragEnterEvent *); | 70 | void contentsDragEnterEvent(QDragEnterEvent *); |
71 | void contentsDragMoveEvent(QDragMoveEvent *); | 71 | void contentsDragMoveEvent(QDragMoveEvent *); |
72 | void contentsDragLeaveEvent(QDragLeaveEvent *); | 72 | void contentsDragLeaveEvent(QDragLeaveEvent *); |
73 | void contentsDropEvent(QDropEvent *); | 73 | void contentsDropEvent(QDropEvent *); |
74 | 74 | ||
75 | void contentsMousePressEvent(QMouseEvent *); | 75 | void contentsMousePressEvent(QMouseEvent *); |
76 | void contentsMouseMoveEvent(QMouseEvent *); | 76 | void contentsMouseMoveEvent(QMouseEvent *); |
77 | void contentsMouseReleaseEvent(QMouseEvent *); | 77 | void contentsMouseReleaseEvent(QMouseEvent *); |
78 | void contentsMouseDoubleClickEvent(QMouseEvent *); | 78 | void contentsMouseDoubleClickEvent(QMouseEvent *); |
79 | 79 | ||
80 | private: | 80 | private: |
81 | void paintEvent(QPaintEvent * pevent); | 81 | void paintEvent(QPaintEvent * pevent); |
82 | bool internalDrop; | 82 | bool internalDrop; |
83 | QString mName; | 83 | QString mName; |
84 | Calendar *mCalendar; | 84 | Calendar *mCalendar; |
85 | QPoint mPressPos; | 85 | QPoint mPressPos; |
86 | bool mMousePressed; | 86 | bool mMousePressed; |
87 | QListViewItem *mOldCurrent; | 87 | QListViewItem *mOldCurrent; |
88 | void keyPressEvent ( QKeyEvent * ) ; | 88 | void keyPressEvent ( QKeyEvent * ) ; |
89 | }; | 89 | }; |
90 | 90 | ||
91 | 91 | ||
92 | /** | 92 | /** |
93 | This is the line-edit on top of the todoview for fast addition of new todos | 93 | This is the line-edit on top of the todoview for fast addition of new todos |
94 | */ | 94 | */ |
95 | class KOQuickTodo : public QLineEdit | 95 | class KOQuickTodo : public QLineEdit |
96 | { | 96 | { |
97 | public: | 97 | public: |
98 | KOQuickTodo(QWidget *parent=0); | 98 | KOQuickTodo(QWidget *parent=0); |
99 | protected: | 99 | protected: |
100 | void focusInEvent(QFocusEvent *ev); | 100 | void focusInEvent(QFocusEvent *ev); |
101 | void focusOutEvent(QFocusEvent *ev); | 101 | void focusOutEvent(QFocusEvent *ev); |
102 | }; | 102 | }; |
103 | 103 | ||
104 | 104 | ||
105 | /** | 105 | /** |
106 | This class provides a multi-column list view of todo events. | 106 | This class provides a multi-column list view of todo events. |
107 | 107 | ||
108 | @short multi-column list view of todo events. | 108 | @short multi-column list view of todo events. |
109 | @author Cornelius Schumacher <schumacher@kde.org> | 109 | @author Cornelius Schumacher <schumacher@kde.org> |
110 | */ | 110 | */ |
111 | class KOTodoView : public KOrg::BaseView | 111 | class KOTodoView : public KOrg::BaseView |
112 | { | 112 | { |
113 | Q_OBJECT | 113 | Q_OBJECT |
114 | public: | 114 | public: |
115 | KOTodoView(Calendar *, QWidget* parent=0, const char* name=0 ); | 115 | KOTodoView(Calendar *, QWidget* parent=0, const char* name=0 ); |
116 | ~KOTodoView(); | 116 | ~KOTodoView(); |
117 | 117 | ||
118 | QPtrList<Incidence> selectedIncidences(); | 118 | QPtrList<Incidence> selectedIncidences(); |
119 | QPtrList<Todo> selectedTodos(); | 119 | QPtrList<Todo> selectedTodos(); |
120 | 120 | ||
121 | DateList selectedDates() | 121 | DateList selectedDates() |
122 | {DateList q; | 122 | {DateList q; |
123 | return q;} | 123 | return q;} |
124 | 124 | ||
125 | /** Return number of shown dates. TodoView does not show dates, */ | 125 | /** Return number of shown dates. TodoView does not show dates, */ |
126 | int currentDateCount() { return 0; } | 126 | int currentDateCount() { return 0; } |
127 | 127 | ||
128 | void printPreview(CalPrinter *calPrinter, const QDate &fd, const QDate &td); | 128 | void printPreview(CalPrinter *calPrinter, const QDate &fd, const QDate &td); |
129 | 129 | ||
130 | void setDocumentId( const QString & ); | 130 | void setDocumentId( const QString & ); |
131 | 131 | ||
132 | void saveLayout(KConfig *config, const QString &group) const; | 132 | void saveLayout(KConfig *config, const QString &group) const; |
133 | void restoreLayout(KConfig *config, const QString &group); | 133 | void restoreLayout(KConfig *config, const QString &group); |
134 | /** Create a popup menu to set categories */ | 134 | /** Create a popup menu to set categories */ |
135 | QPopupMenu *getCategoryPopupMenu (KOTodoViewItem *todoItem); | 135 | QPopupMenu *getCategoryPopupMenu (KOTodoViewItem *todoItem); |
136 | void setNavigator( DateNavigator* nav ) {mNavigator = nav;} | 136 | void setNavigator( DateNavigator* nav ) {mNavigator = nav;} |
137 | QString getWhatsThisText(QPoint p); | 137 | QString getWhatsThisText(QPoint p); |
138 | 138 | ||
139 | public slots: | 139 | public slots: |
140 | void updateView(); | 140 | void updateView(); |
141 | void updateConfig(); | 141 | void updateConfig(); |
142 | 142 | ||
143 | void changeEventDisplay(Event *, int); | 143 | void changeEventDisplay(Event *, int); |
144 | 144 | ||
145 | void showDates(const QDate &start, const QDate &end); | 145 | void showDates(const QDate &start, const QDate &end); |
146 | void showEvents(QPtrList<Event> eventList); | 146 | void showEvents(QPtrList<Event> eventList); |
147 | 147 | ||
148 | void clearSelection(); | 148 | void clearSelection(); |
149 | void jumpToDate (); | 149 | void jumpToDate (); |
150 | 150 | ||
151 | void editItem(QListViewItem *item); | 151 | void editItem(QListViewItem *item); |
152 | void showItem(QListViewItem *item,const QPoint &,int); | 152 | void showItem(QListViewItem *item,const QPoint &,int); |
153 | void popupMenu(QListViewItem *item,const QPoint &,int); | 153 | void popupMenu(QListViewItem *item,const QPoint &,int); |
154 | void newTodo(); | 154 | void newTodo(); |
155 | void newSubTodo(); | 155 | void newSubTodo(); |
156 | void unparentTodo(); | 156 | void unparentTodo(); |
157 | void reparentTodo(); | 157 | void reparentTodo(); |
158 | void showTodo(); | 158 | void showTodo(); |
159 | void editTodo(); | 159 | void editTodo(); |
160 | void cloneTodo(); | 160 | void cloneTodo(); |
161 | void cancelTodo(); | 161 | void cancelTodo(); |
162 | void moveTodo(); | 162 | void moveTodo(); |
163 | void beamTodo(); | 163 | void beamTodo(); |
164 | void deleteTodo(); | 164 | void deleteTodo(); |
165 | 165 | ||
166 | void setNewPriority(int); | 166 | void setNewPriority(int); |
167 | void setNewPercentage(int); | 167 | void setNewPercentage(int); |
168 | void changedCategories(int); | 168 | void changedCategories(int); |
169 | 169 | ||
170 | void setAllOpen(); | 170 | void setAllOpen(); |
171 | void setAllClose(); | 171 | void setAllClose(); |
172 | void setAllFlat(); | 172 | void setAllFlat(); |
173 | void displayAllFlat(); | ||
173 | 174 | ||
174 | void purgeCompleted(); | 175 | void purgeCompleted(); |
175 | void toggleCompleted(); | 176 | void toggleCompleted(); |
176 | void toggleRunning(); | 177 | void toggleRunning(); |
177 | void toggleQuickTodo(); | 178 | void toggleQuickTodo(); |
178 | void updateTodo( Todo *, int ); | 179 | void updateTodo( Todo *, int ); |
179 | 180 | ||
180 | void itemClicked(QListViewItem *); | 181 | void itemClicked(QListViewItem *); |
181 | void itemStateChanged(QListViewItem *); | 182 | void itemStateChanged(QListViewItem *); |
182 | void modified(bool); | 183 | void modified(bool); |
183 | void itemDoubleClicked(QListViewItem *item); | 184 | void itemDoubleClicked(QListViewItem *item); |
184 | 185 | ||
185 | signals: | 186 | signals: |
186 | void newTodoSignal(); | 187 | void newTodoSignal(); |
187 | void newSubTodoSignal(Todo *); | 188 | void newSubTodoSignal(Todo *); |
188 | void unparentTodoSignal(Todo *); | 189 | void unparentTodoSignal(Todo *); |
189 | void reparentTodoSignal( Todo *,Todo * ); | 190 | void reparentTodoSignal( Todo *,Todo * ); |
190 | void showTodoSignal(Todo *); | 191 | void showTodoSignal(Todo *); |
191 | 192 | ||
192 | void editTodoSignal(Todo *); | 193 | void editTodoSignal(Todo *); |
193 | void deleteTodoSignal(Todo *); | 194 | void deleteTodoSignal(Todo *); |
194 | void todoModifiedSignal (Todo *, int); | 195 | void todoModifiedSignal (Todo *, int); |
195 | 196 | ||
196 | void isModified(bool); | 197 | void isModified(bool); |
197 | void cloneTodoSignal( Incidence * ); | 198 | void cloneTodoSignal( Incidence * ); |
198 | void cancelTodoSignal( Incidence * ); | 199 | void cancelTodoSignal( Incidence * ); |
199 | void moveTodoSignal( Incidence * ); | 200 | void moveTodoSignal( Incidence * ); |
200 | void beamTodoSignal( Incidence * ); | 201 | void beamTodoSignal( Incidence * ); |
201 | void purgeCompletedSignal(); | 202 | void purgeCompletedSignal(); |
202 | 203 | ||
203 | protected slots: | 204 | protected slots: |
204 | void paintNeeded(); | 205 | void paintNeeded(); |
205 | void processSelectionChange(); | 206 | void processSelectionChange(); |
206 | void addQuickTodo(); | 207 | void addQuickTodo(); |
207 | void setTodoModified( Todo* ); | 208 | void setTodoModified( Todo* ); |
208 | void todoModified(Todo *, int ); | 209 | void todoModified(Todo *, int ); |
209 | 210 | ||
210 | private: | 211 | private: |
211 | /* | 212 | /* |
212 | * the TodoEditor approach is rather unscaling in the long | 213 | * the TodoEditor approach is rather unscaling in the long |
213 | * run. | 214 | * run. |
214 | * Korganizer keeps it in memory and we need to update | 215 | * Korganizer keeps it in memory and we need to update |
215 | * 1. make KOTodoViewItem a QObject again? | 216 | * 1. make KOTodoViewItem a QObject again? |
216 | * 2. add a public method for setting one todo modified? | 217 | * 2. add a public method for setting one todo modified? |
217 | * 3. add a private method for setting a todo modified + friend here? | 218 | * 3. add a private method for setting a todo modified + friend here? |
218 | * -- zecke 2002-07-08 | 219 | * -- zecke 2002-07-08 |
219 | */ | 220 | */ |
220 | friend class KOTodoListView; | 221 | friend class KOTodoListView; |
221 | void paintEvent(QPaintEvent * pevent); | 222 | void paintEvent(QPaintEvent * pevent); |
222 | bool mPendingUpdateBeforeRepaint; | 223 | bool mPendingUpdateBeforeRepaint; |
223 | friend class KOTodoViewItem; | 224 | friend class KOTodoViewItem; |
224 | QMap<Todo *,KOTodoViewItem *>::ConstIterator insertTodoItem(Todo *todo); | 225 | QMap<Todo *,KOTodoViewItem *>::ConstIterator insertTodoItem(Todo *todo); |
225 | void restoreItemState( QListViewItem * ); | 226 | void restoreItemState( QListViewItem * ); |
226 | 227 | ||
227 | bool checkTodo( Todo * ); | 228 | bool checkTodo( Todo * ); |
228 | bool isFlatDisplay; | 229 | bool isFlatDisplay; |
229 | void setOpen( QListViewItem*, bool setOpen); | 230 | void setOpen( QListViewItem*, bool setOpen); |
230 | KOTodoListView *mTodoListView; | 231 | KOTodoListView *mTodoListView; |
231 | QPopupMenu *mItemPopupMenu; | 232 | QPopupMenu *mItemPopupMenu; |
232 | QPopupMenu *mPopupMenu; | 233 | QPopupMenu *mPopupMenu; |
233 | QPopupMenu *mPriorityPopupMenu; | 234 | QPopupMenu *mPriorityPopupMenu; |
234 | QPopupMenu *mPercentageCompletedPopupMenu; | 235 | QPopupMenu *mPercentageCompletedPopupMenu; |
235 | QPopupMenu *mCategoryPopupMenu; | 236 | QPopupMenu *mCategoryPopupMenu; |
236 | 237 | ||
237 | QMap<int, int> mPercentage; | 238 | QMap<int, int> mPercentage; |
238 | QMap<int, int> mPriority; | 239 | QMap<int, int> mPriority; |
239 | QMap<int, QString> mCategory; | 240 | QMap<int, QString> mCategory; |
240 | KOTodoViewItem *mActiveItem; | 241 | KOTodoViewItem *mActiveItem; |
241 | 242 | ||
242 | QMap<Todo *,KOTodoViewItem *> mTodoMap; | 243 | QMap<Todo *,KOTodoViewItem *> mTodoMap; |
243 | QString mName; | 244 | QString mName; |
244 | 245 | ||
245 | DocPrefs *mDocPrefs; | 246 | DocPrefs *mDocPrefs; |
246 | QString mCurrentDoc; | 247 | QString mCurrentDoc; |
247 | KOQuickTodo *mQuickAdd; | 248 | KOQuickTodo *mQuickAdd; |
248 | bool mBlockUpdate; | 249 | bool mBlockUpdate; |
249 | void keyPressEvent ( QKeyEvent * ) ; | 250 | void keyPressEvent ( QKeyEvent * ) ; |
250 | KOTodoViewItem * pendingSubtodo; | 251 | KOTodoViewItem * pendingSubtodo; |
251 | DateNavigator* mNavigator; | 252 | DateNavigator* mNavigator; |
252 | }; | 253 | }; |
253 | 254 | ||
254 | #endif | 255 | #endif |