summaryrefslogtreecommitdiffabout
path: root/korganizer/calendarview.cpp
authorzautrix <zautrix>2005-08-04 04:08:59 (UTC)
committer zautrix <zautrix>2005-08-04 04:08:59 (UTC)
commit7c639808d3d78e323857e0a110237e6d77bf04c8 (patch) (side-by-side diff)
tree793083edac43e84821257aed8782c29dfb88632f /korganizer/calendarview.cpp
parentbfa3d79c4172c4a8efebb1f2801e152a3a706dca (diff)
downloadkdepimpi-7c639808d3d78e323857e0a110237e6d77bf04c8.zip
kdepimpi-7c639808d3d78e323857e0a110237e6d77bf04c8.tar.gz
kdepimpi-7c639808d3d78e323857e0a110237e6d77bf04c8.tar.bz2
fixxx
Diffstat (limited to 'korganizer/calendarview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/calendarview.cpp36
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
@@ -908,20 +908,22 @@ void CalendarView::checkAlarms()
{
Todo * root1 = new Todo;
mCalendar->addTodo( root1 );
- root1->setSummary( "Project_1");
+ root1->setSummary( "Project1");
root1->setPriority( 1 );
+ root1->setCategories( QString( "Cat_Pro1") );
root1->setDescription( "This is a test description of a root Project" );
root1->setPercentComplete( 20 );
updateView();
QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) );
- QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) );
+ QDateTime end = QDateTime ( QDate( 2005,8,5), QTime ( 0,0,0) );
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_1");
+ nt->setSummary( "Planning Project1");
nt->setPriority( 1 );
- nt->setDescription( "This is a test description of Planning_Project_1" );
+ nt->setDescription( "This is a test description of Planning Project1" );
nt->setPercentComplete( 20 );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1") );
Todo * sub1 = nt;
@@ -929,19 +931,21 @@ void CalendarView::checkAlarms()
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_1: Lutz");
+ nt->setSummary( "Planning Project1: Lutz");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
nt->setPercentComplete( 20 );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1,Cat_Work_Lutz") );
Todo * workLutz11 = nt;
workLutz11->setRelatedTo( sub1 );
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_1: Norbert");
+ nt->setSummary( "Planning Project1: Norbert");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
nt->setPercentComplete( 20 );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Plan_Pro1,Cat_Work_Norbert") );
Todo * workNorbert11 = nt;
workNorbert11->setRelatedTo( sub1 );
@@ -950,6 +954,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 1");
nt->setPriority( 1 );
nt->setDescription( "This is a test description of Work Project_1" );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1") );
nt->setPercentComplete( 20 );
Todo * sub2 = nt;
@@ -961,6 +966,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 1: Lutz");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1,Cat_Work_Lutz") );
nt->setPercentComplete( 20 );
Todo * workLutz12 = nt;
workLutz12->setRelatedTo( sub2 );
@@ -970,6 +976,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 1: Norbert");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro1,Cat_Work_Pro1,Cat_Work_Norbert") );
nt->setPercentComplete( 20 );
Todo * workNorbert12 = nt;
workNorbert12->setRelatedTo( sub2 );
@@ -991,22 +998,24 @@ void CalendarView::checkAlarms()
{
Todo * root1 = new Todo;
mCalendar->addTodo( root1 );
- root1->setSummary( "Project_2");
+ root1->setSummary( "Project2");
root1->setPriority( 1 );
root1->setDescription( "This is a test description of a root Project 2" );
root1->setPercentComplete( 20 );
+ root1->setCategories( QString( "Cat_Pro2") );
updateView();
QDateTime start = QDateTime ( QDate( 2004,11,1), QTime ( 7,30,0) );
- QDateTime end = QDateTime ( QDate( 2005,8,1), QTime ( 0,0,0) );
+ QDateTime end = QDateTime ( QDate( 2005,8,5), QTime ( 0,0,0) );
int secLenRunning = 7200;
int secLenPausing = 3600 * 3;
int dayInterval = 1;
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_2");
+ nt->setSummary( "Planning Project2");
nt->setPriority( 1 );
nt->setDescription( "This is a test description of Planning_Project_2" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2") );
nt->setPercentComplete( 20 );
@@ -1015,18 +1024,20 @@ void CalendarView::checkAlarms()
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_2: Lutz");
+ nt->setSummary( "Planning Project2: Lutz");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2,Cat_Work_Lutz") );
nt->setPercentComplete( 20 );
Todo * workLutz11 = nt;
workLutz11->setRelatedTo( sub1 );
nt = new Todo;
mCalendar->addTodo( nt );
- nt->setSummary( "Planning_Project_2: Norbert");
+ nt->setSummary( "Planning Project2: Norbert");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Plan_Pro2,Cat_Work_Norbert") );
nt->setPercentComplete( 20 );
Todo * workNorbert11 = nt;
workNorbert11->setRelatedTo( sub1 );
@@ -1036,6 +1047,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 2");
nt->setPriority( 1 );
nt->setDescription( "This is a test description of Work Project_2" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2") );
nt->setPercentComplete( 20 );
Todo * sub2 = nt;
@@ -1047,6 +1059,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 2: Lutz");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2,Cat_Work_Lutz") );
nt->setPercentComplete( 20 );
Todo * workLutz12 = nt;
workLutz12->setRelatedTo( sub2 );
@@ -1056,6 +1069,7 @@ void CalendarView::checkAlarms()
nt->setSummary( "Work on 2: Norbert");
nt->setPriority( 1 );
nt->setDescription( "This todo counts the actual work of a person on a project" );
+ nt->setCategories( QString( "Cat_Pro2,Cat_Work_Pro2,Cat_Work_Norbert") );
nt->setPercentComplete( 20 );
Todo * workNorbert12 = nt;
workNorbert12->setRelatedTo( sub2 );