summaryrefslogtreecommitdiffabout
path: root/libkcal/todo.cpp
Unidiff
Diffstat (limited to 'libkcal/todo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/todo.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp
index e98af3c..d062492 100644
--- a/libkcal/todo.cpp
+++ b/libkcal/todo.cpp
@@ -1,482 +1,490 @@
1/* 1/*
2 This file is part of libkcal. 2 This file is part of libkcal.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21#include <kglobal.h> 21#include <kglobal.h>
22#include <kglobalsettings.h> 22#include <kglobalsettings.h>
23#include <klocale.h> 23#include <klocale.h>
24#include <kdebug.h> 24#include <kdebug.h>
25#include <qregexp.h> 25#include <qregexp.h>
26#include <qfileinfo.h> 26#include <qfileinfo.h>
27 27
28#include "calendarlocal.h" 28#include "calendarlocal.h"
29#include "icalformat.h" 29#include "icalformat.h"
30#include "todo.h" 30#include "todo.h"
31 31
32using namespace KCal; 32using namespace KCal;
33 33
34Todo::Todo(): QObject(), Incidence() 34Todo::Todo(): QObject(), Incidence()
35{ 35{
36// mStatus = TENTATIVE; 36// mStatus = TENTATIVE;
37 37
38 mHasDueDate = false; 38 mHasDueDate = false;
39 setHasStartDate( false ); 39 setHasStartDate( false );
40 mCompleted = getEvenTime(QDateTime::currentDateTime()); 40 mCompleted = getEvenTime(QDateTime::currentDateTime());
41 mHasCompletedDate = false; 41 mHasCompletedDate = false;
42 mPercentComplete = 0; 42 mPercentComplete = 0;
43 mRunning = false; 43 mRunning = false;
44 mRunSaveTimer = 0; 44 mRunSaveTimer = 0;
45} 45}
46 46
47Todo::Todo(const Todo &t) : QObject(),Incidence(t) 47Todo::Todo(const Todo &t) : QObject(),Incidence(t)
48{ 48{
49 mDtDue = t.mDtDue; 49 mDtDue = t.mDtDue;
50 mHasDueDate = t.mHasDueDate; 50 mHasDueDate = t.mHasDueDate;
51 mCompleted = t.mCompleted; 51 mCompleted = t.mCompleted;
52 mHasCompletedDate = t.mHasCompletedDate; 52 mHasCompletedDate = t.mHasCompletedDate;
53 mPercentComplete = t.mPercentComplete; 53 mPercentComplete = t.mPercentComplete;
54 mRunning = false; 54 mRunning = false;
55 mRunSaveTimer = 0; 55 mRunSaveTimer = 0;
56} 56}
57 57
58Todo::~Todo() 58Todo::~Todo()
59{ 59{
60 setRunning( false ); 60 setRunning( false );
61 //qDebug("Todo::~Todo() "); 61 //qDebug("Todo::~Todo() ");
62} 62}
63 63
64void Todo::setRunningFalse( QString s ) 64void Todo::setRunningFalse( QString s )
65{ 65{
66 if ( ! mRunning ) 66 if ( ! mRunning )
67 return; 67 return;
68 mRunning = false; 68 mRunning = false;
69 mRunSaveTimer->stop(); 69 mRunSaveTimer->stop();
70 saveRunningInfoToFile( s ); 70 saveRunningInfoToFile( s );
71} 71}
72void Todo::stopRunning()
73{
74 if ( !mRunning )
75 return;
76 if ( mRunSaveTimer )
77 mRunSaveTimer->stop();
78 mRunning = false;
79}
72void Todo::setRunning( bool run ) 80void Todo::setRunning( bool run )
73{ 81{
74 if ( run == mRunning ) 82 if ( run == mRunning )
75 return; 83 return;
76 //qDebug("Todo::setRunning %d ", run); 84 //qDebug("Todo::setRunning %d ", run);
77 if ( !mRunSaveTimer ) { 85 if ( !mRunSaveTimer ) {
78 mRunSaveTimer = new QTimer ( this ); 86 mRunSaveTimer = new QTimer ( this );
79 connect ( mRunSaveTimer, SIGNAL( timeout() ), this , SLOT ( saveRunningInfoToFile() ) ); 87 connect ( mRunSaveTimer, SIGNAL( timeout() ), this , SLOT ( saveRunningInfoToFile() ) );
80 } 88 }
81 mRunning = run; 89 mRunning = run;
82 if ( mRunning ) { 90 if ( mRunning ) {
83 mRunSaveTimer->start( 1000 * 60 * 5 ); // 5 min 91 mRunSaveTimer->start( 1000 * 60 * 5 ); // 5 min
84 mRunStart = QDateTime::currentDateTime(); 92 mRunStart = QDateTime::currentDateTime();
85 } else { 93 } else {
86 mRunSaveTimer->stop(); 94 mRunSaveTimer->stop();
87 saveRunningInfoToFile(); 95 saveRunningInfoToFile();
88 } 96 }
89} 97}
90 98
91void Todo::saveRunningInfoToFile() 99void Todo::saveRunningInfoToFile()
92{ 100{
93 saveRunningInfoToFile( QString::null ); 101 saveRunningInfoToFile( QString::null );
94} 102}
95void Todo::saveRunningInfoToFile( QString comment ) 103void Todo::saveRunningInfoToFile( QString comment )
96{ 104{
97 //qDebug("Todo::saveRunningInfoToFile() %s", summary().latin1()); 105 //qDebug("Todo::saveRunningInfoToFile() %s", summary().latin1());
98 if ( mRunStart.secsTo ( QDateTime::currentDateTime() ) < 30 ) { 106 if ( mRunStart.secsTo ( QDateTime::currentDateTime() ) < 10 ) {
99 qDebug("Running time < 30 seconds. Skipped. "); 107 qDebug("Running time < 30 seconds. Skipped. ");
100 return; 108 return;
101 } 109 }
102 QString dir = KGlobalSettings::timeTrackerDir(); 110 QString dir = KGlobalSettings::timeTrackerDir();
103 //qDebug("%s ", dir.latin1()); 111 //qDebug("%s ", dir.latin1());
104 QString file = "%1%2%3-%4%5%6-"; 112 QString file = "%1%2%3-%4%5%6-";
105 file = file.arg( mRunStart.date().year(), 4).arg( mRunStart.date().month(),2 ).arg( mRunStart.date().day(), 2 ).arg( mRunStart.time().hour(),2 ).arg( mRunStart.time().minute(),2 ).arg( mRunStart.time().second(),2 ); 113 file = file.arg( mRunStart.date().year(), 4).arg( mRunStart.date().month(),2 ).arg( mRunStart.date().day(), 2 ).arg( mRunStart.time().hour(),2 ).arg( mRunStart.time().minute(),2 ).arg( mRunStart.time().second(),2 );
106 file.replace ( QRegExp (" "), "0" ); 114 file.replace ( QRegExp (" "), "0" );
107 file += uid(); 115 file += uid();
108 //qDebug("File %s ",file.latin1() ); 116 //qDebug("File %s ",file.latin1() );
109 CalendarLocal cal; 117 CalendarLocal cal;
110 cal.setLocalTime(); 118 cal.setLocalTime();
111 Todo * to = (Todo*) clone(); 119 Todo * to = (Todo*) clone();
112 to->setFloats( false ); 120 to->setFloats( false );
113 to->setDtStart( mRunStart ); 121 to->setDtStart( mRunStart );
114 to->setHasStartDate( true ); 122 to->setHasStartDate( true );
115 to->setDtDue( QDateTime::currentDateTime() ); 123 to->setDtDue( QDateTime::currentDateTime() );
116 to->setHasDueDate( true ); 124 to->setHasDueDate( true );
117 to->setUid( file ); 125 to->setUid( file );
118 if ( !comment.isEmpty() ) { 126 if ( !comment.isEmpty() ) {
119 QString des = to->description(); 127 QString des = to->description();
120 if ( des.isEmpty () ) 128 if ( des.isEmpty () )
121 to->setDescription( "TT-Note: " + comment ); 129 to->setDescription( "TT-Note: " + comment );
122 else 130 else
123 to->setDescription( "TT-Note: " + comment +"\n" + des ); 131 to->setDescription( "TT-Note: " + comment +"\n" + des );
124 } 132 }
125 cal.addIncidence( to ); 133 cal.addIncidence( to );
126 ICalFormat format; 134 ICalFormat format;
127 file = dir +"/" +file +".ics"; 135 file = dir +"/" +file +".ics";
128 format.save( &cal, file ); 136 format.save( &cal, file );
129 saveParents(); 137 saveParents();
130 138
131} 139}
132void Todo::saveParents() 140void Todo::saveParents()
133{ 141{
134 if (!relatedTo() ) 142 if (!relatedTo() )
135 return; 143 return;
136 Incidence * inc = relatedTo(); 144 Incidence * inc = relatedTo();
137 if ( inc->typeID() != todoID ) 145 if ( inc->typeID() != todoID )
138 return; 146 return;
139 Todo* to = (Todo*)inc; 147 Todo* to = (Todo*)inc;
140 bool saveTodo = false; 148 bool saveTodo = false;
141 QString file = KGlobalSettings::timeTrackerDir() + "/"+ to->uid() + ".ics"; 149 QString file = KGlobalSettings::timeTrackerDir() + "/"+ to->uid() + ".ics";
142 QFileInfo fi ( file ); 150 QFileInfo fi ( file );
143 if ( fi.exists() ) { 151 if ( fi.exists() ) {
144 if ( fi.lastModified () < to->lastModified ()) 152 if ( fi.lastModified () < to->lastModified ())
145 saveTodo = true; 153 saveTodo = true;
146 } else { 154 } else {
147 saveTodo = true; 155 saveTodo = true;
148 } 156 }
149 if ( saveTodo ) { 157 if ( saveTodo ) {
150 CalendarLocal cal; 158 CalendarLocal cal;
151 cal.setLocalTime(); 159 cal.setLocalTime();
152 Todo * par = (Todo *) to->clone(); 160 Todo * par = (Todo *) to->clone();
153 cal.addIncidence( par ); 161 cal.addIncidence( par );
154 ICalFormat format; 162 ICalFormat format;
155 format.save( &cal, file ); 163 format.save( &cal, file );
156 } 164 }
157 to->saveParents(); 165 to->saveParents();
158} 166}
159 167
160int Todo::runTime() 168int Todo::runTime()
161{ 169{
162 if ( !mRunning ) 170 if ( !mRunning )
163 return 0; 171 return 0;
164 return mRunStart.secsTo( QDateTime::currentDateTime() ); 172 return mRunStart.secsTo( QDateTime::currentDateTime() );
165} 173}
166bool Todo::hasRunningSub() 174bool Todo::hasRunningSub()
167{ 175{
168 if ( mRunning ) 176 if ( mRunning )
169 return true; 177 return true;
170 Incidence *aTodo; 178 Incidence *aTodo;
171 for (aTodo = mRelations.first(); aTodo; aTodo = mRelations.next()) { 179 for (aTodo = mRelations.first(); aTodo; aTodo = mRelations.next()) {
172 if ( ((Todo*)aTodo)->hasRunningSub() ) 180 if ( ((Todo*)aTodo)->hasRunningSub() )
173 return true; 181 return true;
174 } 182 }
175 return false; 183 return false;
176} 184}
177Incidence *Todo::clone() 185Incidence *Todo::clone()
178{ 186{
179 return new Todo(*this); 187 return new Todo(*this);
180} 188}
181 189
182bool Todo::contains ( Todo* from ) 190bool Todo::contains ( Todo* from )
183{ 191{
184 192
185 if ( !from->summary().isEmpty() ) 193 if ( !from->summary().isEmpty() )
186 if ( !summary().startsWith( from->summary() )) 194 if ( !summary().startsWith( from->summary() ))
187 return false; 195 return false;
188 if ( from->hasStartDate() ) { 196 if ( from->hasStartDate() ) {
189 if ( !hasStartDate() ) 197 if ( !hasStartDate() )
190 return false; 198 return false;
191 if ( from->dtStart() != dtStart()) 199 if ( from->dtStart() != dtStart())
192 return false; 200 return false;
193 } 201 }
194 if ( from->hasDueDate() ){ 202 if ( from->hasDueDate() ){
195 if ( !hasDueDate() ) 203 if ( !hasDueDate() )
196 return false; 204 return false;
197 if ( from->dtDue() != dtDue()) 205 if ( from->dtDue() != dtDue())
198 return false; 206 return false;
199 } 207 }
200 if ( !from->location().isEmpty() ) 208 if ( !from->location().isEmpty() )
201 if ( !location().startsWith( from->location() ) ) 209 if ( !location().startsWith( from->location() ) )
202 return false; 210 return false;
203 if ( !from->description().isEmpty() ) 211 if ( !from->description().isEmpty() )
204 if ( !description().startsWith( from->description() )) 212 if ( !description().startsWith( from->description() ))
205 return false; 213 return false;
206 if ( from->alarms().count() ) { 214 if ( from->alarms().count() ) {
207 Alarm *a = from->alarms().first(); 215 Alarm *a = from->alarms().first();
208 if ( a->enabled() ){ 216 if ( a->enabled() ){
209 if ( !alarms().count() ) 217 if ( !alarms().count() )
210 return false; 218 return false;
211 Alarm *b = alarms().first(); 219 Alarm *b = alarms().first();
212 if( ! b->enabled() ) 220 if( ! b->enabled() )
213 return false; 221 return false;
214 if ( ! (a->offset() == b->offset() )) 222 if ( ! (a->offset() == b->offset() ))
215 return false; 223 return false;
216 } 224 }
217 } 225 }
218 226
219 QStringList cat = categories(); 227 QStringList cat = categories();
220 QStringList catFrom = from->categories(); 228 QStringList catFrom = from->categories();
221 QString nCat; 229 QString nCat;
222 unsigned int iii; 230 unsigned int iii;
223 for ( iii = 0; iii < catFrom.count();++iii ) { 231 for ( iii = 0; iii < catFrom.count();++iii ) {
224 nCat = catFrom[iii]; 232 nCat = catFrom[iii];
225 if ( !nCat.isEmpty() ) 233 if ( !nCat.isEmpty() )
226 if ( !cat.contains( nCat )) { 234 if ( !cat.contains( nCat )) {
227 return false; 235 return false;
228 } 236 }
229 } 237 }
230 if ( from->isCompleted() ) { 238 if ( from->isCompleted() ) {
231 if ( !isCompleted() ) 239 if ( !isCompleted() )
232 return false; 240 return false;
233 } 241 }
234 if( priority() != from->priority() ) 242 if( priority() != from->priority() )
235 return false; 243 return false;
236 244
237 245
238 return true; 246 return true;
239 247
240} 248}
241bool KCal::operator==( const Todo& t1, const Todo& t2 ) 249bool KCal::operator==( const Todo& t1, const Todo& t2 )
242{ 250{
243 251
244 bool ret = operator==( (const Incidence&)t1, (const Incidence&)t2 ); 252 bool ret = operator==( (const Incidence&)t1, (const Incidence&)t2 );
245 if ( ! ret ) 253 if ( ! ret )
246 return false; 254 return false;
247 if ( t1.hasDueDate() == t2.hasDueDate() ) { 255 if ( t1.hasDueDate() == t2.hasDueDate() ) {
248 if ( t1.hasDueDate() ) { 256 if ( t1.hasDueDate() ) {
249 if ( t1.doesFloat() == t2.doesFloat() ) { 257 if ( t1.doesFloat() == t2.doesFloat() ) {
250 if ( t1.doesFloat() ) { 258 if ( t1.doesFloat() ) {
251 if ( t1.dtDue().date() != t2.dtDue().date() ) 259 if ( t1.dtDue().date() != t2.dtDue().date() )
252 return false; 260 return false;
253 } else 261 } else
254 if ( t1.dtDue() != t2.dtDue() ) 262 if ( t1.dtDue() != t2.dtDue() )
255 return false; 263 return false;
256 } else 264 } else
257 return false;// float != 265 return false;// float !=
258 } 266 }
259 267
260 } else 268 } else
261 return false; 269 return false;
262 if ( t1.percentComplete() != t2.percentComplete() ) 270 if ( t1.percentComplete() != t2.percentComplete() )
263 return false; 271 return false;
264 if ( t1.isCompleted() ) { 272 if ( t1.isCompleted() ) {
265 if ( t1.hasCompletedDate() == t2.hasCompletedDate() ) { 273 if ( t1.hasCompletedDate() == t2.hasCompletedDate() ) {
266 if ( t1.hasCompletedDate() ) { 274 if ( t1.hasCompletedDate() ) {
267 if ( t1.completed() != t2.completed() ) 275 if ( t1.completed() != t2.completed() )
268 return false; 276 return false;
269 } 277 }
270 278
271 } else 279 } else
272 return false; 280 return false;
273 } 281 }
274 return true; 282 return true;
275 283
276} 284}
277 285
278void Todo::setDtDue(const QDateTime &dtDue) 286void Todo::setDtDue(const QDateTime &dtDue)
279{ 287{
280 //int diffsecs = mDtDue.secsTo(dtDue); 288 //int diffsecs = mDtDue.secsTo(dtDue);
281 289
282 /*if (mReadOnly) return; 290 /*if (mReadOnly) return;
283 const QPtrList<Alarm>& alarms = alarms(); 291 const QPtrList<Alarm>& alarms = alarms();
284 for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next()) { 292 for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next()) {
285 if (alarm->enabled()) { 293 if (alarm->enabled()) {
286 alarm->setTime(alarm->time().addSecs(diffsecs)); 294 alarm->setTime(alarm->time().addSecs(diffsecs));
287 } 295 }
288 }*/ 296 }*/
289 mDtDue = getEvenTime(dtDue); 297 mDtDue = getEvenTime(dtDue);
290 298
291 //kdDebug(5800) << "setDtDue says date is " << mDtDue.toString() << endl; 299 //kdDebug(5800) << "setDtDue says date is " << mDtDue.toString() << endl;
292 300
293 /*const QPtrList<Alarm>& alarms = alarms(); 301 /*const QPtrList<Alarm>& alarms = alarms();
294 for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next()) 302 for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next())
295 alarm->setAlarmStart(mDtDue);*/ 303 alarm->setAlarmStart(mDtDue);*/
296 updated(); 304 updated();
297} 305}
298 306
299QDateTime Todo::dtDue() const 307QDateTime Todo::dtDue() const
300{ 308{
301 return mDtDue; 309 return mDtDue;
302} 310}
303 311
304QString Todo::dtDueTimeStr() const 312QString Todo::dtDueTimeStr() const
305{ 313{
306 return KGlobal::locale()->formatTime(mDtDue.time()); 314 return KGlobal::locale()->formatTime(mDtDue.time());
307} 315}
308 316
309QString Todo::dtDueDateStr(bool shortfmt) const 317QString Todo::dtDueDateStr(bool shortfmt) const
310{ 318{
311 return KGlobal::locale()->formatDate(mDtDue.date(),shortfmt); 319 return KGlobal::locale()->formatDate(mDtDue.date(),shortfmt);
312} 320}
313 321
314QString Todo::dtDueStr(bool shortfmt) const 322QString Todo::dtDueStr(bool shortfmt) const
315{ 323{
316 if ( doesFloat() ) 324 if ( doesFloat() )
317 return KGlobal::locale()->formatDate(mDtDue.date(),shortfmt); 325 return KGlobal::locale()->formatDate(mDtDue.date(),shortfmt);
318 return KGlobal::locale()->formatDateTime(mDtDue, shortfmt); 326 return KGlobal::locale()->formatDateTime(mDtDue, shortfmt);
319} 327}
320// retval 0 : no found 328// retval 0 : no found
321// 1 : due for date found 329// 1 : due for date found
322// 2 : overdue for date found 330// 2 : overdue for date found
323int Todo::hasDueSubTodoForDate( const QDate & date, bool checkSubtodos ) 331int Todo::hasDueSubTodoForDate( const QDate & date, bool checkSubtodos )
324{ 332{
325 int retval = 0; 333 int retval = 0;
326 if ( isCompleted() ) 334 if ( isCompleted() )
327 return 0; 335 return 0;
328 if ( hasDueDate() ) { 336 if ( hasDueDate() ) {
329 if ( dtDue().date() < date ) 337 if ( dtDue().date() < date )
330 return 2; 338 return 2;
331 // we do not return, because we may find an overdue sub todo 339 // we do not return, because we may find an overdue sub todo
332 if ( dtDue().date() == date ) 340 if ( dtDue().date() == date )
333 retval = 1; 341 retval = 1;
334 } 342 }
335 if ( checkSubtodos ) { 343 if ( checkSubtodos ) {
336 Incidence *aTodo; 344 Incidence *aTodo;
337 for (aTodo = mRelations.first(); aTodo; aTodo = mRelations.next()) { 345 for (aTodo = mRelations.first(); aTodo; aTodo = mRelations.next()) {
338 int ret = ((Todo*)aTodo)->hasDueSubTodoForDate( date ,checkSubtodos ); 346 int ret = ((Todo*)aTodo)->hasDueSubTodoForDate( date ,checkSubtodos );
339 if ( ret == 2 ) 347 if ( ret == 2 )
340 return 2; 348 return 2;
341 if ( ret == 1) 349 if ( ret == 1)
342 retval = 1; 350 retval = 1;
343 } 351 }
344 } 352 }
345 return retval; 353 return retval;
346} 354}
347int Todo::hasDueSubTodo( bool checkSubtodos ) //= true 355int Todo::hasDueSubTodo( bool checkSubtodos ) //= true
348{ 356{
349 return hasDueSubTodoForDate(QDate::currentDate(), checkSubtodos ); 357 return hasDueSubTodoForDate(QDate::currentDate(), checkSubtodos );
350} 358}
351bool Todo::hasDueDate() const 359bool Todo::hasDueDate() const
352{ 360{
353 return mHasDueDate; 361 return mHasDueDate;
354} 362}
355 363
356void Todo::setHasDueDate(bool f) 364void Todo::setHasDueDate(bool f)
357{ 365{
358 if (mReadOnly) return; 366 if (mReadOnly) return;
359 mHasDueDate = f; 367 mHasDueDate = f;
360 updated(); 368 updated();
361} 369}
362 370
363 371
364#if 0 372#if 0
365void Todo::setStatus(const QString &statStr) 373void Todo::setStatus(const QString &statStr)
366{ 374{
367 if (mReadOnly) return; 375 if (mReadOnly) return;
368 QString ss(statStr.upper()); 376 QString ss(statStr.upper());
369 377
370 if (ss == "X-ACTION") 378 if (ss == "X-ACTION")
371 mStatus = NEEDS_ACTION; 379 mStatus = NEEDS_ACTION;
372 else if (ss == "NEEDS ACTION") 380 else if (ss == "NEEDS ACTION")
373 mStatus = NEEDS_ACTION; 381 mStatus = NEEDS_ACTION;
374 else if (ss == "ACCEPTED") 382 else if (ss == "ACCEPTED")
375 mStatus = ACCEPTED; 383 mStatus = ACCEPTED;
376 else if (ss == "SENT") 384 else if (ss == "SENT")
377 mStatus = SENT; 385 mStatus = SENT;
378 else if (ss == "TENTATIVE") 386 else if (ss == "TENTATIVE")
379 mStatus = TENTATIVE; 387 mStatus = TENTATIVE;
380 else if (ss == "CONFIRMED") 388 else if (ss == "CONFIRMED")
381 mStatus = CONFIRMED; 389 mStatus = CONFIRMED;
382 else if (ss == "DECLINED") 390 else if (ss == "DECLINED")
383 mStatus = DECLINED; 391 mStatus = DECLINED;
384 else if (ss == "COMPLETED") 392 else if (ss == "COMPLETED")
385 mStatus = COMPLETED; 393 mStatus = COMPLETED;
386 else if (ss == "DELEGATED") 394 else if (ss == "DELEGATED")
387 mStatus = DELEGATED; 395 mStatus = DELEGATED;
388 396
389 updated(); 397 updated();
390} 398}
391 399
392void Todo::setStatus(int status) 400void Todo::setStatus(int status)
393{ 401{
394 if (mReadOnly) return; 402 if (mReadOnly) return;
395 mStatus = status; 403 mStatus = status;
396 updated(); 404 updated();
397} 405}
398 406
399int Todo::status() const 407int Todo::status() const
400{ 408{
401 return mStatus; 409 return mStatus;
402} 410}
403 411
404QString Todo::statusStr() const 412QString Todo::statusStr() const
405{ 413{
406 switch(mStatus) { 414 switch(mStatus) {
407 case NEEDS_ACTION: 415 case NEEDS_ACTION:
408 return QString("NEEDS ACTION"); 416 return QString("NEEDS ACTION");
409 break; 417 break;
410 case ACCEPTED: 418 case ACCEPTED:
411 return QString("ACCEPTED"); 419 return QString("ACCEPTED");
412 break; 420 break;
413 case SENT: 421 case SENT:
414 return QString("SENT"); 422 return QString("SENT");
415 break; 423 break;
416 case TENTATIVE: 424 case TENTATIVE:
417 return QString("TENTATIVE"); 425 return QString("TENTATIVE");
418 break; 426 break;
419 case CONFIRMED: 427 case CONFIRMED:
420 return QString("CONFIRMED"); 428 return QString("CONFIRMED");
421 break; 429 break;
422 case DECLINED: 430 case DECLINED:
423 return QString("DECLINED"); 431 return QString("DECLINED");
424 break; 432 break;
425 case COMPLETED: 433 case COMPLETED:
426 return QString("COMPLETED"); 434 return QString("COMPLETED");
427 break; 435 break;
428 case DELEGATED: 436 case DELEGATED:
429 return QString("DELEGATED"); 437 return QString("DELEGATED");
430 break; 438 break;
431 } 439 }
432 return QString(""); 440 return QString("");
433} 441}
434#endif 442#endif
435 443
436bool Todo::isCompleted() const 444bool Todo::isCompleted() const
437{ 445{
438 if (mPercentComplete == 100) { 446 if (mPercentComplete == 100) {
439 return true; 447 return true;
440 } 448 }
441 else return false; 449 else return false;
442} 450}
443 451
444void Todo::setCompleted(bool completed) 452void Todo::setCompleted(bool completed)
445{ 453{
446 if ( mHasRecurrenceID && completed && mPercentComplete != 100 ) { 454 if ( mHasRecurrenceID && completed && mPercentComplete != 100 ) {
447 if ( !setRecurDates() ) 455 if ( !setRecurDates() )
448 completed = false; 456 completed = false;
449 } 457 }
450 if (completed) mPercentComplete = 100; 458 if (completed) mPercentComplete = 100;
451 else { 459 else {
452 mPercentComplete = 0; 460 mPercentComplete = 0;
453 mHasCompletedDate = false; 461 mHasCompletedDate = false;
454 } 462 }
455 updated(); 463 updated();
456} 464}
457 465
458QDateTime Todo::completed() const 466QDateTime Todo::completed() const
459{ 467{
460 return mCompleted; 468 return mCompleted;
461} 469}
462 470
463QString Todo::completedStr( bool shortF ) const 471QString Todo::completedStr( bool shortF ) const
464{ 472{
465 return KGlobal::locale()->formatDateTime(mCompleted, shortF); 473 return KGlobal::locale()->formatDateTime(mCompleted, shortF);
466} 474}
467 475
468void Todo::setCompleted(const QDateTime &completed) 476void Todo::setCompleted(const QDateTime &completed)
469{ 477{
470 //qDebug("Todo::setCompleted "); 478 //qDebug("Todo::setCompleted ");
471 if ( mHasCompletedDate ) { 479 if ( mHasCompletedDate ) {
472 // qDebug("has completed data - return "); 480 // qDebug("has completed data - return ");
473 return; 481 return;
474 } 482 }
475 mHasCompletedDate = true; 483 mHasCompletedDate = true;
476 mPercentComplete = 100; 484 mPercentComplete = 100;
477 mCompleted = getEvenTime(completed); 485 mCompleted = getEvenTime(completed);
478 updated(); 486 updated();
479} 487}
480 488
481bool Todo::hasCompletedDate() const 489bool Todo::hasCompletedDate() const
482{ 490{