-rw-r--r-- | korganizer/calendarview.cpp | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 7566b22..d51187a 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -910,4 +910,5 @@ void CalendarView::checkAlarms() | |||
910 | mCalendar->addTodo( root1 ); | 910 | mCalendar->addTodo( root1 ); |
911 | root1->setSummary( "Project_1"); | 911 | root1->setSummary( "Project1"); |
912 | root1->setPriority( 1 ); | 912 | root1->setPriority( 1 ); |
913 | root1->setCategories( QString( "Cat_Pro1") ); | ||
913 | root1->setDescription( "This is a test description of a root Project" ); | 914 | root1->setDescription( "This is a test description of a root Project" ); |
@@ -916,3 +917,3 @@ void CalendarView::checkAlarms() | |||
916 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); | 917 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); |
917 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); | 918 | QDateTime end = QDateTime ( QDate( 2005,8,5), QTime ( 0,0,0) ); |
918 | 919 | ||
@@ -920,6 +921,7 @@ void CalendarView::checkAlarms() | |||
920 | mCalendar->addTodo( nt ); | 921 | mCalendar->addTodo( nt ); |
921 | nt->setSummary( "Planning_Project_1"); | 922 | nt->setSummary( "Planning Project1"); |
922 | nt->setPriority( 1 ); | 923 | nt->setPriority( 1 ); |
923 | nt->setDescription( "This is a test description of Planning_Project_1" ); | 924 | nt->setDescription( "This is a test description of Planning Project1" ); |
924 | nt->setPercentComplete( 20 ); | 925 | nt->setPercentComplete( 20 ); |
926 | nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1") ); | ||
925 | 927 | ||
@@ -931,3 +933,3 @@ void CalendarView::checkAlarms() | |||
931 | mCalendar->addTodo( nt ); | 933 | mCalendar->addTodo( nt ); |
932 | nt->setSummary( "Planning_Project_1: Lutz"); | 934 | nt->setSummary( "Planning Project1: Lutz"); |
933 | nt->setPriority( 1 ); | 935 | nt->setPriority( 1 ); |
@@ -935,2 +937,3 @@ void CalendarView::checkAlarms() | |||
935 | nt->setPercentComplete( 20 ); | 937 | nt->setPercentComplete( 20 ); |
938 | nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1,Cat_Work_Lutz") ); | ||
936 | Todo * workLutz11 = nt; | 939 | Todo * workLutz11 = nt; |
@@ -940,3 +943,3 @@ void CalendarView::checkAlarms() | |||
940 | mCalendar->addTodo( nt ); | 943 | mCalendar->addTodo( nt ); |
941 | nt->setSummary( "Planning_Project_1: Norbert"); | 944 | nt->setSummary( "Planning Project1: Norbert"); |
942 | nt->setPriority( 1 ); | 945 | nt->setPriority( 1 ); |
@@ -944,2 +947,3 @@ void CalendarView::checkAlarms() | |||
944 | nt->setPercentComplete( 20 ); | 947 | nt->setPercentComplete( 20 ); |
948 | nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1,Cat_Work_Norbert") ); | ||
945 | Todo * workNorbert11 = nt; | 949 | Todo * workNorbert11 = nt; |
@@ -952,2 +956,3 @@ void CalendarView::checkAlarms() | |||
952 | nt->setDescription( "This is a test description of Work Project_1" ); | 956 | nt->setDescription( "This is a test description of Work Project_1" ); |
957 | nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1") ); | ||
953 | nt->setPercentComplete( 20 ); | 958 | nt->setPercentComplete( 20 ); |
@@ -963,2 +968,3 @@ void CalendarView::checkAlarms() | |||
963 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 968 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
969 | nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1,Cat_Work_Lutz") ); | ||
964 | nt->setPercentComplete( 20 ); | 970 | nt->setPercentComplete( 20 ); |
@@ -972,2 +978,3 @@ void CalendarView::checkAlarms() | |||
972 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 978 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
979 | nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1,Cat_Work_Norbert") ); | ||
973 | nt->setPercentComplete( 20 ); | 980 | nt->setPercentComplete( 20 ); |
@@ -993,3 +1000,3 @@ void CalendarView::checkAlarms() | |||
993 | mCalendar->addTodo( root1 ); | 1000 | mCalendar->addTodo( root1 ); |
994 | root1->setSummary( "Project_2"); | 1001 | root1->setSummary( "Project2"); |
995 | root1->setPriority( 1 ); | 1002 | root1->setPriority( 1 ); |
@@ -997,5 +1004,6 @@ void CalendarView::checkAlarms() | |||
997 | root1->setPercentComplete( 20 ); | 1004 | root1->setPercentComplete( 20 ); |
1005 | root1->setCategories( QString( "Cat_Pro2") ); | ||
998 | updateView(); | 1006 | updateView(); |
999 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); | 1007 | QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) ); |
1000 | QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) ); | 1008 | QDateTime end = QDateTime ( QDate( 2005,8,5), QTime ( 0,0,0) ); |
1001 | int secLenRunning = 7200; | 1009 | int secLenRunning = 7200; |
@@ -1006,5 +1014,6 @@ void CalendarView::checkAlarms() | |||
1006 | mCalendar->addTodo( nt ); | 1014 | mCalendar->addTodo( nt ); |
1007 | nt->setSummary( "Planning_Project_2"); | 1015 | nt->setSummary( "Planning Project2"); |
1008 | nt->setPriority( 1 ); | 1016 | nt->setPriority( 1 ); |
1009 | nt->setDescription( "This is a test description of Planning_Project_2" ); | 1017 | nt->setDescription( "This is a test description of Planning_Project_2" ); |
1018 | nt->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2") ); | ||
1010 | nt->setPercentComplete( 20 ); | 1019 | nt->setPercentComplete( 20 ); |
@@ -1017,5 +1026,6 @@ void CalendarView::checkAlarms() | |||
1017 | mCalendar->addTodo( nt ); | 1026 | mCalendar->addTodo( nt ); |
1018 | nt->setSummary( "Planning_Project_2: Lutz"); | 1027 | nt->setSummary( "Planning Project2: Lutz"); |
1019 | nt->setPriority( 1 ); | 1028 | nt->setPriority( 1 ); |
1020 | 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->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2,Cat_Work_Lutz") ); | ||
1021 | nt->setPercentComplete( 20 ); | 1031 | nt->setPercentComplete( 20 ); |
@@ -1026,5 +1036,6 @@ void CalendarView::checkAlarms() | |||
1026 | mCalendar->addTodo( nt ); | 1036 | mCalendar->addTodo( nt ); |
1027 | nt->setSummary( "Planning_Project_2: Norbert"); | 1037 | nt->setSummary( "Planning Project2: Norbert"); |
1028 | nt->setPriority( 1 ); | 1038 | nt->setPriority( 1 ); |
1029 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1039 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1040 | nt->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2,Cat_Work_Norbert") ); | ||
1030 | nt->setPercentComplete( 20 ); | 1041 | nt->setPercentComplete( 20 ); |
@@ -1038,2 +1049,3 @@ void CalendarView::checkAlarms() | |||
1038 | nt->setDescription( "This is a test description of Work Project_2" ); | 1049 | nt->setDescription( "This is a test description of Work Project_2" ); |
1050 | nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2") ); | ||
1039 | nt->setPercentComplete( 20 ); | 1051 | nt->setPercentComplete( 20 ); |
@@ -1049,2 +1061,3 @@ void CalendarView::checkAlarms() | |||
1049 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1061 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1062 | nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2,Cat_Work_Lutz") ); | ||
1050 | nt->setPercentComplete( 20 ); | 1063 | nt->setPercentComplete( 20 ); |
@@ -1058,2 +1071,3 @@ void CalendarView::checkAlarms() | |||
1058 | nt->setDescription( "This todo counts the actual work of a person on a project" ); | 1071 | nt->setDescription( "This todo counts the actual work of a person on a project" ); |
1072 | nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2,Cat_Work_Norbert") ); | ||
1059 | nt->setPercentComplete( 20 ); | 1073 | nt->setPercentComplete( 20 ); |