author | zecke <zecke> | 2002-06-25 19:55:53 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-25 19:55:53 (UTC) |
commit | af4a3940dd672423da28b54e5d955cc5d33cecda (patch) (unidiff) | |
tree | cb5fcfe4835c86353e9d54b1050c7dfb23898bf1 | |
parent | 8635f264c15b05152fc1a44f798c154472a4b227 (diff) | |
download | opie-af4a3940dd672423da28b54e5d955cc5d33cecda.zip opie-af4a3940dd672423da28b54e5d955cc5d33cecda.tar.gz opie-af4a3940dd672423da28b54e5d955cc5d33cecda.tar.bz2 |
All day events are not from 00:00 to 23:59 they're all day now.
-rw-r--r-- | core/pim/datebook/datebookday.cpp | 52 | ||||
-rw-r--r-- | core/pim/datebook/datebookday.h | 31 | ||||
-rw-r--r-- | core/pim/datebook/datebookweek.cpp | 52 | ||||
-rw-r--r-- | core/pim/datebook/datebookweek.h | 16 | ||||
-rw-r--r-- | core/pim/datebook/datebookweeklst.cpp | 5 |
5 files changed, 107 insertions, 49 deletions
diff --git a/core/pim/datebook/datebookday.cpp b/core/pim/datebook/datebookday.cpp index 9cc5fcd..5474cfc 100644 --- a/core/pim/datebook/datebookday.cpp +++ b/core/pim/datebook/datebookday.cpp | |||
@@ -473,312 +473,324 @@ void DateBookDay::relayoutPage( bool fromResize ) | |||
473 | w->setGeometry( geom ); | 473 | w->setGeometry( geom ); |
474 | } | 474 | } |
475 | } | 475 | } |
476 | 476 | ||
477 | if (jumpToCurTime && this->date() == QDate::currentDate()) | 477 | if (jumpToCurTime && this->date() == QDate::currentDate()) |
478 | view->setContentsPos( 0, QTime::currentTime().hour() * view->rowHeight(0) ); //set listview to current hour | 478 | view->setContentsPos( 0, QTime::currentTime().hour() * view->rowHeight(0) ); //set listview to current hour |
479 | else | 479 | else |
480 | view->setContentsPos( 0, startTime * view->rowHeight(0) ); | 480 | view->setContentsPos( 0, startTime * view->rowHeight(0) ); |
481 | } | 481 | } |
482 | 482 | ||
483 | timeMarker->setTime( QTime::currentTime() );//display timeMarker | 483 | timeMarker->setTime( QTime::currentTime() );//display timeMarker |
484 | timeMarker->raise(); //on top of all widgets | 484 | timeMarker->raise(); //on top of all widgets |
485 | if (this->date() == QDate::currentDate()) //only show timeMarker on current day | 485 | if (this->date() == QDate::currentDate()) //only show timeMarker on current day |
486 | timeMarker->show(); else timeMarker->hide(); | 486 | timeMarker->show(); else timeMarker->hide(); |
487 | 487 | ||
488 | setUpdatesEnabled( TRUE ); | 488 | setUpdatesEnabled( TRUE ); |
489 | return; | 489 | return; |
490 | } | 490 | } |
491 | 491 | ||
492 | DateBookDayWidget *DateBookDay::intersects( const DateBookDayWidget *item, const QRect &geom ) | 492 | DateBookDayWidget *DateBookDay::intersects( const DateBookDayWidget *item, const QRect &geom ) |
493 | { | 493 | { |
494 | int i = 0; | 494 | int i = 0; |
495 | DateBookDayWidget *w = widgetList.at(i); | 495 | DateBookDayWidget *w = widgetList.at(i); |
496 | int wCount = widgetList.count(); | 496 | int wCount = widgetList.count(); |
497 | while ( i < wCount && w != item ) { | 497 | while ( i < wCount && w != item ) { |
498 | if ( w->geometry().intersects( geom ) ) { | 498 | if ( w->geometry().intersects( geom ) ) { |
499 | return w; | 499 | return w; |
500 | } | 500 | } |
501 | w = widgetList.at(++i); | 501 | w = widgetList.at(++i); |
502 | } | 502 | } |
503 | 503 | ||
504 | return 0; | 504 | return 0; |
505 | } | 505 | } |
506 | 506 | ||
507 | 507 | ||
508 | QDate DateBookDay::date() const | 508 | QDate DateBookDay::date() const |
509 | { | 509 | { |
510 | return currDate; | 510 | return currDate; |
511 | } | 511 | } |
512 | 512 | ||
513 | void DateBookDay::setStartViewTime( int startHere ) | 513 | void DateBookDay::setStartViewTime( int startHere ) |
514 | { | 514 | { |
515 | startTime = startHere; | 515 | startTime = startHere; |
516 | dayView()->clearSelection(); | 516 | dayView()->clearSelection(); |
517 | QTableSelection ts; | 517 | QTableSelection ts; |
518 | 518 | ||
519 | if (jumpToCurTime && this->date() == QDate::currentDate())//this should probably be in datebook.cpp where it's called? | 519 | if (jumpToCurTime && this->date() == QDate::currentDate())//this should probably be in datebook.cpp where it's called? |
520 | { | 520 | { |
521 | ts.init( QTime::currentTime().hour(), 0); | 521 | ts.init( QTime::currentTime().hour(), 0); |
522 | ts.expandTo( QTime::currentTime().hour(), 0); | 522 | ts.expandTo( QTime::currentTime().hour(), 0); |
523 | } else | 523 | } else |
524 | { | 524 | { |
525 | ts.init( startTime, 0 ); | 525 | ts.init( startTime, 0 ); |
526 | ts.expandTo( startTime, 0 ); | 526 | ts.expandTo( startTime, 0 ); |
527 | } | 527 | } |
528 | 528 | ||
529 | dayView()->addSelection( ts ); | 529 | dayView()->addSelection( ts ); |
530 | } | 530 | } |
531 | 531 | ||
532 | int DateBookDay::startViewTime() const | 532 | int DateBookDay::startViewTime() const |
533 | { | 533 | { |
534 | return startTime; | 534 | return startTime; |
535 | } | 535 | } |
536 | 536 | ||
537 | void DateBookDay::slotWeekChanged( bool bStartOnMonday ) | 537 | void DateBookDay::slotWeekChanged( bool bStartOnMonday ) |
538 | { | 538 | { |
539 | header->setStartOfWeek( bStartOnMonday ); | 539 | header->setStartOfWeek( bStartOnMonday ); |
540 | // redraw(); | 540 | // redraw(); |
541 | } | 541 | } |
542 | 542 | ||
543 | void DateBookDay::keyPressEvent(QKeyEvent *e) | 543 | void DateBookDay::keyPressEvent(QKeyEvent *e) |
544 | { | 544 | { |
545 | switch(e->key()) { | 545 | switch(e->key()) { |
546 | case Key_Up: | 546 | case Key_Up: |
547 | view->moveUp(); | 547 | view->moveUp(); |
548 | break; | 548 | break; |
549 | case Key_Down: | 549 | case Key_Down: |
550 | view->moveDown(); | 550 | view->moveDown(); |
551 | break; | 551 | break; |
552 | case Key_Left: | 552 | case Key_Left: |
553 | setDate(QDate(currDate).addDays(-1)); | 553 | setDate(QDate(currDate).addDays(-1)); |
554 | break; | 554 | break; |
555 | case Key_Right: | 555 | case Key_Right: |
556 | setDate(QDate(currDate).addDays(1)); | 556 | setDate(QDate(currDate).addDays(1)); |
557 | break; | 557 | break; |
558 | default: | 558 | default: |
559 | e->ignore(); | 559 | e->ignore(); |
560 | } | 560 | } |
561 | } | 561 | } |
562 | 562 | ||
563 | //=========================================================================== | 563 | //=========================================================================== |
564 | 564 | ||
565 | DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e, | 565 | DateBookDayWidget::DateBookDayWidget( const EffectiveEvent &e, |
566 | DateBookDay *db ) | 566 | DateBookDay *db ) |
567 | : QWidget( db->dayView()->viewport() ), ev( e ), dateBook( db ) | 567 | : QWidget( db->dayView()->viewport() ), ev( e ), dateBook( db ) |
568 | { | 568 | { |
569 | bool whichClock = db->dayView()->whichClock(); | 569 | |
570 | 570 | ||
571 | // why would someone use "<"? Oh well, fix it up... | 571 | // why would someone use "<"? Oh well, fix it up... |
572 | // I wonder what other things may be messed up... | 572 | // I wonder what other things may be messed up... |
573 | QString strDesc = ev.description(); | 573 | QString strDesc = ev.description(); |
574 | int where = strDesc.find( "<" ); | 574 | int where = strDesc.find( "<" ); |
575 | while ( where != -1 ) { | 575 | while ( where != -1 ) { |
576 | strDesc.remove( where, 1 ); | 576 | strDesc.remove( where, 1 ); |
577 | strDesc.insert( where, "<" ); | 577 | strDesc.insert( where, "<" ); |
578 | where = strDesc.find( "<", where ); | 578 | where = strDesc.find( "<", where ); |
579 | } | 579 | } |
580 | 580 | ||
581 | QString strCat; | 581 | QString strCat; |
582 | // ### Fix later... | 582 | // ### Fix later... |
583 | // QString strCat = ev.category(); | 583 | // QString strCat = ev.category(); |
584 | // where = strCat.find( "<" ); | 584 | // where = strCat.find( "<" ); |
585 | // while ( where != -1 ) { | 585 | // while ( where != -1 ) { |
586 | // strCat.remove( where, 1 ); | 586 | // strCat.remove( where, 1 ); |
587 | // strCat.insert( where, "<" ); | 587 | // strCat.insert( where, "<" ); |
588 | // where = strCat.find( "<", where ); | 588 | // where = strCat.find( "<", where ); |
589 | // } | 589 | // } |
590 | 590 | ||
591 | QString strNote = ev.notes(); | 591 | QString strNote = ev.notes(); |
592 | where = strNote.find( "<" ); | 592 | where = strNote.find( "<" ); |
593 | while ( where != -1 ) { | 593 | while ( where != -1 ) { |
594 | strNote.remove( where, 1 ); | 594 | strNote.remove( where, 1 ); |
595 | strNote.insert( where, "<" ); | 595 | strNote.insert( where, "<" ); |
596 | where = strNote.find( "<", where ); | 596 | where = strNote.find( "<", where ); |
597 | } | 597 | } |
598 | 598 | ||
599 | text = "<b>" + strDesc + "</b><br>" + "<i>" | 599 | text = "<b>" + strDesc + "</b><br>" + "<i>" |
600 | + strCat + "</i>" | 600 | + strCat + "</i><br>"; |
601 | + "<br><b>" + tr("Start") + "</b>: "; | 601 | if (ev.event().type() == Event::Normal ) |
602 | 602 | setEventText( text ); | |
603 | 603 | else | |
604 | if ( e.startDate() != ev.date() ) { | 604 | setAllDayText( text ); |
605 | // multi-day event. Show start date | ||
606 | text += TimeString::longDateString( e.startDate() ); | ||
607 | } else { | ||
608 | // Show start time. | ||
609 | text += TimeString::timeString( ev.start(), whichClock, FALSE ); | ||
610 | } | ||
611 | 605 | ||
612 | text += "<br><b>" + tr("End") + "</b>: "; | ||
613 | if ( e.endDate() != ev.date() ) { | ||
614 | // multi-day event. Show end date | ||
615 | text += TimeString::longDateString( e.endDate() ); | ||
616 | } else { | ||
617 | // Show end time. | ||
618 | text += TimeString::timeString( ev.end(), whichClock, FALSE ); | ||
619 | } | ||
620 | text += "<br><br>" + strNote; | 606 | text += "<br><br>" + strNote; |
607 | |||
621 | setBackgroundMode( PaletteBase ); | 608 | setBackgroundMode( PaletteBase ); |
622 | 609 | ||
623 | QTime start = ev.start(); | 610 | QTime start = ev.start(); |
624 | QTime end = ev.end(); | 611 | QTime end = ev.end(); |
625 | int y = start.hour()*60+start.minute(); | 612 | int y = start.hour()*60+start.minute(); |
626 | int h = end.hour()*60+end.minute()-y; | 613 | int h = end.hour()*60+end.minute()-y; |
627 | int rh = dateBook->dayView()->rowHeight(0); | 614 | int rh = dateBook->dayView()->rowHeight(0); |
628 | y = y*rh/60; | 615 | y = y*rh/60; |
629 | h = h*rh/60; | 616 | h = h*rh/60; |
630 | if ( h < 3 ) | 617 | if ( h < 3 ) |
631 | h = 3; | 618 | h = 3; |
632 | geom.setY( y ); | 619 | geom.setY( y ); |
633 | geom.setHeight( h ); | 620 | geom.setHeight( h ); |
634 | geom.setX( 0 ); | 621 | geom.setX( 0 ); |
635 | geom.setWidth(dateBook->dayView()->columnWidth(0)-1); | 622 | geom.setWidth(dateBook->dayView()->columnWidth(0)-1); |
636 | 623 | ||
637 | } | 624 | } |
625 | void DateBookDayWidget::setAllDayText( QString &text ) { | ||
626 | text += "<b>" + tr("This is an all day event.") + "</b><br>"; | ||
627 | } | ||
628 | void DateBookDayWidget::setEventText( QString& text ) { | ||
629 | bool whichClock = dateBook->dayView()->whichClock(); | ||
630 | text += "<b>" + tr("Start") + "</b>: "; | ||
631 | if ( ev.startDate() != ev.date() ) { | ||
632 | // multi-day event. Show start date | ||
633 | text += TimeString::longDateString( ev.startDate() ); | ||
634 | } else { | ||
635 | // Show start time. | ||
636 | text += TimeString::timeString( ev.start(), whichClock, FALSE ); | ||
637 | } | ||
638 | |||
639 | text += "<br><b>" + tr("End") + "</b>: "; | ||
640 | if ( ev.endDate() != ev.date() ) { | ||
641 | // multi-day event. Show end date | ||
642 | text += TimeString::longDateString( ev.endDate() ); | ||
643 | } else { | ||
644 | // Show end time. | ||
645 | text += TimeString::timeString( ev.end(), whichClock, FALSE ); | ||
646 | } | ||
647 | |||
648 | } | ||
638 | 649 | ||
639 | DateBookDayWidget::~DateBookDayWidget() | 650 | DateBookDayWidget::~DateBookDayWidget() |
640 | { | 651 | { |
641 | } | 652 | } |
642 | 653 | ||
643 | void DateBookDayWidget::paintEvent( QPaintEvent *e ) | 654 | void DateBookDayWidget::paintEvent( QPaintEvent *e ) |
644 | { | 655 | { |
645 | QPainter p( this ); | 656 | QPainter p( this ); |
646 | 657 | ||
647 | if (dateBook->getSelectedWidget() == this) | 658 | if (dateBook->getSelectedWidget() == this) |
648 | { | 659 | { |
649 | p.setBrush( QColor( 155, 240, 230 ) ); // selected item | 660 | p.setBrush( QColor( 155, 240, 230 ) ); // selected item |
650 | } else | 661 | } else |
651 | { | 662 | { |
652 | if (dateBook->date() == QDate::currentDate()) | 663 | if (dateBook->date() == QDate::currentDate()) |
653 | { | 664 | { |
654 | QTime curTime = QTime::currentTime(); | 665 | QTime curTime = QTime::currentTime(); |
655 | 666 | ||
656 | if (ev.end() < curTime) | 667 | if (ev.end() < curTime) |
657 | { | 668 | { |
658 | p.setBrush( QColor( 180, 180, 180 ) ); // grey, inactive | 669 | p.setBrush( QColor( 180, 180, 180 ) ); // grey, inactive |
659 | } else | 670 | } else |
660 | { | 671 | { |
661 | //change color in dependence of the time till the event starts | 672 | //change color in dependence of the time till the event starts |
662 | int duration = curTime.secsTo(ev.start()); | 673 | int duration = curTime.secsTo(ev.start()); |
663 | if (duration < 0) duration = 0; | 674 | if (duration < 0) duration = 0; |
664 | int colChange = duration*160/86400; //86400: secs per day, 160: max color shift | 675 | int colChange = duration*160/86400; //86400: secs per day, 160: max color shift |
665 | 676 | ||
666 | p.setBrush( QColor( 200-colChange, 200-colChange, 255 ) ); //blue | 677 | p.setBrush( QColor( 200-colChange, 200-colChange, 255 ) ); //blue |
667 | } | 678 | } |
668 | } else | 679 | } else |
669 | { | 680 | { |
670 | p.setBrush( QColor( 220, 220, 220 ) ); //light grey, inactive (not current date) | 681 | p.setBrush( QColor( 220, 220, 220 ) ); //light grey, inactive (not current date) |
671 | //perhaps make a distinction between future/past dates | 682 | //perhaps make a distinction between future/past dates |
672 | } | 683 | } |
673 | } | 684 | } |
674 | 685 | ||
675 | p.setPen( QColor(100, 100, 100) ); | 686 | p.setPen( QColor(100, 100, 100) ); |
676 | p.drawRect(rect()); | 687 | p.drawRect(rect()); |
677 | 688 | ||
678 | // p.drawRect(0,0, 5, height()); | 689 | // p.drawRect(0,0, 5, height()); |
679 | 690 | ||
680 | int y = 0; | 691 | int y = 0; |
681 | int d = 0; | 692 | int d = 0; |
682 | 693 | ||
683 | if ( ev.event().hasAlarm() ) { | 694 | if ( ev.event().hasAlarm() ) { |
684 | p.drawPixmap( width() - 16, 0, Resource::loadPixmap( "bell" ) ); | 695 | p.drawPixmap( width() - 16, 0, Resource::loadPixmap( "bell" ) ); |
685 | y = 20; | 696 | y = 20; |
686 | d = 20; | 697 | d = 20; |
687 | } | 698 | } |
688 | 699 | ||
689 | if ( ev.event().hasRepeat() ) { | 700 | if ( ev.event().hasRepeat() ) { |
690 | p.drawPixmap( width() - 16, y, Resource::loadPixmap( "repeat" ) ); | 701 | p.drawPixmap( width() - 16, y, Resource::loadPixmap( "repeat" ) ); |
691 | d = 20; | 702 | d = 20; |
703 | y += 20; | ||
692 | } | 704 | } |
693 | 705 | ||
694 | QSimpleRichText rt( text, font() ); | 706 | QSimpleRichText rt( text, font() ); |
695 | rt.setWidth( geom.width() - d - 6 ); | 707 | rt.setWidth( geom.width() - d - 6 ); |
696 | rt.draw( &p, 7, 0, e->region(), colorGroup() ); | 708 | rt.draw( &p, 7, 0, e->region(), colorGroup() ); |
697 | } | 709 | } |
698 | 710 | ||
699 | void DateBookDayWidget::mousePressEvent( QMouseEvent *e ) | 711 | void DateBookDayWidget::mousePressEvent( QMouseEvent *e ) |
700 | { | 712 | { |
701 | DateBookDayWidget *item; | 713 | DateBookDayWidget *item; |
702 | 714 | ||
703 | item = dateBook->getSelectedWidget(); | 715 | item = dateBook->getSelectedWidget(); |
704 | if (item) item->update(); | 716 | if (item) item->update(); |
705 | 717 | ||
706 | dateBook->setSelectedWidget(this); | 718 | dateBook->setSelectedWidget(this); |
707 | update(); | 719 | update(); |
708 | dateBook->repaint(); | 720 | dateBook->repaint(); |
709 | 721 | ||
710 | QPopupMenu m; | 722 | QPopupMenu m; |
711 | m.insertItem( tr( "Edit" ), 1 ); | 723 | m.insertItem( tr( "Edit" ), 1 ); |
712 | m.insertItem( tr( "Delete" ), 2 ); | 724 | m.insertItem( tr( "Delete" ), 2 ); |
713 | m.insertItem( tr( "Beam" ), 3 ); | 725 | m.insertItem( tr( "Beam" ), 3 ); |
714 | int r = m.exec( e->globalPos() ); | 726 | int r = m.exec( e->globalPos() ); |
715 | if ( r == 1 ) { | 727 | if ( r == 1 ) { |
716 | emit editMe( ev.event() ); | 728 | emit editMe( ev.event() ); |
717 | } else if ( r == 2 ) { | 729 | } else if ( r == 2 ) { |
718 | emit deleteMe( ev.event() ); | 730 | emit deleteMe( ev.event() ); |
719 | } else if ( r == 3 ) { | 731 | } else if ( r == 3 ) { |
720 | emit beamMe( ev.event() ); | 732 | emit beamMe( ev.event() ); |
721 | } | 733 | } |
722 | } | 734 | } |
723 | 735 | ||
724 | void DateBookDayWidget::setGeometry( const QRect &r ) | 736 | void DateBookDayWidget::setGeometry( const QRect &r ) |
725 | { | 737 | { |
726 | geom = r; | 738 | geom = r; |
727 | setFixedSize( r.width()+1, r.height()+1 ); | 739 | setFixedSize( r.width()+1, r.height()+1 ); |
728 | dateBook->dayView()->moveChild( this, r.x(), r.y()-1 ); | 740 | dateBook->dayView()->moveChild( this, r.x(), r.y()-1 ); |
729 | show(); | 741 | show(); |
730 | } | 742 | } |
731 | 743 | ||
732 | 744 | ||
733 | //--------------------------------------------------------------------------------------------- | 745 | //--------------------------------------------------------------------------------------------- |
734 | //--------------------------------------------------------------------------------------------- | 746 | //--------------------------------------------------------------------------------------------- |
735 | 747 | ||
736 | 748 | ||
737 | DateBookDayTimeMarker::DateBookDayTimeMarker( DateBookDay *db ) | 749 | DateBookDayTimeMarker::DateBookDayTimeMarker( DateBookDay *db ) |
738 | : QWidget( db->dayView()->viewport() ), dateBook( db ) | 750 | : QWidget( db->dayView()->viewport() ), dateBook( db ) |
739 | { | 751 | { |
740 | setBackgroundMode( PaletteBase ); | 752 | setBackgroundMode( PaletteBase ); |
741 | } | 753 | } |
742 | 754 | ||
743 | DateBookDayTimeMarker::~DateBookDayTimeMarker() | 755 | DateBookDayTimeMarker::~DateBookDayTimeMarker() |
744 | { | 756 | { |
745 | } | 757 | } |
746 | 758 | ||
747 | void DateBookDayTimeMarker::paintEvent( QPaintEvent */*e*/ ) | 759 | void DateBookDayTimeMarker::paintEvent( QPaintEvent */*e*/ ) |
748 | { | 760 | { |
749 | QPainter p( this ); | 761 | QPainter p( this ); |
750 | p.setBrush( QColor( 255, 0, 0 ) ); | 762 | p.setBrush( QColor( 255, 0, 0 ) ); |
751 | 763 | ||
752 | QPen pen; | 764 | QPen pen; |
753 | pen.setStyle(NoPen); | 765 | pen.setStyle(NoPen); |
754 | 766 | ||
755 | p.setPen( pen ); | 767 | p.setPen( pen ); |
756 | p.drawRect(rect()); | 768 | p.drawRect(rect()); |
757 | } | 769 | } |
758 | 770 | ||
759 | void DateBookDayTimeMarker::setTime( const QTime &t ) | 771 | void DateBookDayTimeMarker::setTime( const QTime &t ) |
760 | { | 772 | { |
761 | int y = t.hour()*60+t.minute(); | 773 | int y = t.hour()*60+t.minute(); |
762 | int rh = dateBook->dayView()->rowHeight(0); | 774 | int rh = dateBook->dayView()->rowHeight(0); |
763 | y = y*rh/60; | 775 | y = y*rh/60; |
764 | 776 | ||
765 | geom.setX( 0 ); | 777 | geom.setX( 0 ); |
766 | 778 | ||
767 | int x = dateBook->dayView()->columnWidth(0)-1; | 779 | int x = dateBook->dayView()->columnWidth(0)-1; |
768 | geom.setWidth( x ); | 780 | geom.setWidth( x ); |
769 | 781 | ||
770 | geom.setY( y ); | 782 | geom.setY( y ); |
771 | geom.setHeight( 1 ); | 783 | geom.setHeight( 1 ); |
772 | 784 | ||
773 | setGeometry( geom ); | 785 | setGeometry( geom ); |
774 | 786 | ||
775 | time = t; | 787 | time = t; |
776 | } | 788 | } |
777 | 789 | ||
778 | void DateBookDayTimeMarker::setGeometry( const QRect &r ) | 790 | void DateBookDayTimeMarker::setGeometry( const QRect &r ) |
779 | { | 791 | { |
780 | geom = r; | 792 | geom = r; |
781 | setFixedSize( r.width()+1, r.height()+1 ); | 793 | setFixedSize( r.width()+1, r.height()+1 ); |
782 | dateBook->dayView()->moveChild( this, r.x(), r.y()-1 ); | 794 | dateBook->dayView()->moveChild( this, r.x(), r.y()-1 ); |
783 | show(); | 795 | show(); |
784 | } | 796 | } |
diff --git a/core/pim/datebook/datebookday.h b/core/pim/datebook/datebookday.h index be7cc45..db1cd04 100644 --- a/core/pim/datebook/datebookday.h +++ b/core/pim/datebook/datebookday.h | |||
@@ -1,194 +1,205 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef DATEBOOKDAY_H | 20 | #ifndef DATEBOOKDAY_H |
21 | #define DATEBOOKDAY_H | 21 | #define DATEBOOKDAY_H |
22 | 22 | ||
23 | #include <qpe/event.h> | 23 | #include <qpe/event.h> |
24 | 24 | ||
25 | #include <qdatetime.h> | 25 | #include <qdatetime.h> |
26 | #include <qtable.h> | 26 | #include <qtable.h> |
27 | #include <qvbox.h> | 27 | #include <qvbox.h> |
28 | #include <qlist.h> | 28 | #include <qlist.h> |
29 | 29 | ||
30 | class DateBookDayHeader; | 30 | class DateBookDayHeader; |
31 | class DateBookDB; | 31 | class DateBookDB; |
32 | class QDateTime; | 32 | class QDateTime; |
33 | class QMouseEvent; | 33 | class QMouseEvent; |
34 | class QPaintEvent; | 34 | class QPaintEvent; |
35 | class QResizeEvent; | 35 | class QResizeEvent; |
36 | 36 | ||
37 | class DateBookDayView : public QTable | 37 | class DateBookDayView : public QTable |
38 | { | 38 | { |
39 | Q_OBJECT | 39 | Q_OBJECT |
40 | public: | 40 | public: |
41 | DateBookDayView( bool hourClock, QWidget *parent, const char *name ); | 41 | DateBookDayView( bool hourClock, QWidget *parent, const char *name ); |
42 | bool whichClock() const; | 42 | bool whichClock() const; |
43 | 43 | ||
44 | void setRowStyle( int style ); | 44 | void setRowStyle( int style ); |
45 | 45 | ||
46 | public slots: | 46 | public slots: |
47 | void moveUp(); | 47 | void moveUp(); |
48 | void moveDown(); | 48 | void moveDown(); |
49 | 49 | ||
50 | signals: | 50 | signals: |
51 | void sigColWidthChanged(); | 51 | void sigColWidthChanged(); |
52 | void sigCapturedKey( const QString &txt ); | 52 | void sigCapturedKey( const QString &txt ); |
53 | protected slots: | 53 | protected slots: |
54 | void slotChangeClock( bool ); | 54 | void slotChangeClock( bool ); |
55 | protected: | 55 | protected: |
56 | virtual void paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected ); | 56 | virtual void paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected ); |
57 | virtual void paintFocus( QPainter *p, const QRect &cr ); | 57 | virtual void paintFocus( QPainter *p, const QRect &cr ); |
58 | 58 | ||
59 | virtual void resizeEvent( QResizeEvent *e ); | 59 | virtual void resizeEvent( QResizeEvent *e ); |
60 | void keyPressEvent( QKeyEvent *e ); | 60 | void keyPressEvent( QKeyEvent *e ); |
61 | void initHeader(); | 61 | void initHeader(); |
62 | private: | 62 | private: |
63 | bool ampm; | 63 | bool ampm; |
64 | }; | 64 | }; |
65 | 65 | ||
66 | class DateBookDay; | 66 | class DateBookDay; |
67 | class DateBookDayWidget : public QWidget | 67 | class DateBookDayWidget : public QWidget |
68 | { | 68 | { |
69 | Q_OBJECT | 69 | Q_OBJECT |
70 | 70 | ||
71 | public: | 71 | public: |
72 | DateBookDayWidget( const EffectiveEvent &e, DateBookDay *db ); | 72 | DateBookDayWidget( const EffectiveEvent &e, DateBookDay *db ); |
73 | ~DateBookDayWidget(); | 73 | ~DateBookDayWidget(); |
74 | 74 | ||
75 | const QRect &geometry() { return geom; } | 75 | const QRect &geometry() { return geom; } |
76 | void setGeometry( const QRect &r ); | 76 | void setGeometry( const QRect &r ); |
77 | 77 | ||
78 | const EffectiveEvent &event() const { return ev; } | 78 | const EffectiveEvent &event() const { return ev; } |
79 | 79 | ||
80 | signals: | 80 | signals: |
81 | void deleteMe( const Event &e ); | 81 | void deleteMe( const Event &e ); |
82 | void editMe( const Event &e ); | 82 | void editMe( const Event &e ); |
83 | void beamMe( const Event &e ); | 83 | void beamMe( const Event &e ); |
84 | 84 | ||
85 | protected: | 85 | protected: |
86 | void paintEvent( QPaintEvent *e ); | 86 | void paintEvent( QPaintEvent *e ); |
87 | void mousePressEvent( QMouseEvent *e ); | 87 | void mousePressEvent( QMouseEvent *e ); |
88 | 88 | ||
89 | private: | 89 | private: |
90 | /** | ||
91 | * Sets the text for an all day Event | ||
92 | * All day events have no time associated | ||
93 | */ | ||
94 | void setAllDayText( QString& text ); | ||
95 | |||
96 | /** | ||
97 | * Sets the EventText | ||
98 | * it got a start and an end Time | ||
99 | */ | ||
100 | void setEventText( QString& text ); | ||
90 | const EffectiveEvent ev; | 101 | const EffectiveEvent ev; |
91 | DateBookDay *dateBook; | 102 | DateBookDay *dateBook; |
92 | QString text; | 103 | QString text; |
93 | QRect geom; | 104 | QRect geom; |
94 | }; | 105 | }; |
95 | 106 | ||
96 | //Marker for current time in the dayview | 107 | //Marker for current time in the dayview |
97 | class DateBookDayTimeMarker : public QWidget | 108 | class DateBookDayTimeMarker : public QWidget |
98 | { | 109 | { |
99 | Q_OBJECT | 110 | Q_OBJECT |
100 | 111 | ||
101 | public: | 112 | public: |
102 | DateBookDayTimeMarker( DateBookDay *db ); | 113 | DateBookDayTimeMarker( DateBookDay *db ); |
103 | ~DateBookDayTimeMarker(); | 114 | ~DateBookDayTimeMarker(); |
104 | 115 | ||
105 | const QRect &geometry() { return geom; } | 116 | const QRect &geometry() { return geom; } |
106 | void setGeometry( const QRect &r ); | 117 | void setGeometry( const QRect &r ); |
107 | void setTime( const QTime &t ); | 118 | void setTime( const QTime &t ); |
108 | 119 | ||
109 | signals: | 120 | signals: |
110 | 121 | ||
111 | protected: | 122 | protected: |
112 | void paintEvent( QPaintEvent *e ); | 123 | void paintEvent( QPaintEvent *e ); |
113 | 124 | ||
114 | private: | 125 | private: |
115 | QRect geom; | 126 | QRect geom; |
116 | QTime time; | 127 | QTime time; |
117 | DateBookDay *dateBook; | 128 | DateBookDay *dateBook; |
118 | }; | 129 | }; |
119 | 130 | ||
120 | //reimplemented the compareItems function so that it sorts DayWidgets by geometry heights | 131 | //reimplemented the compareItems function so that it sorts DayWidgets by geometry heights |
121 | class WidgetListClass : public QList<DateBookDayWidget> | 132 | class WidgetListClass : public QList<DateBookDayWidget> |
122 | { | 133 | { |
123 | private: | 134 | private: |
124 | 135 | ||
125 | int compareItems( QCollection::Item s1, QCollection::Item s2 ) | 136 | int compareItems( QCollection::Item s1, QCollection::Item s2 ) |
126 | { | 137 | { |
127 | //hmm, don't punish me for that ;) | 138 | //hmm, don't punish me for that ;) |
128 | if (reinterpret_cast<DateBookDayWidget*>(s1)->geometry().height() > reinterpret_cast<DateBookDayWidget*>(s2)->geometry().height()) | 139 | if (reinterpret_cast<DateBookDayWidget*>(s1)->geometry().height() > reinterpret_cast<DateBookDayWidget*>(s2)->geometry().height()) |
129 | { | 140 | { |
130 | return -1; | 141 | return -1; |
131 | } else | 142 | } else |
132 | { | 143 | { |
133 | return 1; | 144 | return 1; |
134 | } | 145 | } |
135 | } | 146 | } |
136 | 147 | ||
137 | 148 | ||
138 | }; | 149 | }; |
139 | 150 | ||
140 | class DateBookDay : public QVBox | 151 | class DateBookDay : public QVBox |
141 | { | 152 | { |
142 | Q_OBJECT | 153 | Q_OBJECT |
143 | 154 | ||
144 | public: | 155 | public: |
145 | DateBookDay( bool ampm, bool startOnMonday, DateBookDB *newDb, | 156 | DateBookDay( bool ampm, bool startOnMonday, DateBookDB *newDb, |
146 | QWidget *parent, const char *name ); | 157 | QWidget *parent, const char *name ); |
147 | void selectedDates( QDateTime &start, QDateTime &end ); | 158 | void selectedDates( QDateTime &start, QDateTime &end ); |
148 | QDate date() const; | 159 | QDate date() const; |
149 | DateBookDayView *dayView() const { return view; } | 160 | DateBookDayView *dayView() const { return view; } |
150 | void setStartViewTime( int startHere ); | 161 | void setStartViewTime( int startHere ); |
151 | int startViewTime() const; | 162 | int startViewTime() const; |
152 | void setSelectedWidget( DateBookDayWidget * ); | 163 | void setSelectedWidget( DateBookDayWidget * ); |
153 | DateBookDayWidget * getSelectedWidget( void ); | 164 | DateBookDayWidget * getSelectedWidget( void ); |
154 | void setJumpToCurTime( bool bJump ); | 165 | void setJumpToCurTime( bool bJump ); |
155 | void setRowStyle( int style ); | 166 | void setRowStyle( int style ); |
156 | 167 | ||
157 | public slots: | 168 | public slots: |
158 | void setDate( int y, int m, int d ); | 169 | void setDate( int y, int m, int d ); |
159 | void setDate( QDate ); | 170 | void setDate( QDate ); |
160 | void redraw(); | 171 | void redraw(); |
161 | void slotWeekChanged( bool bStartOnMonday ); | 172 | void slotWeekChanged( bool bStartOnMonday ); |
162 | void updateView();//updates TimeMarker and DayWidget-colors | 173 | void updateView();//updates TimeMarker and DayWidget-colors |
163 | 174 | ||
164 | signals: | 175 | signals: |
165 | void removeEvent( const Event& ); | 176 | void removeEvent( const Event& ); |
166 | void editEvent( const Event& ); | 177 | void editEvent( const Event& ); |
167 | void beamEvent( const Event& ); | 178 | void beamEvent( const Event& ); |
168 | void newEvent(); | 179 | void newEvent(); |
169 | void sigNewEvent( const QString & ); | 180 | void sigNewEvent( const QString & ); |
170 | 181 | ||
171 | protected slots: | 182 | protected slots: |
172 | void keyPressEvent(QKeyEvent *); | 183 | void keyPressEvent(QKeyEvent *); |
173 | 184 | ||
174 | private slots: | 185 | private slots: |
175 | void dateChanged( int y, int m, int d ); | 186 | void dateChanged( int y, int m, int d ); |
176 | void slotColWidthChanged() { relayoutPage(); }; | 187 | void slotColWidthChanged() { relayoutPage(); }; |
177 | 188 | ||
178 | private: | 189 | private: |
179 | void getEvents(); | 190 | void getEvents(); |
180 | void relayoutPage( bool fromResize = false ); | 191 | void relayoutPage( bool fromResize = false ); |
181 | DateBookDayWidget *intersects( const DateBookDayWidget *item, const QRect &geom ); | 192 | DateBookDayWidget *intersects( const DateBookDayWidget *item, const QRect &geom ); |
182 | QDate currDate; | 193 | QDate currDate; |
183 | DateBookDayView *view; | 194 | DateBookDayView *view; |
184 | DateBookDayHeader *header; | 195 | DateBookDayHeader *header; |
185 | DateBookDB *db; | 196 | DateBookDB *db; |
186 | WidgetListClass widgetList;//reimplemented QList for sorting widgets by height | 197 | WidgetListClass widgetList;//reimplemented QList for sorting widgets by height |
187 | int startTime; | 198 | int startTime; |
188 | bool jumpToCurTime;//should we jump to current time in dayview? | 199 | bool jumpToCurTime;//should we jump to current time in dayview? |
189 | int rowStyle; | 200 | int rowStyle; |
190 | DateBookDayWidget *selectedWidget; //actual selected widget (obviously) | 201 | DateBookDayWidget *selectedWidget; //actual selected widget (obviously) |
191 | DateBookDayTimeMarker *timeMarker;//marker for current time | 202 | DateBookDayTimeMarker *timeMarker;//marker for current time |
192 | }; | 203 | }; |
193 | 204 | ||
194 | #endif | 205 | #endif |
diff --git a/core/pim/datebook/datebookweek.cpp b/core/pim/datebook/datebookweek.cpp index 6532ba4..e16f516 100644 --- a/core/pim/datebook/datebookweek.cpp +++ b/core/pim/datebook/datebookweek.cpp | |||
@@ -368,246 +368,262 @@ DateBookWeek::DateBookWeek( bool ap, bool startOnMonday, DateBookDB *newDB, | |||
368 | this, SLOT( showDay( int ) ) ); | 368 | this, SLOT( showDay( int ) ) ); |
369 | connect( view, SIGNAL(signalShowEvent(const EffectiveEvent&)), | 369 | connect( view, SIGNAL(signalShowEvent(const EffectiveEvent&)), |
370 | this, SLOT(slotShowEvent(const EffectiveEvent&)) ); | 370 | this, SLOT(slotShowEvent(const EffectiveEvent&)) ); |
371 | connect( view, SIGNAL(signalHideEvent()), | 371 | connect( view, SIGNAL(signalHideEvent()), |
372 | this, SLOT(slotHideEvent()) ); | 372 | this, SLOT(slotHideEvent()) ); |
373 | connect( header, SIGNAL( dateChanged( int, int ) ), | 373 | connect( header, SIGNAL( dateChanged( int, int ) ), |
374 | this, SLOT( dateChanged( int, int ) ) ); | 374 | this, SLOT( dateChanged( int, int ) ) ); |
375 | connect( tHide, SIGNAL( timeout() ), | 375 | connect( tHide, SIGNAL( timeout() ), |
376 | lblDesc, SLOT( hide() ) ); | 376 | lblDesc, SLOT( hide() ) ); |
377 | connect( header->spinYear, SIGNAL(valueChanged(int)), | 377 | connect( header->spinYear, SIGNAL(valueChanged(int)), |
378 | this, SLOT(slotYearChanged(int)) ); | 378 | this, SLOT(slotYearChanged(int)) ); |
379 | connect( qApp, SIGNAL(weekChanged(bool)), | 379 | connect( qApp, SIGNAL(weekChanged(bool)), |
380 | this, SLOT(slotWeekChanged(bool)) ); | 380 | this, SLOT(slotWeekChanged(bool)) ); |
381 | connect( qApp, SIGNAL(clockChanged(bool)), | 381 | connect( qApp, SIGNAL(clockChanged(bool)), |
382 | this, SLOT(slotClockChanged(bool))); | 382 | this, SLOT(slotClockChanged(bool))); |
383 | setDate(QDate::currentDate()); | 383 | setDate(QDate::currentDate()); |
384 | 384 | ||
385 | } | 385 | } |
386 | 386 | ||
387 | void DateBookWeek::keyPressEvent(QKeyEvent *e) | 387 | void DateBookWeek::keyPressEvent(QKeyEvent *e) |
388 | { | 388 | { |
389 | switch(e->key()) { | 389 | switch(e->key()) { |
390 | case Key_Up: | 390 | case Key_Up: |
391 | view->scrollBy(0, -20); | 391 | view->scrollBy(0, -20); |
392 | break; | 392 | break; |
393 | case Key_Down: | 393 | case Key_Down: |
394 | view->scrollBy(0, 20); | 394 | view->scrollBy(0, 20); |
395 | break; | 395 | break; |
396 | case Key_Left: | 396 | case Key_Left: |
397 | setDate(date().addDays(-7)); | 397 | setDate(date().addDays(-7)); |
398 | break; | 398 | break; |
399 | case Key_Right: | 399 | case Key_Right: |
400 | setDate(date().addDays(7)); | 400 | setDate(date().addDays(7)); |
401 | break; | 401 | break; |
402 | default: | 402 | default: |
403 | e->ignore(); | 403 | e->ignore(); |
404 | } | 404 | } |
405 | } | 405 | } |
406 | 406 | ||
407 | void DateBookWeek::showDay( int day ) | 407 | void DateBookWeek::showDay( int day ) |
408 | { | 408 | { |
409 | QDate d; | 409 | QDate d; |
410 | d = dateFromWeek( _week, year, bStartOnMonday ); | 410 | d = dateFromWeek( _week, year, bStartOnMonday ); |
411 | day--; | 411 | day--; |
412 | d = d.addDays( day ); | 412 | d = d.addDays( day ); |
413 | emit showDate( d.year(), d.month(), d.day() ); | 413 | emit showDate( d.year(), d.month(), d.day() ); |
414 | } | 414 | } |
415 | 415 | ||
416 | void DateBookWeek::setDate( int y, int m, int d ) | 416 | void DateBookWeek::setDate( int y, int m, int d ) |
417 | { | 417 | { |
418 | QDate date; | 418 | QDate date; |
419 | date.setYMD( y, m, d ); | 419 | date.setYMD( y, m, d ); |
420 | setDate(QDate(y, m, d)); | 420 | setDate(QDate(y, m, d)); |
421 | } | 421 | } |
422 | 422 | ||
423 | void DateBookWeek::setDate(QDate date) | 423 | void DateBookWeek::setDate(QDate date) |
424 | { | 424 | { |
425 | dow = date.dayOfWeek(); | 425 | dow = date.dayOfWeek(); |
426 | int w, y; | 426 | int w, y; |
427 | calcWeek( date, w, y, bStartOnMonday ); | 427 | calcWeek( date, w, y, bStartOnMonday ); |
428 | header->setDate( y, w ); | 428 | header->setDate( y, w ); |
429 | } | 429 | } |
430 | 430 | ||
431 | void DateBookWeek::dateChanged( int y, int w ) | 431 | void DateBookWeek::dateChanged( int y, int w ) |
432 | { | 432 | { |
433 | year = y; | 433 | year = y; |
434 | _week = w; | 434 | _week = w; |
435 | getEvents(); | 435 | getEvents(); |
436 | } | 436 | } |
437 | 437 | ||
438 | QDate DateBookWeek::date() const | 438 | QDate DateBookWeek::date() const |
439 | { | 439 | { |
440 | QDate d; | 440 | QDate d; |
441 | d = dateFromWeek( _week - 1, year, bStartOnMonday ); | 441 | d = dateFromWeek( _week - 1, year, bStartOnMonday ); |
442 | if ( bStartOnMonday ) | 442 | if ( bStartOnMonday ) |
443 | d = d.addDays( 7 + dow - 1 ); | 443 | d = d.addDays( 7 + dow - 1 ); |
444 | else { | 444 | else { |
445 | if ( dow == 7 ) | 445 | if ( dow == 7 ) |
446 | d = d.addDays( dow ); | 446 | d = d.addDays( dow ); |
447 | else | 447 | else |
448 | d = d.addDays( 7 + dow ); | 448 | d = d.addDays( 7 + dow ); |
449 | } | 449 | } |
450 | return d; | 450 | return d; |
451 | } | 451 | } |
452 | 452 | ||
453 | void DateBookWeek::getEvents() | 453 | void DateBookWeek::getEvents() |
454 | { | 454 | { |
455 | QDate startWeek = weekDate(); | 455 | QDate startWeek = weekDate(); |
456 | 456 | ||
457 | QDate endWeek = startWeek.addDays( 6 ); | 457 | QDate endWeek = startWeek.addDays( 6 ); |
458 | QValueList<EffectiveEvent> eventList = db->getEffectiveEvents(startWeek, | 458 | QValueList<EffectiveEvent> eventList = db->getEffectiveEvents(startWeek, |
459 | endWeek); | 459 | endWeek); |
460 | view->showEvents( eventList ); | 460 | view->showEvents( eventList ); |
461 | view->moveToHour( startTime ); | 461 | view->moveToHour( startTime ); |
462 | } | 462 | } |
463 | 463 | ||
464 | void DateBookWeek::generateAllDayTooltext( QString& text ) { | ||
465 | text += "<b>" + tr("This is an all day event.") + "</b><br>"; | ||
466 | } | ||
467 | |||
468 | void DateBookWeek::generateNormalTooltext( QString& str, | ||
469 | const EffectiveEvent &ev ) { | ||
470 | str += "<b>" + QObject::tr("Start") + "</b>: "; | ||
471 | |||
472 | if ( ev.startDate() != ev.date() ) { | ||
473 | // multi-day event. Show start date | ||
474 | str += TimeString::longDateString( ev.startDate() ); | ||
475 | } else { | ||
476 | // Show start time. | ||
477 | str += TimeString::timeString(ev.start(), ampm, FALSE ); | ||
478 | } | ||
479 | |||
480 | |||
481 | str += "<br><b>" + QObject::tr("End") + "</b>: "; | ||
482 | if ( ev.endDate() != ev.date() ) { | ||
483 | // multi-day event. Show end date | ||
484 | str += TimeString::longDateString( ev.endDate() ); | ||
485 | } else { | ||
486 | // Show end time. | ||
487 | str += TimeString::timeString( ev.end(), ampm, FALSE ); | ||
488 | } | ||
489 | } | ||
490 | |||
464 | void DateBookWeek::slotShowEvent( const EffectiveEvent &ev ) | 491 | void DateBookWeek::slotShowEvent( const EffectiveEvent &ev ) |
465 | { | 492 | { |
466 | if ( tHide->isActive() ) | 493 | if ( tHide->isActive() ) |
467 | tHide->stop(); | 494 | tHide->stop(); |
468 | 495 | ||
469 | // why would someone use "<"? Oh well, fix it up... | 496 | // why would someone use "<"? Oh well, fix it up... |
470 | // I wonder what other things may be messed up... | 497 | // I wonder what other things may be messed up... |
471 | QString strDesc = ev.description(); | 498 | QString strDesc = ev.description(); |
472 | int where = strDesc.find( "<" ); | 499 | int where = strDesc.find( "<" ); |
473 | while ( where != -1 ) { | 500 | while ( where != -1 ) { |
474 | strDesc.remove( where, 1 ); | 501 | strDesc.remove( where, 1 ); |
475 | strDesc.insert( where, "<" ); | 502 | strDesc.insert( where, "<" ); |
476 | where = strDesc.find( "<", where ); | 503 | where = strDesc.find( "<", where ); |
477 | } | 504 | } |
478 | 505 | ||
479 | QString strCat; | 506 | QString strCat; |
480 | // ### FIX later... | 507 | // ### FIX later... |
481 | // QString strCat = ev.category(); | 508 | // QString strCat = ev.category(); |
482 | // where = strCat.find( "<" ); | 509 | // where = strCat.find( "<" ); |
483 | // while ( where != -1 ) { | 510 | // while ( where != -1 ) { |
484 | // strCat.remove( where, 1 ); | 511 | // strCat.remove( where, 1 ); |
485 | // strCat.insert( where, "<" ); | 512 | // strCat.insert( where, "<" ); |
486 | // where = strCat.find( "<", where ); | 513 | // where = strCat.find( "<", where ); |
487 | // } | 514 | // } |
488 | 515 | ||
489 | QString strNote = ev.notes(); | 516 | QString strNote = ev.notes(); |
490 | where = strNote.find( "<" ); | 517 | where = strNote.find( "<" ); |
491 | while ( where != -1 ) { | 518 | while ( where != -1 ) { |
492 | strNote.remove( where, 1 ); | 519 | strNote.remove( where, 1 ); |
493 | strNote.insert( where, "<" ); | 520 | strNote.insert( where, "<" ); |
494 | where = strNote.find( "<", where ); | 521 | where = strNote.find( "<", where ); |
495 | } | 522 | } |
496 | 523 | ||
497 | QString str = "<b>" + strDesc + "</b><br>" + "<i>" | 524 | QString str = "<b>" + strDesc + "</b><br>" + "<i>" |
498 | + strCat + "</i>" | 525 | + strCat + "</i>" |
499 | + "<br>" + TimeString::longDateString( ev.date() ) | 526 | + "<br>" + TimeString::longDateString( ev.date() ) |
500 | + "<br><b>" + QObject::tr("Start") + "</b>: "; | 527 | + "<br>"; |
501 | 528 | ||
502 | if ( ev.startDate() != ev.date() ) { | 529 | if (ev.event().type() == Event::Normal ) |
503 | // multi-day event. Show start date | 530 | generateNormalTooltext( str, ev ); |
504 | str += TimeString::longDateString( ev.startDate() ); | 531 | else |
505 | } else { | 532 | generateAllDayTooltext( str ); |
506 | // Show start time. | ||
507 | str += TimeString::timeString(ev.start(), ampm, FALSE ); | ||
508 | } | ||
509 | 533 | ||
510 | str += "<br><b>" + QObject::tr("End") + "</b>: "; | ||
511 | if ( ev.endDate() != ev.date() ) { | ||
512 | // multi-day event. Show end date | ||
513 | str += TimeString::longDateString( ev.endDate() ); | ||
514 | } else { | ||
515 | // Show end time. | ||
516 | str += TimeString::timeString( ev.end(), ampm, FALSE ); | ||
517 | } | ||
518 | str += "<br><br>" + strNote; | 534 | str += "<br><br>" + strNote; |
519 | 535 | ||
520 | lblDesc->setText( str ); | 536 | lblDesc->setText( str ); |
521 | lblDesc->resize( lblDesc->sizeHint() ); | 537 | lblDesc->resize( lblDesc->sizeHint() ); |
522 | // move the label so it is "centerd" horizontally... | 538 | // move the label so it is "centerd" horizontally... |
523 | lblDesc->move( QMAX(0,(width() - lblDesc->width()) / 2), 0 ); | 539 | lblDesc->move( QMAX(0,(width() - lblDesc->width()) / 2), 0 ); |
524 | lblDesc->show(); | 540 | lblDesc->show(); |
525 | } | 541 | } |
526 | 542 | ||
527 | void DateBookWeek::slotHideEvent() | 543 | void DateBookWeek::slotHideEvent() |
528 | { | 544 | { |
529 | tHide->start( 2000, true ); | 545 | tHide->start( 2000, true ); |
530 | } | 546 | } |
531 | 547 | ||
532 | void DateBookWeek::setStartViewTime( int startHere ) | 548 | void DateBookWeek::setStartViewTime( int startHere ) |
533 | { | 549 | { |
534 | startTime = startHere; | 550 | startTime = startHere; |
535 | view->moveToHour( startTime ); | 551 | view->moveToHour( startTime ); |
536 | } | 552 | } |
537 | 553 | ||
538 | int DateBookWeek::startViewTime() const | 554 | int DateBookWeek::startViewTime() const |
539 | { | 555 | { |
540 | return startTime; | 556 | return startTime; |
541 | } | 557 | } |
542 | 558 | ||
543 | void DateBookWeek::redraw() | 559 | void DateBookWeek::redraw() |
544 | { | 560 | { |
545 | getEvents(); | 561 | getEvents(); |
546 | } | 562 | } |
547 | 563 | ||
548 | void DateBookWeek::slotYearChanged( int y ) | 564 | void DateBookWeek::slotYearChanged( int y ) |
549 | { | 565 | { |
550 | int totWeek; | 566 | int totWeek; |
551 | QDate d( y, 12, 31 ); | 567 | QDate d( y, 12, 31 ); |
552 | int throwAway; | 568 | int throwAway; |
553 | calcWeek( d, totWeek, throwAway, bStartOnMonday ); | 569 | calcWeek( d, totWeek, throwAway, bStartOnMonday ); |
554 | while ( totWeek == 1 ) { | 570 | while ( totWeek == 1 ) { |
555 | d = d.addDays( -1 ); | 571 | d = d.addDays( -1 ); |
556 | calcWeek( d, totWeek, throwAway, bStartOnMonday ); | 572 | calcWeek( d, totWeek, throwAway, bStartOnMonday ); |
557 | } | 573 | } |
558 | if ( totWeek != totalWeeks() ) | 574 | if ( totWeek != totalWeeks() ) |
559 | setTotalWeeks( totWeek ); | 575 | setTotalWeeks( totWeek ); |
560 | } | 576 | } |
561 | 577 | ||
562 | 578 | ||
563 | void DateBookWeek::setTotalWeeks( int numWeeks ) | 579 | void DateBookWeek::setTotalWeeks( int numWeeks ) |
564 | { | 580 | { |
565 | header->spinWeek->setMaxValue( numWeeks ); | 581 | header->spinWeek->setMaxValue( numWeeks ); |
566 | } | 582 | } |
567 | 583 | ||
568 | int DateBookWeek::totalWeeks() const | 584 | int DateBookWeek::totalWeeks() const |
569 | { | 585 | { |
570 | return header->spinWeek->maxValue(); | 586 | return header->spinWeek->maxValue(); |
571 | } | 587 | } |
572 | 588 | ||
573 | void DateBookWeek::slotWeekChanged( bool onMonday ) | 589 | void DateBookWeek::slotWeekChanged( bool onMonday ) |
574 | { | 590 | { |
575 | bStartOnMonday = onMonday; | 591 | bStartOnMonday = onMonday; |
576 | view->setStartOfWeek( bStartOnMonday ); | 592 | view->setStartOfWeek( bStartOnMonday ); |
577 | header->setStartOfWeek( bStartOnMonday ); | 593 | header->setStartOfWeek( bStartOnMonday ); |
578 | redraw(); | 594 | redraw(); |
579 | } | 595 | } |
580 | 596 | ||
581 | void DateBookWeek::slotClockChanged( bool ap ) | 597 | void DateBookWeek::slotClockChanged( bool ap ) |
582 | { | 598 | { |
583 | ampm = ap; | 599 | ampm = ap; |
584 | } | 600 | } |
585 | 601 | ||
586 | // return the date at the beginning of the week... | 602 | // return the date at the beginning of the week... |
587 | QDate DateBookWeek::weekDate() const | 603 | QDate DateBookWeek::weekDate() const |
588 | { | 604 | { |
589 | return dateFromWeek( _week, year, bStartOnMonday ); | 605 | return dateFromWeek( _week, year, bStartOnMonday ); |
590 | } | 606 | } |
591 | 607 | ||
592 | // this used to only be needed by datebook.cpp, but now we need it inside | 608 | // this used to only be needed by datebook.cpp, but now we need it inside |
593 | // week view since | 609 | // week view since |
594 | // we need to be able to figure out our total number of weeks on the fly... | 610 | // we need to be able to figure out our total number of weeks on the fly... |
595 | // this is probably the best place to put it.. | 611 | // this is probably the best place to put it.. |
596 | 612 | ||
597 | // For Weeks that start on Monday... (EASY!) | 613 | // For Weeks that start on Monday... (EASY!) |
598 | // At the moment we will use ISO 8601 method for computing | 614 | // At the moment we will use ISO 8601 method for computing |
599 | // the week. Granted, other countries use other methods, | 615 | // the week. Granted, other countries use other methods, |
600 | // bet we aren't doing any Locale stuff at the moment. So, | 616 | // bet we aren't doing any Locale stuff at the moment. So, |
601 | // this should pass. This Algorithim is public domain and | 617 | // this should pass. This Algorithim is public domain and |
602 | // available at: | 618 | // available at: |
603 | // http://personal.ecu.edu/mccartyr/ISOwdALG.txt | 619 | // http://personal.ecu.edu/mccartyr/ISOwdALG.txt |
604 | // the week number is return, and the year number is returned in year | 620 | // the week number is return, and the year number is returned in year |
605 | // for Instance 2001/12/31 is actually the first week in 2002. | 621 | // for Instance 2001/12/31 is actually the first week in 2002. |
606 | // There is a more mathematical definition, but I will implement it when | 622 | // There is a more mathematical definition, but I will implement it when |
607 | // we are pass our deadline. | 623 | // we are pass our deadline. |
608 | 624 | ||
609 | // For Weeks that start on Sunday... (ahh... home rolled) | 625 | // For Weeks that start on Sunday... (ahh... home rolled) |
610 | // okay, if Jan 1 is on Friday or Saturday, | 626 | // okay, if Jan 1 is on Friday or Saturday, |
611 | // it will go to the pervious | 627 | // it will go to the pervious |
612 | // week... | 628 | // week... |
613 | 629 | ||
diff --git a/core/pim/datebook/datebookweek.h b/core/pim/datebook/datebookweek.h index 6e675f1..acbc2c7 100644 --- a/core/pim/datebook/datebookweek.h +++ b/core/pim/datebook/datebookweek.h | |||
@@ -40,113 +40,129 @@ class DateBookWeekItem | |||
40 | { | 40 | { |
41 | public: | 41 | public: |
42 | DateBookWeekItem( const EffectiveEvent e ); | 42 | DateBookWeekItem( const EffectiveEvent e ); |
43 | 43 | ||
44 | void setGeometry( int x, int y, int w, int h ); | 44 | void setGeometry( int x, int y, int w, int h ); |
45 | QRect geometry() const { return r; } | 45 | QRect geometry() const { return r; } |
46 | 46 | ||
47 | const QColor &color() const { return c; } | 47 | const QColor &color() const { return c; } |
48 | const EffectiveEvent event() const { return ev; } | 48 | const EffectiveEvent event() const { return ev; } |
49 | 49 | ||
50 | private: | 50 | private: |
51 | const EffectiveEvent ev; | 51 | const EffectiveEvent ev; |
52 | QRect r; | 52 | QRect r; |
53 | QColor c; | 53 | QColor c; |
54 | }; | 54 | }; |
55 | 55 | ||
56 | class DateBookWeekView : public QScrollView | 56 | class DateBookWeekView : public QScrollView |
57 | { | 57 | { |
58 | Q_OBJECT | 58 | Q_OBJECT |
59 | public: | 59 | public: |
60 | DateBookWeekView( bool ampm, bool weekOnMonday, QWidget *parent = 0, | 60 | DateBookWeekView( bool ampm, bool weekOnMonday, QWidget *parent = 0, |
61 | const char *name = 0 ); | 61 | const char *name = 0 ); |
62 | 62 | ||
63 | bool whichClock() const; | 63 | bool whichClock() const; |
64 | void showEvents( QValueList<EffectiveEvent> &ev ); | 64 | void showEvents( QValueList<EffectiveEvent> &ev ); |
65 | void moveToHour( int h ); | 65 | void moveToHour( int h ); |
66 | void setStartOfWeek( bool bOnMonday ); | 66 | void setStartOfWeek( bool bOnMonday ); |
67 | 67 | ||
68 | signals: | 68 | signals: |
69 | void showDay( int d ); | 69 | void showDay( int d ); |
70 | void signalShowEvent( const EffectiveEvent & ); | 70 | void signalShowEvent( const EffectiveEvent & ); |
71 | void signalHideEvent(); | 71 | void signalHideEvent(); |
72 | 72 | ||
73 | protected slots: | 73 | protected slots: |
74 | void keyPressEvent(QKeyEvent *); | 74 | void keyPressEvent(QKeyEvent *); |
75 | 75 | ||
76 | private slots: | 76 | private slots: |
77 | void slotChangeClock( bool ); | 77 | void slotChangeClock( bool ); |
78 | void alterDay( int ); | 78 | void alterDay( int ); |
79 | 79 | ||
80 | private: | 80 | private: |
81 | void positionItem( DateBookWeekItem *i ); | 81 | void positionItem( DateBookWeekItem *i ); |
82 | DateBookWeekItem *intersects( const DateBookWeekItem * ); | 82 | DateBookWeekItem *intersects( const DateBookWeekItem * ); |
83 | void drawContents( QPainter *p, int cx, int cy, int cw, int ch ); | 83 | void drawContents( QPainter *p, int cx, int cy, int cw, int ch ); |
84 | void contentsMousePressEvent( QMouseEvent * ); | 84 | void contentsMousePressEvent( QMouseEvent * ); |
85 | void contentsMouseReleaseEvent( QMouseEvent * ); | 85 | void contentsMouseReleaseEvent( QMouseEvent * ); |
86 | void resizeEvent( QResizeEvent * ); | 86 | void resizeEvent( QResizeEvent * ); |
87 | void initNames(); | 87 | void initNames(); |
88 | 88 | ||
89 | private: | 89 | private: |
90 | bool ampm; | 90 | bool ampm; |
91 | bool bOnMonday; | 91 | bool bOnMonday; |
92 | QHeader *header; | 92 | QHeader *header; |
93 | QList<DateBookWeekItem> items; | 93 | QList<DateBookWeekItem> items; |
94 | int rowHeight; | 94 | int rowHeight; |
95 | bool showingEvent; | 95 | bool showingEvent; |
96 | }; | 96 | }; |
97 | 97 | ||
98 | class DateBookWeek : public QWidget | 98 | class DateBookWeek : public QWidget |
99 | { | 99 | { |
100 | Q_OBJECT | 100 | Q_OBJECT |
101 | 101 | ||
102 | public: | 102 | public: |
103 | DateBookWeek( bool ampm, bool weekOnMonday, DateBookDB *newDB, | 103 | DateBookWeek( bool ampm, bool weekOnMonday, DateBookDB *newDB, |
104 | QWidget *parent = 0, const char *name = 0 ); | 104 | QWidget *parent = 0, const char *name = 0 ); |
105 | void setDate( int y, int m, int d ); | 105 | void setDate( int y, int m, int d ); |
106 | void setDate( QDate d ); | 106 | void setDate( QDate d ); |
107 | QDate date() const; | 107 | QDate date() const; |
108 | DateBookWeekView *weekView() const { return view; } | 108 | DateBookWeekView *weekView() const { return view; } |
109 | void setStartViewTime( int startHere ); | 109 | void setStartViewTime( int startHere ); |
110 | int startViewTime() const; | 110 | int startViewTime() const; |
111 | int week() const { return _week; }; | 111 | int week() const { return _week; }; |
112 | void setTotalWeeks( int totalWeeks ); | 112 | void setTotalWeeks( int totalWeeks ); |
113 | int totalWeeks() const; | 113 | int totalWeeks() const; |
114 | QDate weekDate() const; | 114 | QDate weekDate() const; |
115 | 115 | ||
116 | public slots: | 116 | public slots: |
117 | void redraw(); | 117 | void redraw(); |
118 | void slotWeekChanged( bool bStartOnMonday ); | 118 | void slotWeekChanged( bool bStartOnMonday ); |
119 | void slotClockChanged( bool a ); | 119 | void slotClockChanged( bool a ); |
120 | 120 | ||
121 | signals: | 121 | signals: |
122 | void showDate( int y, int m, int d ); | 122 | void showDate( int y, int m, int d ); |
123 | 123 | ||
124 | protected slots: | 124 | protected slots: |
125 | void keyPressEvent(QKeyEvent *); | 125 | void keyPressEvent(QKeyEvent *); |
126 | 126 | ||
127 | private slots: | 127 | private slots: |
128 | void showDay( int day ); | 128 | void showDay( int day ); |
129 | void dateChanged( int y, int w ); | 129 | void dateChanged( int y, int w ); |
130 | void slotShowEvent( const EffectiveEvent & ); | 130 | void slotShowEvent( const EffectiveEvent & ); |
131 | void slotHideEvent(); | 131 | void slotHideEvent(); |
132 | void slotYearChanged( int ); | 132 | void slotYearChanged( int ); |
133 | 133 | ||
134 | private: | 134 | private: |
135 | void getEvents(); | 135 | void getEvents(); |
136 | |||
137 | /** | ||
138 | * Wow that's a hell lot of code duplication | ||
139 | * in datebook. I vote for a common base class | ||
140 | * but never the less. This add a note | ||
141 | * that the Event is an all day event | ||
142 | * | ||
143 | */ | ||
144 | void generateAllDayTooltext( QString& text ); | ||
145 | |||
146 | /** | ||
147 | * This will add the times to the text | ||
148 | * It will be shown in the Tooltip bubble | ||
149 | */ | ||
150 | void generateNormalTooltext( QString& text, | ||
151 | const EffectiveEvent &ev); | ||
136 | int year; | 152 | int year; |
137 | int _week; | 153 | int _week; |
138 | int dow; | 154 | int dow; |
139 | DateBookWeekHeader *header; | 155 | DateBookWeekHeader *header; |
140 | DateBookWeekView *view; | 156 | DateBookWeekView *view; |
141 | DateBookDB *db; | 157 | DateBookDB *db; |
142 | QLabel *lblDesc; | 158 | QLabel *lblDesc; |
143 | QTimer *tHide; | 159 | QTimer *tHide; |
144 | int startTime; | 160 | int startTime; |
145 | bool ampm; | 161 | bool ampm; |
146 | bool bStartOnMonday; | 162 | bool bStartOnMonday; |
147 | }; | 163 | }; |
148 | 164 | ||
149 | 165 | ||
150 | bool calcWeek( const QDate &d, int &week, int &year, | 166 | bool calcWeek( const QDate &d, int &week, int &year, |
151 | bool startOnMonday = false ); | 167 | bool startOnMonday = false ); |
152 | #endif | 168 | #endif |
diff --git a/core/pim/datebook/datebookweeklst.cpp b/core/pim/datebook/datebookweeklst.cpp index 29519c1..5eefc27 100644 --- a/core/pim/datebook/datebookweeklst.cpp +++ b/core/pim/datebook/datebookweeklst.cpp | |||
@@ -61,193 +61,196 @@ void DateBookWeekLstHeader::setDate(const QDate &d) { | |||
61 | start.monthName(start.month()) + " - " + | 61 | start.monthName(start.month()) + " - " + |
62 | QString::number(stop.day()) + " " + | 62 | QString::number(stop.day()) + " " + |
63 | start.monthName(stop.month()) ); | 63 | start.monthName(stop.month()) ); |
64 | emit dateChanged(year,week); | 64 | emit dateChanged(year,week); |
65 | } | 65 | } |
66 | void DateBookWeekLstHeader::pickDate() { | 66 | void DateBookWeekLstHeader::pickDate() { |
67 | static QPopupMenu *m1 = 0; | 67 | static QPopupMenu *m1 = 0; |
68 | static DateBookMonth *picker = 0; | 68 | static DateBookMonth *picker = 0; |
69 | if ( !m1 ) { | 69 | if ( !m1 ) { |
70 | m1 = new QPopupMenu( this ); | 70 | m1 = new QPopupMenu( this ); |
71 | picker = new DateBookMonth( m1, 0, TRUE ); | 71 | picker = new DateBookMonth( m1, 0, TRUE ); |
72 | m1->insertItem( picker ); | 72 | m1->insertItem( picker ); |
73 | connect( picker, SIGNAL( dateClicked( int, int, int ) ), | 73 | connect( picker, SIGNAL( dateClicked( int, int, int ) ), |
74 | this, SLOT( setDate( int, int, int ) ) ); | 74 | this, SLOT( setDate( int, int, int ) ) ); |
75 | //connect( m1, SIGNAL( aboutToHide() ), | 75 | //connect( m1, SIGNAL( aboutToHide() ), |
76 | //this, SLOT( gotHide() ) ); | 76 | //this, SLOT( gotHide() ) ); |
77 | } | 77 | } |
78 | picker->setDate( date.year(), date.month(), date.day() ); | 78 | picker->setDate( date.year(), date.month(), date.day() ); |
79 | m1->popup(mapToGlobal(labelWeek->pos()+QPoint(0,labelWeek->height()))); | 79 | m1->popup(mapToGlobal(labelWeek->pos()+QPoint(0,labelWeek->height()))); |
80 | picker->setFocus(); | 80 | picker->setFocus(); |
81 | } | 81 | } |
82 | void DateBookWeekLstHeader::setDate(int y, int m, int d) { | 82 | void DateBookWeekLstHeader::setDate(int y, int m, int d) { |
83 | QDate new_date(y,m,d); | 83 | QDate new_date(y,m,d); |
84 | setDate(new_date); | 84 | setDate(new_date); |
85 | } | 85 | } |
86 | 86 | ||
87 | void DateBookWeekLstHeader::nextWeek() { | 87 | void DateBookWeekLstHeader::nextWeek() { |
88 | setDate(date.addDays(7)); | 88 | setDate(date.addDays(7)); |
89 | } | 89 | } |
90 | void DateBookWeekLstHeader::prevWeek() { | 90 | void DateBookWeekLstHeader::prevWeek() { |
91 | setDate(date.addDays(-7)); | 91 | setDate(date.addDays(-7)); |
92 | } | 92 | } |
93 | 93 | ||
94 | DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(const QDate &d, bool /*onM*/, | 94 | DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(const QDate &d, bool /*onM*/, |
95 | QWidget* parent, | 95 | QWidget* parent, |
96 | const char* name, | 96 | const char* name, |
97 | WFlags fl ) | 97 | WFlags fl ) |
98 | : DateBookWeekLstDayHdrBase(parent, name, fl) { | 98 | : DateBookWeekLstDayHdrBase(parent, name, fl) { |
99 | 99 | ||
100 | date=d; | 100 | date=d; |
101 | 101 | ||
102 | static const char *wdays="MTWTFSS"; | 102 | static const char *wdays="MTWTFSS"; |
103 | char day=wdays[d.dayOfWeek()-1]; | 103 | char day=wdays[d.dayOfWeek()-1]; |
104 | 104 | ||
105 | label->setText( QString(QChar(day)) + " " + | 105 | label->setText( QString(QChar(day)) + " " + |
106 | QString::number(d.day()) ); | 106 | QString::number(d.day()) ); |
107 | add->setText("+"); | 107 | add->setText("+"); |
108 | 108 | ||
109 | if (d == QDate::currentDate()) { | 109 | if (d == QDate::currentDate()) { |
110 | QPalette pal=label->palette(); | 110 | QPalette pal=label->palette(); |
111 | pal.setColor(QColorGroup::Foreground, QColor(0,0,255)); | 111 | pal.setColor(QColorGroup::Foreground, QColor(0,0,255)); |
112 | label->setPalette(pal); | 112 | label->setPalette(pal); |
113 | 113 | ||
114 | /* | 114 | /* |
115 | QFont f=label->font(); | 115 | QFont f=label->font(); |
116 | f.setItalic(true); | 116 | f.setItalic(true); |
117 | label->setFont(f); | 117 | label->setFont(f); |
118 | label->setPalette(QPalette(QColor(0,0,255),label->backgroundColor())); | 118 | label->setPalette(QPalette(QColor(0,0,255),label->backgroundColor())); |
119 | */ | 119 | */ |
120 | } else if (d.dayOfWeek() == 7) { // FIXME: Match any holiday | 120 | } else if (d.dayOfWeek() == 7) { // FIXME: Match any holiday |
121 | QPalette pal=label->palette(); | 121 | QPalette pal=label->palette(); |
122 | pal.setColor(QColorGroup::Foreground, QColor(255,0,0)); | 122 | pal.setColor(QColorGroup::Foreground, QColor(255,0,0)); |
123 | label->setPalette(pal); | 123 | label->setPalette(pal); |
124 | } | 124 | } |
125 | 125 | ||
126 | 126 | ||
127 | connect (label, SIGNAL(clicked()), this, SLOT(showDay())); | 127 | connect (label, SIGNAL(clicked()), this, SLOT(showDay())); |
128 | connect (add, SIGNAL(clicked()), this, SLOT(newEvent())); | 128 | connect (add, SIGNAL(clicked()), this, SLOT(newEvent())); |
129 | } | 129 | } |
130 | 130 | ||
131 | void DateBookWeekLstDayHdr::showDay() { | 131 | void DateBookWeekLstDayHdr::showDay() { |
132 | emit showDate(date.year(), date.month(), date.day()); | 132 | emit showDate(date.year(), date.month(), date.day()); |
133 | } | 133 | } |
134 | void DateBookWeekLstDayHdr::newEvent() { | 134 | void DateBookWeekLstDayHdr::newEvent() { |
135 | QDateTime start, stop; | 135 | QDateTime start, stop; |
136 | start=stop=date; | 136 | start=stop=date; |
137 | start.setTime(QTime(10,0)); | 137 | start.setTime(QTime(10,0)); |
138 | stop.setTime(QTime(12,0)); | 138 | stop.setTime(QTime(12,0)); |
139 | 139 | ||
140 | emit addEvent(start,stop,""); | 140 | emit addEvent(start,stop,""); |
141 | } | 141 | } |
142 | DateBookWeekLstEvent::DateBookWeekLstEvent(const EffectiveEvent &ev, | 142 | DateBookWeekLstEvent::DateBookWeekLstEvent(const EffectiveEvent &ev, |
143 | QWidget* parent, | 143 | QWidget* parent, |
144 | const char* name, | 144 | const char* name, |
145 | WFlags fl) : | 145 | WFlags fl) : |
146 | OClickableLabel(parent,name,fl), | 146 | OClickableLabel(parent,name,fl), |
147 | event(ev) | 147 | event(ev) |
148 | { | 148 | { |
149 | char s[10]; | 149 | char s[10]; |
150 | if ( ev.startDate() != ev.date() ) { // multiday event (not first day) | 150 | if ( ev.startDate() != ev.date() ) { // multiday event (not first day) |
151 | if ( ev.endDate() == ev.date() ) { // last day | 151 | if ( ev.endDate() == ev.date() ) { // last day |
152 | strcpy(s, "__|__"); | 152 | strcpy(s, "__|__"); |
153 | } else { | 153 | } else { |
154 | strcpy(s, " |---"); | 154 | strcpy(s, " |---"); |
155 | } | 155 | } |
156 | } else { | 156 | } else { |
157 | sprintf(s,"%.2d:%.2d",ev.start().hour(),ev.start().minute()); | 157 | if(ev.event().type() == Event::Normal ) |
158 | sprintf(s,"%.2d:%.2d",ev.start().hour(),ev.start().minute()); | ||
159 | else | ||
160 | sprintf(s," "); | ||
158 | } | 161 | } |
159 | setText(QString(s) + " " + ev.description()); | 162 | setText(QString(s) + " " + ev.description()); |
160 | connect(this, SIGNAL(clicked()), this, SLOT(editMe())); | 163 | connect(this, SIGNAL(clicked()), this, SLOT(editMe())); |
161 | setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) ); | 164 | setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) ); |
162 | } | 165 | } |
163 | void DateBookWeekLstEvent::editMe() { | 166 | void DateBookWeekLstEvent::editMe() { |
164 | emit editEvent(event.event()); | 167 | emit editEvent(event.event()); |
165 | } | 168 | } |
166 | 169 | ||
167 | 170 | ||
168 | DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev, | 171 | DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev, |
169 | const QDate &d, bool onM, | 172 | const QDate &d, bool onM, |
170 | QWidget* parent, | 173 | QWidget* parent, |
171 | const char* name, WFlags fl) | 174 | const char* name, WFlags fl) |
172 | : QWidget( parent, name, fl ) | 175 | : QWidget( parent, name, fl ) |
173 | { | 176 | { |
174 | onMonday=onM; | 177 | onMonday=onM; |
175 | setPalette(white); | 178 | setPalette(white); |
176 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding)); | 179 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding)); |
177 | 180 | ||
178 | QVBoxLayout *layout = new QVBoxLayout( this ); | 181 | QVBoxLayout *layout = new QVBoxLayout( this ); |
179 | 182 | ||
180 | qBubbleSort(ev); | 183 | qBubbleSort(ev); |
181 | QValueListIterator<EffectiveEvent> it; | 184 | QValueListIterator<EffectiveEvent> it; |
182 | it=ev.begin(); | 185 | it=ev.begin(); |
183 | 186 | ||
184 | int dayOrder[7]; | 187 | int dayOrder[7]; |
185 | if (onMonday) | 188 | if (onMonday) |
186 | for (int d=0; d<7; d++) dayOrder[d]=d+1; | 189 | for (int d=0; d<7; d++) dayOrder[d]=d+1; |
187 | else { | 190 | else { |
188 | for (int d=0; d<7; d++) dayOrder[d]=d; | 191 | for (int d=0; d<7; d++) dayOrder[d]=d; |
189 | dayOrder[0]=7; | 192 | dayOrder[0]=7; |
190 | } | 193 | } |
191 | 194 | ||
192 | for (int i=0; i<7; i++) { | 195 | for (int i=0; i<7; i++) { |
193 | // Header | 196 | // Header |
194 | DateBookWeekLstDayHdr *hdr=new DateBookWeekLstDayHdr(d.addDays(i), | 197 | DateBookWeekLstDayHdr *hdr=new DateBookWeekLstDayHdr(d.addDays(i), |
195 | onMonday,this); | 198 | onMonday,this); |
196 | connect(hdr, SIGNAL(showDate(int,int,int)), | 199 | connect(hdr, SIGNAL(showDate(int,int,int)), |
197 | this, SIGNAL(showDate(int,int,int))); | 200 | this, SIGNAL(showDate(int,int,int))); |
198 | connect(hdr, SIGNAL(addEvent(const QDateTime &, | 201 | connect(hdr, SIGNAL(addEvent(const QDateTime &, |
199 | const QDateTime &, | 202 | const QDateTime &, |
200 | const QString &)), | 203 | const QString &)), |
201 | this, SIGNAL(addEvent(const QDateTime &, | 204 | this, SIGNAL(addEvent(const QDateTime &, |
202 | const QDateTime &, | 205 | const QDateTime &, |
203 | const QString &))); | 206 | const QString &))); |
204 | layout->addWidget(hdr); | 207 | layout->addWidget(hdr); |
205 | 208 | ||
206 | // Events | 209 | // Events |
207 | while ( (*it).date().dayOfWeek() == dayOrder[i] && it!=ev.end() ) { | 210 | while ( (*it).date().dayOfWeek() == dayOrder[i] && it!=ev.end() ) { |
208 | DateBookWeekLstEvent *l=new DateBookWeekLstEvent(*it,this); | 211 | DateBookWeekLstEvent *l=new DateBookWeekLstEvent(*it,this); |
209 | layout->addWidget(l); | 212 | layout->addWidget(l); |
210 | connect (l, SIGNAL(editEvent(const Event &)), | 213 | connect (l, SIGNAL(editEvent(const Event &)), |
211 | this, SIGNAL(editEvent(const Event &))); | 214 | this, SIGNAL(editEvent(const Event &))); |
212 | it++; | 215 | it++; |
213 | } | 216 | } |
214 | 217 | ||
215 | layout->addItem(new QSpacerItem(1,1, QSizePolicy::Minimum, QSizePolicy::Expanding)); | 218 | layout->addItem(new QSpacerItem(1,1, QSizePolicy::Minimum, QSizePolicy::Expanding)); |
216 | } | 219 | } |
217 | } | 220 | } |
218 | DateBookWeekLstView::~DateBookWeekLstView(){} | 221 | DateBookWeekLstView::~DateBookWeekLstView(){} |
219 | void DateBookWeekLstView::keyPressEvent(QKeyEvent *e) {e->ignore();} | 222 | void DateBookWeekLstView::keyPressEvent(QKeyEvent *e) {e->ignore();} |
220 | 223 | ||
221 | DateBookWeekLstDblView::DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1, | 224 | DateBookWeekLstDblView::DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1, |
222 | QValueList<EffectiveEvent> &ev2, | 225 | QValueList<EffectiveEvent> &ev2, |
223 | QDate &d, bool onM, | 226 | QDate &d, bool onM, |
224 | QWidget* parent, | 227 | QWidget* parent, |
225 | const char* name, WFlags fl) | 228 | const char* name, WFlags fl) |
226 | : QWidget( parent, name, fl ) | 229 | : QWidget( parent, name, fl ) |
227 | { | 230 | { |
228 | QHBoxLayout *layout = new QHBoxLayout( this ); | 231 | QHBoxLayout *layout = new QHBoxLayout( this ); |
229 | 232 | ||
230 | DateBookWeekLstView *w=new DateBookWeekLstView(ev1,d,onM,this); | 233 | DateBookWeekLstView *w=new DateBookWeekLstView(ev1,d,onM,this); |
231 | layout->addWidget(w); | 234 | layout->addWidget(w); |
232 | connect (w, SIGNAL(editEvent(const Event &)), | 235 | connect (w, SIGNAL(editEvent(const Event &)), |
233 | this, SIGNAL(editEvent(const Event &))); | 236 | this, SIGNAL(editEvent(const Event &))); |
234 | connect (w, SIGNAL(showDate(int,int,int)), | 237 | connect (w, SIGNAL(showDate(int,int,int)), |
235 | this, SIGNAL(showDate(int,int,int))); | 238 | this, SIGNAL(showDate(int,int,int))); |
236 | connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &, | 239 | connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &, |
237 | const QString &)), | 240 | const QString &)), |
238 | this, SIGNAL(addEvent(const QDateTime &, const QDateTime &, | 241 | this, SIGNAL(addEvent(const QDateTime &, const QDateTime &, |
239 | const QString &))); | 242 | const QString &))); |
240 | 243 | ||
241 | 244 | ||
242 | w=new DateBookWeekLstView(ev2,d.addDays(7),onM,this); | 245 | w=new DateBookWeekLstView(ev2,d.addDays(7),onM,this); |
243 | layout->addWidget(w); | 246 | layout->addWidget(w); |
244 | connect (w, SIGNAL(editEvent(const Event &)), | 247 | connect (w, SIGNAL(editEvent(const Event &)), |
245 | this, SIGNAL(editEvent(const Event &))); | 248 | this, SIGNAL(editEvent(const Event &))); |
246 | connect (w, SIGNAL(showDate(int,int,int)), | 249 | connect (w, SIGNAL(showDate(int,int,int)), |
247 | this, SIGNAL(showDate(int,int,int))); | 250 | this, SIGNAL(showDate(int,int,int))); |
248 | connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &, | 251 | connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &, |
249 | const QString &)), | 252 | const QString &)), |
250 | this, SIGNAL(addEvent(const QDateTime &, const QDateTime &, | 253 | this, SIGNAL(addEvent(const QDateTime &, const QDateTime &, |
251 | const QString &))); | 254 | const QString &))); |
252 | } | 255 | } |
253 | 256 | ||