-rw-r--r-- | korganizer/calendarview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 8269910..7566b22 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -795,469 +795,470 @@ void CalendarView::scrollBarValue(int val ) | |||
795 | block = false; | 795 | block = false; |
796 | return; | 796 | return; |
797 | } | 797 | } |
798 | int year = mNavigator->selectedDates().first().year(); | 798 | int year = mNavigator->selectedDates().first().year(); |
799 | QDate d ( year,1,1 ); | 799 | QDate d ( year,1,1 ); |
800 | mNavigator->selectDates( d.addDays( stepdays-1) , count ); | 800 | mNavigator->selectDates( d.addDays( stepdays-1) , count ); |
801 | block = false; | 801 | block = false; |
802 | #endif | 802 | #endif |
803 | 803 | ||
804 | } | 804 | } |
805 | void CalendarView::updateView(const QDate &start, const QDate &end) | 805 | void CalendarView::updateView(const QDate &start, const QDate &end) |
806 | { | 806 | { |
807 | #ifdef DESKTOP_VERSION | 807 | #ifdef DESKTOP_VERSION |
808 | if ( ! mDateScrollBar->draggingSlider () ) { | 808 | if ( ! mDateScrollBar->draggingSlider () ) { |
809 | int dof = start.dayOfYear(); | 809 | int dof = start.dayOfYear(); |
810 | //qDebug("dof %d day %d val %d ", dof, start.dayOfYear(),mDateScrollBar->value() ); | 810 | //qDebug("dof %d day %d val %d ", dof, start.dayOfYear(),mDateScrollBar->value() ); |
811 | if ( dof != mDateScrollBar->value() ) { | 811 | if ( dof != mDateScrollBar->value() ) { |
812 | mDateScrollBar->blockSignals( true ); | 812 | mDateScrollBar->blockSignals( true ); |
813 | mDateScrollBar->setValue( start.dayOfYear()); | 813 | mDateScrollBar->setValue( start.dayOfYear()); |
814 | mDateScrollBar->blockSignals( false ); | 814 | mDateScrollBar->blockSignals( false ); |
815 | } | 815 | } |
816 | } | 816 | } |
817 | #endif | 817 | #endif |
818 | mTodoList->updateView(); | 818 | mTodoList->updateView(); |
819 | mViewManager->updateView(start, end); | 819 | mViewManager->updateView(start, end); |
820 | //mDateNavigator->updateView(); | 820 | //mDateNavigator->updateView(); |
821 | } | 821 | } |
822 | 822 | ||
823 | 823 | ||
824 | 824 | ||
825 | void CalendarView::checkFiles() | 825 | void CalendarView::checkFiles() |
826 | { | 826 | { |
827 | QString message; | 827 | QString message; |
828 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 828 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
829 | KopiCalendarFile * cal = calendars.first(); | 829 | KopiCalendarFile * cal = calendars.first(); |
830 | while ( cal ) { | 830 | while ( cal ) { |
831 | if ( cal->mErrorOnLoad ) { | 831 | if ( cal->mErrorOnLoad ) { |
832 | message += cal->mName +"\n"+KGlobal::formatMessage ( "(" +i18n( "Filepath: ")+ cal->mFileName+")" ,0 )+"\n"; | 832 | message += cal->mName +"\n"+KGlobal::formatMessage ( "(" +i18n( "Filepath: ")+ cal->mFileName+")" ,0 )+"\n"; |
833 | } | 833 | } |
834 | cal = calendars.next(); | 834 | cal = calendars.next(); |
835 | } | 835 | } |
836 | if ( !message.isEmpty() ) { | 836 | if ( !message.isEmpty() ) { |
837 | message = KGlobal::formatMessage( i18n("Calendar(s) not loaded:"),0 )+"\n" + message +KGlobal::formatMessage(i18n("You can try to reload the calendar in the Resource View!"),0); | 837 | message = KGlobal::formatMessage( i18n("Calendar(s) not loaded:"),0 )+"\n" + message +KGlobal::formatMessage(i18n("You can try to reload the calendar in the Resource View!"),0); |
838 | KMessageBox::error(this,message, i18n("Loding of calendar(s) failed")); | 838 | KMessageBox::error(this,message, i18n("Loding of calendar(s) failed")); |
839 | } | 839 | } |
840 | static bool firstTime = true; | 840 | static bool firstTime = true; |
841 | if ( firstTime ) { | 841 | if ( firstTime ) { |
842 | firstTime = false; | 842 | firstTime = false; |
843 | QTimer::singleShot( 2000, this, SLOT ( checkAlarms() )); | 843 | QTimer::singleShot( 2000, this, SLOT ( checkAlarms() )); |
844 | } | 844 | } |
845 | } | 845 | } |
846 | void CalendarView::checkAlarms() | 846 | void CalendarView::checkAlarms() |
847 | { | 847 | { |
848 | KConfig *config = KOGlobals::config(); | 848 | KConfig *config = KOGlobals::config(); |
849 | config->setGroup( "AppRun" ); | 849 | config->setGroup( "AppRun" ); |
850 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); | 850 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); |
851 | int daysto = dt.daysTo( QDate::currentDate() ); | 851 | int daysto = dt.daysTo( QDate::currentDate() ); |
852 | int days = config->readNumEntry( "LatestProgramStopDays" , daysto); | 852 | int days = config->readNumEntry( "LatestProgramStopDays" , daysto); |
853 | dt = dt.addDays( days ); | 853 | dt = dt.addDays( days ); |
854 | int secto = dt.secsTo( QDateTime::currentDateTime() ); | 854 | int secto = dt.secsTo( QDateTime::currentDateTime() ); |
855 | int secs = config->readNumEntry( "LatestProgramStopSecs" , secto) - 30; | 855 | int secs = config->readNumEntry( "LatestProgramStopSecs" , secto) - 30; |
856 | //qDebug("KO: Reading program stop %d ", secs); | 856 | //qDebug("KO: Reading program stop %d ", secs); |
857 | //secs -= ( 3600 * 24*3 ); // debug only | 857 | //secs -= ( 3600 * 24*3 ); // debug only |
858 | QDateTime latest = dt.addSecs ( secs ); | 858 | QDateTime latest = dt.addSecs ( secs ); |
859 | qDebug("KO: Last termination on %s ", latest.toString().latin1()); | 859 | qDebug("KO: Last termination on %s ", latest.toString().latin1()); |
860 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); | 860 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); |
861 | QPtrList<Incidence> el = mCalendar->rawIncidences(); | 861 | QPtrList<Incidence> el = mCalendar->rawIncidences(); |
862 | QPtrList<Incidence> al; | 862 | QPtrList<Incidence> al; |
863 | Incidence* inL = el.first(); | 863 | Incidence* inL = el.first(); |
864 | QDateTime cur = QDateTime::currentDateTime().addSecs(-59); | 864 | QDateTime cur = QDateTime::currentDateTime().addSecs(-59); |
865 | qDebug("KO: Checking alarm until %s ", cur.toString().latin1()); | 865 | qDebug("KO: Checking alarm until %s ", cur.toString().latin1()); |
866 | while ( inL ) { | 866 | while ( inL ) { |
867 | bool ok = false; | 867 | bool ok = false; |
868 | int offset = 0; | 868 | int offset = 0; |
869 | QDateTime next = inL->getNextAlarmDateTime(& ok, &offset, latest ) ; | 869 | QDateTime next = inL->getNextAlarmDateTime(& ok, &offset, latest ) ; |
870 | if ( ok ) { | 870 | if ( ok ) { |
871 | //qDebug("OK %s",next.toString().latin1()); | 871 | //qDebug("OK %s",next.toString().latin1()); |
872 | if ( next < cur ) { | 872 | if ( next < cur ) { |
873 | al.append( inL ); | 873 | al.append( inL ); |
874 | //qDebug("found missed alarm: %s ", inL->summary().latin1() ); | 874 | //qDebug("found missed alarm: %s ", inL->summary().latin1() ); |
875 | } | 875 | } |
876 | } | 876 | } |
877 | inL = el.next(); | 877 | inL = el.next(); |
878 | } | 878 | } |
879 | if ( al.count() ) { | 879 | if ( al.count() ) { |
880 | QDialog* dia = new QDialog( this, "huhu", false, WDestructiveClose | WStyle_StaysOnTop ); | 880 | QDialog* dia = new QDialog( this, "huhu", false, WDestructiveClose | WStyle_StaysOnTop ); |
881 | dia->setCaption( i18n("KO/Pi: Missing alarms!") ); | 881 | dia->setCaption( i18n("KO/Pi: Missing alarms!") ); |
882 | QVBoxLayout* lay = new QVBoxLayout( dia ); | 882 | QVBoxLayout* lay = new QVBoxLayout( dia ); |
883 | lay->setSpacing( 0 ); | 883 | lay->setSpacing( 0 ); |
884 | lay->setMargin( 0 ); | 884 | lay->setMargin( 0 ); |
885 | MissedAlarmTextBrowser* matb = new MissedAlarmTextBrowser ( dia, al, latest ); | 885 | MissedAlarmTextBrowser* matb = new MissedAlarmTextBrowser ( dia, al, latest ); |
886 | connect( matb, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) )); | 886 | connect( matb, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) )); |
887 | lay->addWidget( matb ); | 887 | lay->addWidget( matb ); |
888 | if ( QApplication::desktop()->width() == 480 || QApplication::desktop()->width() == 640 ) { | 888 | if ( QApplication::desktop()->width() == 480 || QApplication::desktop()->width() == 640 ) { |
889 | int wid = 210; | 889 | int wid = 210; |
890 | int x = QApplication::desktop()->width() - wid - 7; | 890 | int x = QApplication::desktop()->width() - wid - 7; |
891 | int y = QApplication::desktop()->height() - wid - 70; | 891 | int y = QApplication::desktop()->height() - wid - 70; |
892 | dia->setGeometry ( x,y,wid,wid); | 892 | dia->setGeometry ( x,y,wid,wid); |
893 | } else { | 893 | } else { |
894 | int si = 220; | 894 | int si = 220; |
895 | if ( QApplication::desktop()->width() > 470 ) | 895 | if ( QApplication::desktop()->width() > 470 ) |
896 | si = 400; | 896 | si = 400; |
897 | dia->resize(si,si/2); | 897 | dia->resize(si,si/2); |
898 | } | 898 | } |
899 | dia->setBackgroundColor( QColor( 255, 255, 255 ) ); | 899 | dia->setBackgroundColor( QColor( 255, 255, 255 ) ); |
900 | dia->show(); | 900 | dia->show(); |
901 | 901 | ||
902 | } | 902 | } |
903 | #if 0 | 903 | #if 0 |
904 | // for creating timetracker test data | 904 | // for creating timetracker test data |
905 | qDebug("CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCc "); | 905 | qDebug("CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCc "); |
906 | Todo * nt; | 906 | Todo * nt; |
907 | mCalendar->close(); | 907 | mCalendar->close(); |
908 | { | 908 | { |
909 | Todo * root1 = new Todo; | 909 | Todo * root1 = new Todo; |
910 | mCalendar->addTodo( root1 ); | 910 | mCalendar->addTodo( root1 ); |
911 | root1->setSummary( "Project_1"); | 911 | root1->setSummary( "Project_1"); |
912 | root1->setPriority( 1 ); | 912 | root1->setPriority( 1 ); |
913 | root1->setDescription( "This is a test description of a root Project" ); | 913 | root1->setDescription( "This is a test description of a root Project" ); |
914 | root1->setPercentComplete( 20 ); | 914 | root1->setPercentComplete( 20 ); |
915 | updateView(); | 915 | updateView(); |
916 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); | 916 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); |
917 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); | 917 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); |
918 | 918 | ||
919 | nt = new Todo; | 919 | nt = new Todo; |
920 | mCalendar->addTodo( nt ); | 920 | mCalendar->addTodo( nt ); |
921 | nt->setSummary( "Planning_Project_1"); | 921 | nt->setSummary( "Planning_Project_1"); |
922 | nt->setPriority( 1 ); | 922 | nt->setPriority( 1 ); |
923 | nt->setDescription( "This is a test description of Planning_Project_1" ); | 923 | nt->setDescription( "This is a test description of Planning_Project_1" ); |
924 | nt->setPercentComplete( 20 ); | 924 | nt->setPercentComplete( 20 ); |
925 | 925 | ||
926 | 926 | ||
927 | Todo * sub1 = nt; | 927 | Todo * sub1 = nt; |
928 | sub1->setRelatedTo( root1 ); | 928 | sub1->setRelatedTo( root1 ); |
929 | 929 | ||
930 | nt = new Todo; | 930 | nt = new Todo; |
931 | mCalendar->addTodo( nt ); | 931 | mCalendar->addTodo( nt ); |
932 | nt->setSummary( "Planning_Project_1: Lutz"); | 932 | nt->setSummary( "Planning_Project_1: Lutz"); |
933 | nt->setPriority( 1 ); | 933 | nt->setPriority( 1 ); |
934 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 934 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
935 | nt->setPercentComplete( 20 ); | 935 | nt->setPercentComplete( 20 ); |
936 | Todo * workLutz11 = nt; | 936 | Todo * workLutz11 = nt; |
937 | workLutz11->setRelatedTo( sub1 ); | 937 | workLutz11->setRelatedTo( sub1 ); |
938 | 938 | ||
939 | nt = new Todo; | 939 | nt = new Todo; |
940 | mCalendar->addTodo( nt ); | 940 | mCalendar->addTodo( nt ); |
941 | nt->setSummary( "Planning_Project_1: Norbert"); | 941 | nt->setSummary( "Planning_Project_1: Norbert"); |
942 | nt->setPriority( 1 ); | 942 | nt->setPriority( 1 ); |
943 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 943 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
944 | nt->setPercentComplete( 20 ); | 944 | nt->setPercentComplete( 20 ); |
945 | Todo * workNorbert11 = nt; | 945 | Todo * workNorbert11 = nt; |
946 | workNorbert11->setRelatedTo( sub1 ); | 946 | workNorbert11->setRelatedTo( sub1 ); |
947 | 947 | ||
948 | nt = new Todo; | 948 | nt = new Todo; |
949 | mCalendar->addTodo( nt ); | 949 | mCalendar->addTodo( nt ); |
950 | nt->setSummary( "Work on 1"); | 950 | nt->setSummary( "Work on 1"); |
951 | nt->setPriority( 1 ); | 951 | nt->setPriority( 1 ); |
952 | nt->setDescription( "This is a test description of Work Project_1" ); | 952 | nt->setDescription( "This is a test description of Work Project_1" ); |
953 | nt->setPercentComplete( 20 ); | 953 | nt->setPercentComplete( 20 ); |
954 | 954 | ||
955 | Todo * sub2 = nt; | 955 | Todo * sub2 = nt; |
956 | sub2->setRelatedTo( root1 ); | 956 | sub2->setRelatedTo( root1 ); |
957 | 957 | ||
958 | 958 | ||
959 | nt = new Todo; | 959 | nt = new Todo; |
960 | mCalendar->addTodo( nt ); | 960 | mCalendar->addTodo( nt ); |
961 | nt->setSummary( "Work on 1: Lutz"); | 961 | nt->setSummary( "Work on 1: Lutz"); |
962 | nt->setPriority( 1 ); | 962 | nt->setPriority( 1 ); |
963 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 963 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
964 | nt->setPercentComplete( 20 ); | 964 | nt->setPercentComplete( 20 ); |
965 | Todo * workLutz12 = nt; | 965 | Todo * workLutz12 = nt; |
966 | workLutz12->setRelatedTo( sub2 ); | 966 | workLutz12->setRelatedTo( sub2 ); |
967 | 967 | ||
968 | nt = new Todo; | 968 | nt = new Todo; |
969 | mCalendar->addTodo( nt ); | 969 | mCalendar->addTodo( nt ); |
970 | nt->setSummary( "Work on 1: Norbert"); | 970 | nt->setSummary( "Work on 1: Norbert"); |
971 | nt->setPriority( 1 ); | 971 | nt->setPriority( 1 ); |
972 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 972 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
973 | nt->setPercentComplete( 20 ); | 973 | nt->setPercentComplete( 20 ); |
974 | Todo * workNorbert12 = nt; | 974 | Todo * workNorbert12 = nt; |
975 | workNorbert12->setRelatedTo( sub2 ); | 975 | workNorbert12->setRelatedTo( sub2 ); |
976 | 976 | ||
977 | int secLenRunning = 7200; | 977 | int secLenRunning = 7200; |
978 | int secLenPausing = 3600 * 3; | 978 | int secLenPausing = 3600 * 3; |
979 | int dayInterval = 1; | 979 | int dayInterval = 1; |
980 | //createRunningDate4Todo( root1, start, end, secLenRunning, secLenPausing, dayInterval ); | 980 | //createRunningDate4Todo( root1, start, end, secLenRunning, secLenPausing, dayInterval ); |
981 | createRunningDate4Todo( root1, start, end, secLenRunning*24, secLenPausing, 14 ); | 981 | createRunningDate4Todo( root1, start, end, secLenRunning*24, secLenPausing, 14 ); |
982 | createRunningDate4Todo( sub1, start.addSecs( secLenRunning ), start.addDays( 10 ), secLenRunning*4, secLenPausing, 1); | 982 | createRunningDate4Todo( sub1, start.addSecs( secLenRunning ), start.addDays( 10 ), secLenRunning*4, secLenPausing, 1); |
983 | createRunningDate4Todo( sub2, start.addDays( 8 ), end, secLenRunning*4, secLenPausing, 3); | 983 | createRunningDate4Todo( sub2, start.addDays( 8 ), end, secLenRunning*4, secLenPausing, 3); |
984 | createRunningDate4Todo( workLutz11, start, start.addDays( 8 ), secLenRunning, secLenPausing, 0); | 984 | createRunningDate4Todo( workLutz11, start, start.addDays( 8 ), secLenRunning, secLenPausing, 0); |
985 | createRunningDate4Todo( workNorbert11, start, start.addDays( 8 ), secLenRunning*2, secLenPausing, 1); | 985 | createRunningDate4Todo( workNorbert11, start, start.addDays( 8 ), secLenRunning*2, secLenPausing, 1); |
986 | createRunningDate4Todo( workLutz12, start.addDays( 8 ),end, secLenRunning*5, secLenPausing, 3); | 986 | createRunningDate4Todo( workLutz12, start.addDays( 8 ),end, secLenRunning*5, secLenPausing, 3); |
987 | createRunningDate4Todo( workNorbert11, start.addDays( 8 ), end, secLenRunning, secLenPausing*3, 0); | 987 | createRunningDate4Todo( workNorbert12, start.addDays( 8 ), end, secLenRunning, secLenPausing*3, 0); |
988 | 988 | ||
989 | } | 989 | } |
990 | 990 | ||
991 | { | 991 | { |
992 | Todo * root1 = new Todo; | 992 | Todo * root1 = new Todo; |
993 | mCalendar->addTodo( root1 ); | 993 | mCalendar->addTodo( root1 ); |
994 | root1->setSummary( "Project_2"); | 994 | root1->setSummary( "Project_2"); |
995 | root1->setPriority( 1 ); | 995 | root1->setPriority( 1 ); |
996 | root1->setDescription( "This is a test description of a root Project 2" ); | 996 | root1->setDescription( "This is a test description of a root Project 2" ); |
997 | root1->setPercentComplete( 20 ); | 997 | root1->setPercentComplete( 20 ); |
998 | updateView(); | 998 | updateView(); |
999 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); | 999 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); |
1000 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); | 1000 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); |
1001 | int secLenRunning = 7200; | 1001 | int secLenRunning = 7200; |
1002 | int secLenPausing = 3600 * 3; | 1002 | int secLenPausing = 3600 * 3; |
1003 | int dayInterval = 1; | 1003 | int dayInterval = 1; |
1004 | 1004 | ||
1005 | nt = new Todo; | 1005 | nt = new Todo; |
1006 | mCalendar->addTodo( nt ); | 1006 | mCalendar->addTodo( nt ); |
1007 | nt->setSummary( "Planning_Project_2"); | 1007 | nt->setSummary( "Planning_Project_2"); |
1008 | nt->setPriority( 1 ); | 1008 | nt->setPriority( 1 ); |
1009 | nt->setDescription( "This is a test description of Planning_Project_2" ); | 1009 | nt->setDescription( "This is a test description of Planning_Project_2" ); |
1010 | nt->setPercentComplete( 20 ); | 1010 | nt->setPercentComplete( 20 ); |
1011 | 1011 | ||
1012 | 1012 | ||
1013 | Todo * sub1 = nt; | 1013 | Todo * sub1 = nt; |
1014 | sub1->setRelatedTo( root1 ); | 1014 | sub1->setRelatedTo( root1 ); |
1015 | 1015 | ||
1016 | nt = new Todo; | 1016 | nt = new Todo; |
1017 | mCalendar->addTodo( nt ); | 1017 | mCalendar->addTodo( nt ); |
1018 | nt->setSummary( "Planning_Project_2: Lutz"); | 1018 | nt->setSummary( "Planning_Project_2: Lutz"); |
1019 | nt->setPriority( 1 ); | 1019 | nt->setPriority( 1 ); |
1020 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1020 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1021 | nt->setPercentComplete( 20 ); | 1021 | nt->setPercentComplete( 20 ); |
1022 | Todo * workLutz11 = nt; | 1022 | Todo * workLutz11 = nt; |
1023 | workLutz11->setRelatedTo( sub1 ); | 1023 | workLutz11->setRelatedTo( sub1 ); |
1024 | 1024 | ||
1025 | nt = new Todo; | 1025 | nt = new Todo; |
1026 | mCalendar->addTodo( nt ); | 1026 | mCalendar->addTodo( nt ); |
1027 | nt->setSummary( "Planning_Project_2: Norbert"); | 1027 | nt->setSummary( "Planning_Project_2: Norbert"); |
1028 | nt->setPriority( 1 ); | 1028 | nt->setPriority( 1 ); |
1029 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1029 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1030 | nt->setPercentComplete( 20 ); | 1030 | nt->setPercentComplete( 20 ); |
1031 | Todo * workNorbert11 = nt; | 1031 | Todo * workNorbert11 = nt; |
1032 | workNorbert11->setRelatedTo( sub1 ); | 1032 | workNorbert11->setRelatedTo( sub1 ); |
1033 | 1033 | ||
1034 | nt = new Todo; | 1034 | nt = new Todo; |
1035 | mCalendar->addTodo( nt ); | 1035 | mCalendar->addTodo( nt ); |
1036 | nt->setSummary( "Work on 2"); | 1036 | nt->setSummary( "Work on 2"); |
1037 | nt->setPriority( 1 ); | 1037 | nt->setPriority( 1 ); |
1038 | nt->setDescription( "This is a test description of Work Project_2" ); | 1038 | nt->setDescription( "This is a test description of Work Project_2" ); |
1039 | nt->setPercentComplete( 20 ); | 1039 | nt->setPercentComplete( 20 ); |
1040 | 1040 | ||
1041 | Todo * sub2 = nt; | 1041 | Todo * sub2 = nt; |
1042 | sub2->setRelatedTo( root1 ); | 1042 | sub2->setRelatedTo( root1 ); |
1043 | 1043 | ||
1044 | 1044 | ||
1045 | nt = new Todo; | 1045 | nt = new Todo; |
1046 | mCalendar->addTodo( nt ); | 1046 | mCalendar->addTodo( nt ); |
1047 | nt->setSummary( "Work on 2: Lutz"); | 1047 | nt->setSummary( "Work on 2: Lutz"); |
1048 | nt->setPriority( 1 ); | 1048 | nt->setPriority( 1 ); |
1049 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1049 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1050 | nt->setPercentComplete( 20 ); | 1050 | nt->setPercentComplete( 20 ); |
1051 | Todo * workLutz12 = nt; | 1051 | Todo * workLutz12 = nt; |
1052 | workLutz12->setRelatedTo( sub2 ); | 1052 | workLutz12->setRelatedTo( sub2 ); |
1053 | 1053 | ||
1054 | nt = new Todo; | 1054 | nt = new Todo; |
1055 | mCalendar->addTodo( nt ); | 1055 | mCalendar->addTodo( nt ); |
1056 | nt->setSummary( "Work on 2: Norbert"); | 1056 | nt->setSummary( "Work on 2: Norbert"); |
1057 | nt->setPriority( 1 ); | 1057 | nt->setPriority( 1 ); |
1058 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1058 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1059 | nt->setPercentComplete( 20 ); | 1059 | nt->setPercentComplete( 20 ); |
1060 | Todo * workNorbert12 = nt; | 1060 | Todo * workNorbert12 = nt; |
1061 | workNorbert12->setRelatedTo( sub2 ); | 1061 | workNorbert12->setRelatedTo( sub2 ); |
1062 | createRunningDate4Todo( root1, start, end, secLenRunning, secLenPausing, 10 ); | 1062 | createRunningDate4Todo( root1, start, end, secLenRunning, secLenPausing, 10 ); |
1063 | createRunningDate4Todo( sub1, start.addSecs( secLenRunning*3 ), start.addDays( 20 ), secLenRunning*2, secLenPausing, 2); | 1063 | createRunningDate4Todo( sub1, start.addSecs( secLenRunning*3 ), start.addDays( 20 ), secLenRunning*2, secLenPausing, 2); |
1064 | createRunningDate4Todo( sub2, start.addDays( 8 ), end, secLenRunning*3, secLenPausing, 7); | 1064 | createRunningDate4Todo( sub2, start.addDays( 8 ), end, secLenRunning*3, secLenPausing, 7); |
1065 | createRunningDate4Todo( workLutz11, start, start.addDays( 18 ), secLenRunning/2, secLenPausing*5, 0); | 1065 | createRunningDate4Todo( workLutz11, start, start.addDays( 18 ), secLenRunning/2, secLenPausing*5, 0); |
1066 | createRunningDate4Todo( workNorbert11, start.addDays( 8 ), start.addDays( 18 ), secLenRunning*5, secLenPausing*5, 1); | 1066 | createRunningDate4Todo( workNorbert11, start.addDays( 8 ), start.addDays( 18 ), secLenRunning*5, secLenPausing*5, 1); |
1067 | createRunningDate4Todo( workLutz12, start.addDays( 8 ),end, secLenRunning, secLenPausing*8, 0); | 1067 | createRunningDate4Todo( workLutz12, start.addDays( 8 ),end, secLenRunning, secLenPausing*8, 0); |
1068 | createRunningDate4Todo( workNorbert11, start.addDays( 28 ), end, secLenRunning/8, secLenPausing*6, 0); | 1068 | createRunningDate4Todo( workNorbert12, start.addDays( 28 ), end, secLenRunning/8, secLenPausing*6, 0); |
1069 | } | 1069 | } |
1070 | updateView(); | 1070 | updateView(); |
1071 | #endif | 1071 | #endif |
1072 | |||
1072 | } | 1073 | } |
1073 | void CalendarView::createRunningDate4Todo( Todo * runT, QDateTime start , QDateTime end, int secLenRunning, int secLenPausing,int dayInterval ) | 1074 | void CalendarView::createRunningDate4Todo( Todo * runT, QDateTime start , QDateTime end, int secLenRunning, int secLenPausing,int dayInterval ) |
1074 | { | 1075 | { |
1075 | static int ccc = 0; | 1076 | static int ccc = 0; |
1076 | ++ccc; | 1077 | ++ccc; |
1077 | QDateTime t_start = start; | 1078 | QDateTime t_start = start; |
1078 | runT->setPriority( 5 ); | 1079 | runT->setPriority( 5 ); |
1079 | runT->setPercentComplete( 0 ); | 1080 | runT->setPercentComplete( 0 ); |
1080 | int count = 0; | 1081 | int count = 0; |
1081 | int prio = 5; | 1082 | int prio = 5; |
1082 | int complete = 0; | 1083 | int complete = 0; |
1083 | while ( t_start < end ) { | 1084 | while ( t_start < end ) { |
1084 | ++count; | 1085 | ++count; |
1085 | if ( count > ccc ) { | 1086 | if ( count > ccc ) { |
1086 | count = 0; | 1087 | count = 0; |
1087 | --prio; | 1088 | --prio; |
1088 | if ( prio == 0 ) prio = 5; | 1089 | if ( prio == 0 ) prio = 5; |
1089 | complete += 20; | 1090 | complete += 20; |
1090 | if ( complete > 100 ) complete = 0; | 1091 | if ( complete > 100 ) complete = 0; |
1091 | runT->setPriority( prio ); | 1092 | runT->setPriority( prio ); |
1092 | runT->setPercentComplete( complete ); | 1093 | runT->setPercentComplete( complete ); |
1093 | } | 1094 | } |
1094 | runT->setRunning( true ); | 1095 | runT->setRunning( true ); |
1095 | runT->saveRunningInfo( "Additional tt comment: running on "+ t_start.toString(), t_start, t_start.addSecs( secLenRunning ) ); | 1096 | runT->saveRunningInfo( "Additional tt comment: running on "+ t_start.toString(), t_start, t_start.addSecs( secLenRunning ) ); |
1096 | if ( dayInterval ) | 1097 | if ( dayInterval ) |
1097 | t_start = t_start.addDays( dayInterval ); | 1098 | t_start = t_start.addDays( dayInterval ); |
1098 | else { | 1099 | else { |
1099 | t_start = t_start.addSecs( secLenRunning + secLenPausing ); | 1100 | t_start = t_start.addSecs( secLenRunning + secLenPausing ); |
1100 | } | 1101 | } |
1101 | } | 1102 | } |
1102 | } | 1103 | } |
1103 | 1104 | ||
1104 | void CalendarView::showDay( QDate d ) | 1105 | void CalendarView::showDay( QDate d ) |
1105 | { | 1106 | { |
1106 | dateNavigator()->blockSignals( true ); | 1107 | dateNavigator()->blockSignals( true ); |
1107 | dateNavigator()->selectDate( d ); | 1108 | dateNavigator()->selectDate( d ); |
1108 | dateNavigator()->blockSignals( false ); | 1109 | dateNavigator()->blockSignals( false ); |
1109 | mViewManager->showDayView(); | 1110 | mViewManager->showDayView(); |
1110 | //dateNavigator()->selectDate( d ); | 1111 | //dateNavigator()->selectDate( d ); |
1111 | } | 1112 | } |
1112 | void CalendarView::timerAlarm() | 1113 | void CalendarView::timerAlarm() |
1113 | { | 1114 | { |
1114 | //qDebug("CalendarView::timerAlarm() "); | 1115 | //qDebug("CalendarView::timerAlarm() "); |
1115 | computeAlarm(mAlarmNotification ); | 1116 | computeAlarm(mAlarmNotification ); |
1116 | } | 1117 | } |
1117 | 1118 | ||
1118 | void CalendarView::suspendAlarm() | 1119 | void CalendarView::suspendAlarm() |
1119 | { | 1120 | { |
1120 | //qDebug(" CalendarView::suspendAlarm() "); | 1121 | //qDebug(" CalendarView::suspendAlarm() "); |
1121 | computeAlarm(mSuspendAlarmNotification ); | 1122 | computeAlarm(mSuspendAlarmNotification ); |
1122 | 1123 | ||
1123 | } | 1124 | } |
1124 | 1125 | ||
1125 | void CalendarView::startAlarm( QString mess , QString filename) | 1126 | void CalendarView::startAlarm( QString mess , QString filename) |
1126 | { | 1127 | { |
1127 | 1128 | ||
1128 | topLevelWidget()->showNormal(); | 1129 | topLevelWidget()->showNormal(); |
1129 | topLevelWidget()->setActiveWindow(); | 1130 | topLevelWidget()->setActiveWindow(); |
1130 | topLevelWidget()->raise(); | 1131 | topLevelWidget()->raise(); |
1131 | 1132 | ||
1132 | mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); | 1133 | mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); |
1133 | QTimer::singleShot( 2000, this, SLOT( checkNextTimerAlarm() ) ); | 1134 | QTimer::singleShot( 2000, this, SLOT( checkNextTimerAlarm() ) ); |
1134 | 1135 | ||
1135 | } | 1136 | } |
1136 | 1137 | ||
1137 | void CalendarView::checkNextTimerAlarm() | 1138 | void CalendarView::checkNextTimerAlarm() |
1138 | { | 1139 | { |
1139 | mCalendar->checkAlarmForIncidence( 0, true ); | 1140 | mCalendar->checkAlarmForIncidence( 0, true ); |
1140 | } | 1141 | } |
1141 | 1142 | ||
1142 | void CalendarView::computeAlarm( QString msg ) | 1143 | void CalendarView::computeAlarm( QString msg ) |
1143 | { | 1144 | { |
1144 | 1145 | ||
1145 | QString mess = msg; | 1146 | QString mess = msg; |
1146 | QString mAlarmMessage = mess.mid( 9 ); | 1147 | QString mAlarmMessage = mess.mid( 9 ); |
1147 | QString filename = MainWindow::resourcePath(); | 1148 | QString filename = MainWindow::resourcePath(); |
1148 | filename += "koalarm.wav"; | 1149 | filename += "koalarm.wav"; |
1149 | QString tempfilename; | 1150 | QString tempfilename; |
1150 | if ( mess.left( 13 ) == "suspend_alarm") { | 1151 | if ( mess.left( 13 ) == "suspend_alarm") { |
1151 | bool error = false; | 1152 | bool error = false; |
1152 | int len = mess.mid( 13 ).find("+++"); | 1153 | int len = mess.mid( 13 ).find("+++"); |
1153 | if ( len < 2 ) | 1154 | if ( len < 2 ) |
1154 | error = true; | 1155 | error = true; |
1155 | else { | 1156 | else { |
1156 | tempfilename = mess.mid( 13, len ); | 1157 | tempfilename = mess.mid( 13, len ); |
1157 | if ( !QFile::exists( tempfilename ) ) | 1158 | if ( !QFile::exists( tempfilename ) ) |
1158 | error = true; | 1159 | error = true; |
1159 | } | 1160 | } |
1160 | if ( ! error ) { | 1161 | if ( ! error ) { |
1161 | filename = tempfilename; | 1162 | filename = tempfilename; |
1162 | } | 1163 | } |
1163 | mAlarmMessage = mess.mid( 13+len+3 ); | 1164 | mAlarmMessage = mess.mid( 13+len+3 ); |
1164 | //qDebug("suspend file %s ",tempfilename.latin1() ); | 1165 | //qDebug("suspend file %s ",tempfilename.latin1() ); |
1165 | startAlarm( mAlarmMessage, filename); | 1166 | startAlarm( mAlarmMessage, filename); |
1166 | return; | 1167 | return; |
1167 | } | 1168 | } |
1168 | if ( mess.left( 11 ) == "timer_alarm") { | 1169 | if ( mess.left( 11 ) == "timer_alarm") { |
1169 | //mTimerTime = 0; | 1170 | //mTimerTime = 0; |
1170 | startAlarm( mess.mid( 11 ), filename ); | 1171 | startAlarm( mess.mid( 11 ), filename ); |
1171 | return; | 1172 | return; |
1172 | } | 1173 | } |
1173 | if ( mess.left( 10 ) == "proc_alarm") { | 1174 | if ( mess.left( 10 ) == "proc_alarm") { |
1174 | bool error = false; | 1175 | bool error = false; |
1175 | int len = mess.mid( 10 ).find("+++"); | 1176 | int len = mess.mid( 10 ).find("+++"); |
1176 | if ( len < 2 ) | 1177 | if ( len < 2 ) |
1177 | error = true; | 1178 | error = true; |
1178 | else { | 1179 | else { |
1179 | tempfilename = mess.mid( 10, len ); | 1180 | tempfilename = mess.mid( 10, len ); |
1180 | if ( !QFile::exists( tempfilename ) ) | 1181 | if ( !QFile::exists( tempfilename ) ) |
1181 | error = true; | 1182 | error = true; |
1182 | } | 1183 | } |
1183 | if ( error ) { | 1184 | if ( error ) { |
1184 | mAlarmMessage = "Procedure Alarm\nError - File not found\n"; | 1185 | mAlarmMessage = "Procedure Alarm\nError - File not found\n"; |
1185 | mAlarmMessage += mess.mid( 10+len+3+9 ); | 1186 | mAlarmMessage += mess.mid( 10+len+3+9 ); |
1186 | } else { | 1187 | } else { |
1187 | //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); | 1188 | //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); |
1188 | //qDebug("-----system command %s ",tempfilename.latin1() ); | 1189 | //qDebug("-----system command %s ",tempfilename.latin1() ); |
1189 | #ifndef _WIN32_ | 1190 | #ifndef _WIN32_ |
1190 | if ( vfork () == 0 ) { | 1191 | if ( vfork () == 0 ) { |
1191 | execl ( tempfilename.latin1(), 0 ); | 1192 | execl ( tempfilename.latin1(), 0 ); |
1192 | return; | 1193 | return; |
1193 | } | 1194 | } |
1194 | #else | 1195 | #else |
1195 | QProcess* p = new QProcess(); | 1196 | QProcess* p = new QProcess(); |
1196 | p->addArgument( tempfilename.latin1() ); | 1197 | p->addArgument( tempfilename.latin1() ); |
1197 | p->start(); | 1198 | p->start(); |
1198 | return; | 1199 | return; |
1199 | #endif | 1200 | #endif |
1200 | 1201 | ||
1201 | return; | 1202 | return; |
1202 | } | 1203 | } |
1203 | 1204 | ||
1204 | //qDebug("+++++++system command %s ",tempfilename.latin1() ); | 1205 | //qDebug("+++++++system command %s ",tempfilename.latin1() ); |
1205 | } | 1206 | } |
1206 | if ( mess.left( 11 ) == "audio_alarm") { | 1207 | if ( mess.left( 11 ) == "audio_alarm") { |
1207 | bool error = false; | 1208 | bool error = false; |
1208 | int len = mess.mid( 11 ).find("+++"); | 1209 | int len = mess.mid( 11 ).find("+++"); |
1209 | if ( len < 2 ) | 1210 | if ( len < 2 ) |
1210 | error = true; | 1211 | error = true; |
1211 | else { | 1212 | else { |
1212 | tempfilename = mess.mid( 11, len ); | 1213 | tempfilename = mess.mid( 11, len ); |
1213 | if ( !QFile::exists( tempfilename ) ) | 1214 | if ( !QFile::exists( tempfilename ) ) |
1214 | error = true; | 1215 | error = true; |
1215 | } | 1216 | } |
1216 | if ( ! error ) { | 1217 | if ( ! error ) { |
1217 | filename = tempfilename; | 1218 | filename = tempfilename; |
1218 | } | 1219 | } |
1219 | mAlarmMessage = mess.mid( 11+len+3+9 ); | 1220 | mAlarmMessage = mess.mid( 11+len+3+9 ); |
1220 | //qDebug("audio file command %s ",tempfilename.latin1() ); | 1221 | //qDebug("audio file command %s ",tempfilename.latin1() ); |
1221 | } | 1222 | } |
1222 | if ( mess.left( 9 ) == "cal_alarm") { | 1223 | if ( mess.left( 9 ) == "cal_alarm") { |
1223 | mAlarmMessage = mess.mid( 9 ) ; | 1224 | mAlarmMessage = mess.mid( 9 ) ; |
1224 | } | 1225 | } |
1225 | 1226 | ||
1226 | startAlarm( mAlarmMessage, filename ); | 1227 | startAlarm( mAlarmMessage, filename ); |
1227 | 1228 | ||
1228 | 1229 | ||
1229 | } | 1230 | } |
1230 | 1231 | ||
1231 | void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString ¬i ) | 1232 | void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString ¬i ) |
1232 | { | 1233 | { |
1233 | //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); | 1234 | //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); |
1234 | 1235 | ||
1235 | mSuspendAlarmNotification = noti; | 1236 | mSuspendAlarmNotification = noti; |
1236 | int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; | 1237 | int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; |
1237 | //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); | 1238 | //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); |
1238 | mSuspendTimer->start( ms , true ); | 1239 | mSuspendTimer->start( ms , true ); |
1239 | 1240 | ||
1240 | } | 1241 | } |
1241 | 1242 | ||
1242 | void CalendarView::addAlarm(const QDateTime &qdt, const QString ¬i ) | 1243 | void CalendarView::addAlarm(const QDateTime &qdt, const QString ¬i ) |
1243 | { | 1244 | { |
1244 | mNextAlarmDateTime = qdt; | 1245 | mNextAlarmDateTime = qdt; |
1245 | //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); | 1246 | //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); |
1246 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { | 1247 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { |
1247 | #ifndef DESKTOP_VERSION | 1248 | #ifndef DESKTOP_VERSION |
1248 | AlarmServer::addAlarm ( qdt,"koalarm", noti.utf8() ); | 1249 | AlarmServer::addAlarm ( qdt,"koalarm", noti.utf8() ); |
1249 | #endif | 1250 | #endif |
1250 | return; | 1251 | return; |
1251 | } | 1252 | } |
1252 | int maxSec; | 1253 | int maxSec; |
1253 | //maxSec = 5; //testing only | 1254 | //maxSec = 5; //testing only |
1254 | maxSec = 86400+3600; // one day+1hour | 1255 | maxSec = 86400+3600; // one day+1hour |
1255 | mAlarmNotification = noti; | 1256 | mAlarmNotification = noti; |
1256 | int sec = QDateTime::currentDateTime().secsTo( qdt ); | 1257 | int sec = QDateTime::currentDateTime().secsTo( qdt ); |
1257 | if ( sec > maxSec ) { | 1258 | if ( sec > maxSec ) { |
1258 | mRecheckAlarmTimer->start( maxSec * 1000 ); | 1259 | mRecheckAlarmTimer->start( maxSec * 1000 ); |
1259 | // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); | 1260 | // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); |
1260 | return; | 1261 | return; |
1261 | } else { | 1262 | } else { |
1262 | mRecheckAlarmTimer->stop(); | 1263 | mRecheckAlarmTimer->stop(); |
1263 | } | 1264 | } |