summaryrefslogtreecommitdiff
authordrw <drw>2005-02-16 19:45:54 (UTC)
committer drw <drw>2005-02-16 19:45:54 (UTC)
commit28feca2d605de0bd5a1ccf2217dfef2a17466307 (patch) (unidiff)
tree0badbaa8bbbecfbe0541f1686572e12c2b8f383a
parent5ad21664e5db417a18682903a660f4651c68ff12 (diff)
downloadopie-28feca2d605de0bd5a1ccf2217dfef2a17466307.zip
opie-28feca2d605de0bd5a1ccf2217dfef2a17466307.tar.gz
opie-28feca2d605de0bd5a1ccf2217dfef2a17466307.tar.bz2
Fix for bug #1542 - todo crashes when priority < 1 or > 5
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/core/opimtodo.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/libopie2/opiepim/core/opimtodo.cpp b/libopie2/opiepim/core/opimtodo.cpp
index 16ca987..5bdc648 100644
--- a/libopie2/opiepim/core/opimtodo.cpp
+++ b/libopie2/opiepim/core/opimtodo.cpp
@@ -24,214 +24,222 @@
24 -- :-=` this library; see the file COPYING.LIB. 24 -- :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30#include "opimtodo.h" 30#include "opimtodo.h"
31 31
32/* OPIE */ 32/* OPIE */
33#include <opie2/opimstate.h> 33#include <opie2/opimstate.h>
34#include <opie2/opimrecurrence.h> 34#include <opie2/opimrecurrence.h>
35#include <opie2/opimmaintainer.h> 35#include <opie2/opimmaintainer.h>
36#include <opie2/opimnotifymanager.h> 36#include <opie2/opimnotifymanager.h>
37#include <opie2/opimresolver.h> 37#include <opie2/opimresolver.h>
38#include <opie2/odebug.h> 38#include <opie2/odebug.h>
39 39
40#include <qpe/palmtopuidgen.h> 40#include <qpe/palmtopuidgen.h>
41#include <qpe/palmtoprecord.h> 41#include <qpe/palmtoprecord.h>
42#include <qpe/categories.h> 42#include <qpe/categories.h>
43#include <qpe/categoryselect.h> 43#include <qpe/categoryselect.h>
44#include <qpe/stringutil.h> 44#include <qpe/stringutil.h>
45 45
46/* QT */ 46/* QT */
47#include <qobject.h> 47#include <qobject.h>
48#include <qshared.h> 48#include <qshared.h>
49 49
50namespace Opie 50namespace Opie
51{ 51{
52 52
53struct OPimTodo::OPimTodoData : public QShared 53struct OPimTodo::OPimTodoData : public QShared
54{ 54{
55 OPimTodoData() : QShared() 55 OPimTodoData() : QShared()
56 { 56 {
57 recur = 0; 57 recur = 0;
58 state = 0; 58 state = 0;
59 maintainer = 0; 59 maintainer = 0;
60 notifiers = 0; 60 notifiers = 0;
61 }; 61 };
62 ~OPimTodoData() 62 ~OPimTodoData()
63 { 63 {
64 delete recur; 64 delete recur;
65 delete maintainer; 65 delete maintainer;
66 delete notifiers; 66 delete notifiers;
67 delete state; 67 delete state;
68 } 68 }
69 69
70 QDate date; 70 QDate date;
71 bool isCompleted: 1; 71 bool isCompleted: 1;
72 bool hasDate: 1; 72 bool hasDate: 1;
73 int priority; 73 int priority;
74 QString desc; 74 QString desc;
75 QString sum; 75 QString sum;
76 QMap<QString, QString> extra; 76 QMap<QString, QString> extra;
77 ushort prog; 77 ushort prog;
78 OPimState *state; 78 OPimState *state;
79 OPimRecurrence *recur; 79 OPimRecurrence *recur;
80 OPimMaintainer *maintainer; 80 OPimMaintainer *maintainer;
81 QDate start; 81 QDate start;
82 QDate completed; 82 QDate completed;
83 OPimNotifyManager *notifiers; 83 OPimNotifyManager *notifiers;
84}; 84};
85 85
86 86
87OPimTodo::OPimTodo( const OPimTodo &event ) 87OPimTodo::OPimTodo( const OPimTodo &event )
88 : OPimRecord( event ), data( event.data ) 88 : OPimRecord( event ), data( event.data )
89{ 89{
90 data->ref(); 90 data->ref();
91} 91}
92 92
93 93
94OPimTodo::~OPimTodo() 94OPimTodo::~OPimTodo()
95{ 95{
96 96
97 if ( data->deref() ) 97 if ( data->deref() )
98 { 98 {
99 delete data; 99 delete data;
100 data = 0l; 100 data = 0l;
101 } 101 }
102} 102}
103 103
104 104
105OPimTodo::OPimTodo( bool completed, int priority, 105OPimTodo::OPimTodo( bool completed, int priority,
106 const QArray<int> &category, 106 const QArray<int> &category,
107 const QString& summary, 107 const QString& summary,
108 const QString &description, 108 const QString &description,
109 ushort progress, 109 ushort progress,
110 bool hasDate, QDate date, int uid ) 110 bool hasDate, QDate date, int uid )
111 : OPimRecord( uid ) 111 : OPimRecord( uid )
112{ 112{
113 setCategories( category ); 113 setCategories( category );
114 114
115 data = new OPimTodoData; 115 data = new OPimTodoData;
116 116
117 data->date = date; 117 data->date = date;
118 data->isCompleted = completed; 118 data->isCompleted = completed;
119 data->hasDate = hasDate; 119 data->hasDate = hasDate;
120 if ( priority < 1 )
121 priority = 1;
122 else if ( priority > 5 )
123 priority = 5;
120 data->priority = priority; 124 data->priority = priority;
121 data->sum = summary; 125 data->sum = summary;
122 data->prog = progress; 126 data->prog = progress;
123 data->desc = Qtopia::simplifyMultiLineSpace( description ); 127 data->desc = Qtopia::simplifyMultiLineSpace( description );
124} 128}
125 129
126 130
127OPimTodo::OPimTodo( bool completed, int priority, 131OPimTodo::OPimTodo( bool completed, int priority,
128 const QStringList &category, 132 const QStringList &category,
129 const QString& summary, 133 const QString& summary,
130 const QString &description, 134 const QString &description,
131 ushort progress, 135 ushort progress,
132 bool hasDate, QDate date, int uid ) 136 bool hasDate, QDate date, int uid )
133 : OPimRecord( uid ) 137 : OPimRecord( uid )
134{ 138{
135 setCategories( idsFromString( category.join( ";" ) ) ); 139 setCategories( idsFromString( category.join( ";" ) ) );
136 140
137 data = new OPimTodoData; 141 data = new OPimTodoData;
138 142
139 data->date = date; 143 data->date = date;
140 data->isCompleted = completed; 144 data->isCompleted = completed;
141 data->hasDate = hasDate; 145 data->hasDate = hasDate;
146 if ( priority < 1 )
147 priority = 1;
148 else if ( priority > 5 )
149 priority = 5;
142 data->priority = priority; 150 data->priority = priority;
143 data->sum = summary; 151 data->sum = summary;
144 data->prog = progress; 152 data->prog = progress;
145 data->desc = Qtopia::simplifyMultiLineSpace( description ); 153 data->desc = Qtopia::simplifyMultiLineSpace( description );
146} 154}
147 155
148 156
149bool OPimTodo::match( const QRegExp &regExp ) const 157bool OPimTodo::match( const QRegExp &regExp ) const
150{ 158{
151 if ( QString::number( data->priority ).find( regExp ) != -1 ) 159 if ( QString::number( data->priority ).find( regExp ) != -1 )
152 { 160 {
153 setLastHitField( Priority ); 161 setLastHitField( Priority );
154 return true; 162 return true;
155 } 163 }
156 else if ( data->hasDate && data->date.toString().find( regExp ) != -1 ) 164 else if ( data->hasDate && data->date.toString().find( regExp ) != -1 )
157 { 165 {
158 setLastHitField( HasDate ); 166 setLastHitField( HasDate );
159 return true; 167 return true;
160 } 168 }
161 else if ( data->desc.find( regExp ) != -1 ) 169 else if ( data->desc.find( regExp ) != -1 )
162 { 170 {
163 setLastHitField( Description ); 171 setLastHitField( Description );
164 return true; 172 return true;
165 } 173 }
166 else if ( data->sum.find( regExp ) != -1 ) 174 else if ( data->sum.find( regExp ) != -1 )
167 { 175 {
168 setLastHitField( Summary ); 176 setLastHitField( Summary );
169 return true; 177 return true;
170 } 178 }
171 return false; 179 return false;
172} 180}
173 181
174 182
175bool OPimTodo::isCompleted() const 183bool OPimTodo::isCompleted() const
176{ 184{
177 return data->isCompleted; 185 return data->isCompleted;
178} 186}
179 187
180 188
181bool OPimTodo::hasDueDate() const 189bool OPimTodo::hasDueDate() const
182{ 190{
183 return data->hasDate; 191 return data->hasDate;
184} 192}
185 193
186/** 194/**
187 * \brief Does this Todo have a start date 195 * \brief Does this Todo have a start date
188 * 196 *
189 * Does this Todo have a start date. The decision 197 * Does this Todo have a start date. The decision
190 * is based on if the internal startDate isValid 198 * is based on if the internal startDate isValid
191 * in the sense of QDate::isValid. 199 * in the sense of QDate::isValid.
192 * 200 *
193 * @return True if the startDate isValid 201 * @return True if the startDate isValid
194 * @see startDate 202 * @see startDate
195 * @see setStartDate 203 * @see setStartDate
196 * @see QDate::isValid() 204 * @see QDate::isValid()
197 */ 205 */
198bool OPimTodo::hasStartDate() const 206bool OPimTodo::hasStartDate() const
199{ 207{
200 return data->start.isValid(); 208 return data->start.isValid();
201} 209}
202 210
203/** 211/**
204 * \brief Does this Todo have a Date when it was completed 212 * \brief Does this Todo have a Date when it was completed
205 * 213 *
206 * As in \sa hasStartDate() it is determined if there 214 * As in \sa hasStartDate() it is determined if there
207 * is a completed date by looking if the internal date 215 * is a completed date by looking if the internal date
208 * isValid \sa QDate::isValid. 216 * isValid \sa QDate::isValid.
209 * 217 *
210 * @see hasStartDate 218 * @see hasStartDate
211 * @return True if the completedDate is set and valid. 219 * @return True if the completedDate is set and valid.
212 */ 220 */
213bool OPimTodo::hasCompletedDate() const 221bool OPimTodo::hasCompletedDate() const
214{ 222{
215 return data->completed.isValid(); 223 return data->completed.isValid();
216} 224}
217 225
218 226
219int OPimTodo::priority() const 227int OPimTodo::priority() const
220{ 228{
221 return data->priority; 229 return data->priority;
222} 230}
223 231
224 232
225QString OPimTodo::summary() const 233QString OPimTodo::summary() const
226{ 234{
227 return data->sum; 235 return data->sum;
228} 236}
229 237
230 238
231ushort OPimTodo::progress() const 239ushort OPimTodo::progress() const
232{ 240{
233 return data->prog; 241 return data->prog;
234} 242}
235 243
236 244
237QDate OPimTodo::dueDate() const 245QDate OPimTodo::dueDate() const
@@ -246,192 +254,196 @@ QDate OPimTodo::startDate() const
246} 254}
247 255
248 256
249QDate OPimTodo::completedDate() const 257QDate OPimTodo::completedDate() const
250{ 258{
251 return data->completed; 259 return data->completed;
252} 260}
253 261
254 262
255QString OPimTodo::description() const 263QString OPimTodo::description() const
256{ 264{
257 return data->desc; 265 return data->desc;
258} 266}
259 267
260 268
261bool OPimTodo::hasState() const 269bool OPimTodo::hasState() const
262{ 270{
263 if ( !data->state ) return false; 271 if ( !data->state ) return false;
264 return ( data->state->state() != OPimState::Undefined ); 272 return ( data->state->state() != OPimState::Undefined );
265} 273}
266 274
267 275
268OPimState OPimTodo::state() const 276OPimState OPimTodo::state() const
269{ 277{
270 if ( !data->state ) 278 if ( !data->state )
271 { 279 {
272 OPimState state; 280 OPimState state;
273 return state; 281 return state;
274 } 282 }
275 283
276 return ( *data->state ); 284 return ( *data->state );
277} 285}
278 286
279 287
280bool OPimTodo::hasRecurrence() const 288bool OPimTodo::hasRecurrence() const
281{ 289{
282 if ( !data->recur ) return false; 290 if ( !data->recur ) return false;
283 return data->recur->doesRecur(); 291 return data->recur->doesRecur();
284} 292}
285 293
286 294
287OPimRecurrence OPimTodo::recurrence() const 295OPimRecurrence OPimTodo::recurrence() const
288{ 296{
289 if ( !data->recur ) return OPimRecurrence(); 297 if ( !data->recur ) return OPimRecurrence();
290 298
291 return ( *data->recur ); 299 return ( *data->recur );
292} 300}
293 301
294 302
295bool OPimTodo::hasMaintainer() const 303bool OPimTodo::hasMaintainer() const
296{ 304{
297 if ( !data->maintainer ) return false; 305 if ( !data->maintainer ) return false;
298 306
299 return ( data->maintainer->mode() != OPimMaintainer::Undefined ); 307 return ( data->maintainer->mode() != OPimMaintainer::Undefined );
300} 308}
301 309
302 310
303OPimMaintainer OPimTodo::maintainer() const 311OPimMaintainer OPimTodo::maintainer() const
304{ 312{
305 if ( !data->maintainer ) return OPimMaintainer(); 313 if ( !data->maintainer ) return OPimMaintainer();
306 314
307 return ( *data->maintainer ); 315 return ( *data->maintainer );
308} 316}
309 317
310 318
311void OPimTodo::setCompleted( bool completed ) 319void OPimTodo::setCompleted( bool completed )
312{ 320{
313 changeOrModify(); 321 changeOrModify();
314 data->isCompleted = completed; 322 data->isCompleted = completed;
315} 323}
316 324
317 325
318void OPimTodo::setHasDueDate( bool hasDate ) 326void OPimTodo::setHasDueDate( bool hasDate )
319{ 327{
320 changeOrModify(); 328 changeOrModify();
321 data->hasDate = hasDate; 329 data->hasDate = hasDate;
322} 330}
323 331
324 332
325void OPimTodo::setDescription( const QString &desc ) 333void OPimTodo::setDescription( const QString &desc )
326{ 334{
327 changeOrModify(); 335 changeOrModify();
328 data->desc = Qtopia::simplifyMultiLineSpace( desc ); 336 data->desc = Qtopia::simplifyMultiLineSpace( desc );
329} 337}
330 338
331 339
332void OPimTodo::setSummary( const QString& sum ) 340void OPimTodo::setSummary( const QString& sum )
333{ 341{
334 changeOrModify(); 342 changeOrModify();
335 data->sum = sum; 343 data->sum = sum;
336} 344}
337 345
338 346
339void OPimTodo::setPriority( int prio ) 347void OPimTodo::setPriority( int prio )
340{ 348{
341 changeOrModify(); 349 changeOrModify();
350 if ( prio < 1 )
351 prio = 1;
352 else if ( prio > 5 )
353 prio = 5;
342 data->priority = prio; 354 data->priority = prio;
343} 355}
344 356
345 357
346void OPimTodo::setDueDate( const QDate& date ) 358void OPimTodo::setDueDate( const QDate& date )
347{ 359{
348 changeOrModify(); 360 changeOrModify();
349 data->date = date; 361 data->date = date;
350} 362}
351 363
352 364
353void OPimTodo::setStartDate( const QDate& date ) 365void OPimTodo::setStartDate( const QDate& date )
354{ 366{
355 changeOrModify(); 367 changeOrModify();
356 data->start = date; 368 data->start = date;
357} 369}
358 370
359 371
360void OPimTodo::setCompletedDate( const QDate& date ) 372void OPimTodo::setCompletedDate( const QDate& date )
361{ 373{
362 changeOrModify(); 374 changeOrModify();
363 data->completed = date; 375 data->completed = date;
364} 376}
365 377
366 378
367void OPimTodo::setState( const OPimState& state ) 379void OPimTodo::setState( const OPimState& state )
368{ 380{
369 changeOrModify(); 381 changeOrModify();
370 if ( data->state ) 382 if ( data->state )
371 ( *data->state ) = state; 383 ( *data->state ) = state;
372 else 384 else
373 data->state = new OPimState( state ); 385 data->state = new OPimState( state );
374} 386}
375 387
376 388
377void OPimTodo::setRecurrence( const OPimRecurrence& rec ) 389void OPimTodo::setRecurrence( const OPimRecurrence& rec )
378{ 390{
379 changeOrModify(); 391 changeOrModify();
380 if ( data->recur ) 392 if ( data->recur )
381 ( *data->recur ) = rec; 393 ( *data->recur ) = rec;
382 else 394 else
383 data->recur = new OPimRecurrence( rec ); 395 data->recur = new OPimRecurrence( rec );
384} 396}
385 397
386 398
387void OPimTodo::setMaintainer( const OPimMaintainer& pim ) 399void OPimTodo::setMaintainer( const OPimMaintainer& pim )
388{ 400{
389 changeOrModify(); 401 changeOrModify();
390 402
391 if ( data->maintainer ) 403 if ( data->maintainer )
392 ( *data->maintainer ) = pim; 404 ( *data->maintainer ) = pim;
393 else 405 else
394 data->maintainer = new OPimMaintainer( pim ); 406 data->maintainer = new OPimMaintainer( pim );
395} 407}
396 408
397 409
398bool OPimTodo::isOverdue( )const 410bool OPimTodo::isOverdue( )const
399{ 411{
400 if ( data->hasDate && !data->isCompleted ) 412 if ( data->hasDate && !data->isCompleted )
401 return QDate::currentDate() > data->date; 413 return QDate::currentDate() > data->date;
402 return false; 414 return false;
403} 415}
404 416
405 417
406void OPimTodo::setProgress( ushort progress ) 418void OPimTodo::setProgress( ushort progress )
407{ 419{
408 changeOrModify(); 420 changeOrModify();
409 data->prog = progress; 421 data->prog = progress;
410} 422}
411 423
412 424
413QString OPimTodo::toShortText() const 425QString OPimTodo::toShortText() const
414{ 426{
415 return summary(); 427 return summary();
416} 428}
417 429
418 430
419/*! 431/*!
420 Returns a richt text string 432 Returns a richt text string
421*/ 433*/
422QString OPimTodo::toRichText() const 434QString OPimTodo::toRichText() const
423{ 435{
424 QString text; 436 QString text;
425 QStringList catlist; 437 QStringList catlist;
426 438
427 // summary 439 // summary
428 text += "<b><h3><img src=\"todo/TodoList\"> "; 440 text += "<b><h3><img src=\"todo/TodoList\"> ";
429 if ( !summary().isEmpty() ) 441 if ( !summary().isEmpty() )
430 { 442 {
431 text += Qtopia::escapeString( summary() ).replace( QRegExp( "[\n]" ), "" ); 443 text += Qtopia::escapeString( summary() ).replace( QRegExp( "[\n]" ), "" );
432 } 444 }
433 text += "</h3></b><br><hr><br>"; 445 text += "</h3></b><br><hr><br>";
434 446
435 // description 447 // description
436 if ( !description().isEmpty() ) 448 if ( !description().isEmpty() )
437 { 449 {