author | zecke <zecke> | 2003-06-20 15:40:07 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-06-20 15:40:07 (UTC) |
commit | ec80e207cce9ebb55be771603fc47a4e7892fd6c (patch) (unidiff) | |
tree | 0ec055e15a0ca1ec9ff0e9c674ecbcca389acbf4 | |
parent | c57f817ceca0eff0f6f3e90ad01654252911c1c5 (diff) | |
download | opie-ec80e207cce9ebb55be771603fc47a4e7892fd6c.zip opie-ec80e207cce9ebb55be771603fc47a4e7892fd6c.tar.gz opie-ec80e207cce9ebb55be771603fc47a4e7892fd6c.tar.bz2 |
toExtraMap is no more virtual
we save custom entries now
setExtraMap added as well
-rw-r--r-- | libopie/pim/ocontact.cpp | 10 | ||||
-rw-r--r-- | libopie/pim/oevent.cpp | 11 | ||||
-rw-r--r-- | libopie/pim/oevent.h | 1 | ||||
-rw-r--r-- | libopie/pim/opimrecord.cpp | 6 | ||||
-rw-r--r-- | libopie/pim/opimrecord.h | 8 | ||||
-rw-r--r-- | libopie/pim/otodo.cpp | 13 | ||||
-rw-r--r-- | libopie/pim/otodo.h | 1 | ||||
-rw-r--r-- | libopie/pim/otodoaccessxml.cpp | 23 | ||||
-rw-r--r-- | libopie2/opiepim/backend/otodoaccessxml.cpp | 23 | ||||
-rw-r--r-- | libopie2/opiepim/core/opimrecord.cpp | 6 | ||||
-rw-r--r-- | libopie2/opiepim/core/opimrecord.h | 8 | ||||
-rw-r--r-- | libopie2/opiepim/ocontact.cpp | 10 | ||||
-rw-r--r-- | libopie2/opiepim/oevent.cpp | 11 | ||||
-rw-r--r-- | libopie2/opiepim/oevent.h | 1 | ||||
-rw-r--r-- | libopie2/opiepim/otodo.cpp | 13 | ||||
-rw-r--r-- | libopie2/opiepim/otodo.h | 1 |
16 files changed, 94 insertions, 52 deletions
diff --git a/libopie/pim/ocontact.cpp b/libopie/pim/ocontact.cpp index a2fb68c..be4ce0a 100644 --- a/libopie/pim/ocontact.cpp +++ b/libopie/pim/ocontact.cpp | |||
@@ -412,65 +412,65 @@ OContact::~OContact() | |||
412 | Sets the uid for this record to \a id. | 412 | Sets the uid for this record to \a id. |
413 | */ | 413 | */ |
414 | 414 | ||
415 | /*! \enum OContact::journal_action | 415 | /*! \enum OContact::journal_action |
416 | \internal | 416 | \internal |
417 | */ | 417 | */ |
418 | 418 | ||
419 | /*! | 419 | /*! |
420 | \internal | 420 | \internal |
421 | */ | 421 | */ |
422 | QMap<int, QString> OContact::toMap() const | 422 | QMap<int, QString> OContact::toMap() const |
423 | { | 423 | { |
424 | QMap<int, QString> map = mMap; | 424 | QMap<int, QString> map = mMap; |
425 | QString cats = idsToString( categories() ); | 425 | QString cats = idsToString( categories() ); |
426 | if ( !cats.isEmpty() ) | 426 | if ( !cats.isEmpty() ) |
427 | map.insert( Qtopia::AddressCategory, cats ); | 427 | map.insert( Qtopia::AddressCategory, cats ); |
428 | return map; | 428 | return map; |
429 | } | 429 | } |
430 | 430 | ||
431 | /*! | 431 | /*! |
432 | Returns a rich text formatted QString representing the contents the contact. | 432 | Returns a rich text formatted QString representing the contents the contact. |
433 | */ | 433 | */ |
434 | QString OContact::toRichText() const | 434 | QString OContact::toRichText() const |
435 | { | 435 | { |
436 | QString text; | 436 | QString text; |
437 | QString value, comp, state; | 437 | QString value, comp, state; |
438 | QString str; | 438 | QString str; |
439 | bool marker = false; | 439 | bool marker = false; |
440 | 440 | ||
441 | // name, jobtitle and company | 441 | // name, jobtitle and company |
442 | if ( !(value = fullName()).isEmpty() ) | 442 | if ( !(value = fullName()).isEmpty() ) |
443 | text += "<b><h3><img src=\"addressbook/AddressBook\">" + Qtopia::escapeString(value) + "</h3></b>"; | 443 | text += "<b><h3><img src=\"addressbook/AddressBook\">" + Qtopia::escapeString(value) + "</h3></b>"; |
444 | 444 | ||
445 | if ( !(value = jobTitle()).isEmpty() ) | 445 | if ( !(value = jobTitle()).isEmpty() ) |
446 | text += Qtopia::escapeString(value) + "<br>"; | 446 | text += Qtopia::escapeString(value) + "<br>"; |
447 | 447 | ||
448 | comp = company(); | 448 | comp = company(); |
449 | if ( !(value = department()).isEmpty() ) { | 449 | if ( !(value = department()).isEmpty() ) { |
450 | text += Qtopia::escapeString(value); | 450 | text += Qtopia::escapeString(value); |
451 | if ( comp ) | 451 | if ( comp ) |
452 | text += ", "; | 452 | text += ", "; |
453 | else | 453 | else |
454 | text += "<br>"; | 454 | text += "<br>"; |
455 | } | 455 | } |
456 | if ( !comp.isEmpty() ) | 456 | if ( !comp.isEmpty() ) |
457 | text += Qtopia::escapeString(comp) + "<br>"; | 457 | text += Qtopia::escapeString(comp) + "<br>"; |
458 | 458 | ||
459 | text += "<hr><br>"; | 459 | text += "<hr><br>"; |
460 | 460 | ||
461 | // defailt email | 461 | // defailt email |
462 | QString defEmail = defaultEmail(); | 462 | QString defEmail = defaultEmail(); |
463 | if ( !defEmail.isEmpty() ) | 463 | if ( !defEmail.isEmpty() ) |
464 | text += "<b><img src=\"addressbook/email\">" + QObject::tr("Default Email: ") + "</b>" | 464 | text += "<b><img src=\"addressbook/email\">" + QObject::tr("Default Email: ") + "</b>" |
465 | + Qtopia::escapeString(defEmail) + "<br>"; | 465 | + Qtopia::escapeString(defEmail) + "<br>"; |
466 | 466 | ||
467 | text += "<br>"; | 467 | text += "<br>"; |
468 | 468 | ||
469 | // business address | 469 | // business address |
470 | if ( !businessStreet().isEmpty() || !businessCity().isEmpty() || | 470 | if ( !businessStreet().isEmpty() || !businessCity().isEmpty() || |
471 | !businessZip().isEmpty() || !businessCountry().isEmpty() ) { | 471 | !businessZip().isEmpty() || !businessCountry().isEmpty() ) { |
472 | text += QObject::tr( "<b>Work Address:</b>" ); | 472 | text += QObject::tr( "<b>Work Address:</b>" ); |
473 | text += "<br>"; | 473 | text += "<br>"; |
474 | marker = true; | 474 | marker = true; |
475 | } | 475 | } |
476 | 476 | ||
@@ -953,71 +953,65 @@ void OContact::setChildren( const QString &str ) | |||
953 | 953 | ||
954 | /*! | 954 | /*! |
955 | \overload | 955 | \overload |
956 | Returns TRUE if the contact matches the regular expression \a regexp. | 956 | Returns TRUE if the contact matches the regular expression \a regexp. |
957 | Otherwise returns FALSE. | 957 | Otherwise returns FALSE. |
958 | */ | 958 | */ |
959 | bool OContact::match( const QRegExp &r ) const | 959 | bool OContact::match( const QRegExp &r ) const |
960 | { | 960 | { |
961 | setLastHitField( -1 ); | 961 | setLastHitField( -1 ); |
962 | bool match; | 962 | bool match; |
963 | match = false; | 963 | match = false; |
964 | QMap<int, QString>::ConstIterator it; | 964 | QMap<int, QString>::ConstIterator it; |
965 | for ( it = mMap.begin(); it != mMap.end(); ++it ) { | 965 | for ( it = mMap.begin(); it != mMap.end(); ++it ) { |
966 | if ( (*it).find( r ) > -1 ) { | 966 | if ( (*it).find( r ) > -1 ) { |
967 | setLastHitField( it.key() ); | 967 | setLastHitField( it.key() ); |
968 | match = true; | 968 | match = true; |
969 | break; | 969 | break; |
970 | } | 970 | } |
971 | } | 971 | } |
972 | return match; | 972 | return match; |
973 | } | 973 | } |
974 | 974 | ||
975 | 975 | ||
976 | QString OContact::toShortText() const | 976 | QString OContact::toShortText() const |
977 | { | 977 | { |
978 | return ( fullName() ); | 978 | return ( fullName() ); |
979 | } | 979 | } |
980 | QString OContact::type() const | 980 | QString OContact::type() const |
981 | { | 981 | { |
982 | return QString::fromLatin1( "OContact" ); | 982 | return QString::fromLatin1( "OContact" ); |
983 | } | 983 | } |
984 | 984 | ||
985 | // Definition is missing ! (se) | 985 | |
986 | QMap<QString,QString> OContact::toExtraMap() const | ||
987 | { | ||
988 | qWarning ("Function not implemented: OContact::toExtraMap()"); | ||
989 | QMap <QString,QString> useless; | ||
990 | return useless; | ||
991 | } | ||
992 | 986 | ||
993 | class QString OContact::recordField( int pos ) const | 987 | class QString OContact::recordField( int pos ) const |
994 | { | 988 | { |
995 | QStringList SLFIELDS = fields(); // ?? why this ? (se) | 989 | QStringList SLFIELDS = fields(); // ?? why this ? (se) |
996 | return SLFIELDS[pos]; | 990 | return SLFIELDS[pos]; |
997 | } | 991 | } |
998 | 992 | ||
999 | // In future releases, we should store birthday and anniversary | 993 | // In future releases, we should store birthday and anniversary |
1000 | // internally as QDate instead of QString ! | 994 | // internally as QDate instead of QString ! |
1001 | // QString is always too complicate to interprete (DD.MM.YY, DD/MM/YY, MM/DD/YY, etc..)(se) | 995 | // QString is always too complicate to interprete (DD.MM.YY, DD/MM/YY, MM/DD/YY, etc..)(se) |
1002 | 996 | ||
1003 | /*! \fn void OContact::setBirthday( const QDate& date ) | 997 | /*! \fn void OContact::setBirthday( const QDate& date ) |
1004 | Sets the birthday for the contact to \a date. If date is null | 998 | Sets the birthday for the contact to \a date. If date is null |
1005 | the current stored date will be removed. | 999 | the current stored date will be removed. |
1006 | */ | 1000 | */ |
1007 | void OContact::setBirthday( const QDate &v ) | 1001 | void OContact::setBirthday( const QDate &v ) |
1008 | { | 1002 | { |
1009 | if ( v.isNull() ){ | 1003 | if ( v.isNull() ){ |
1010 | qWarning( "Remove Birthday"); | 1004 | qWarning( "Remove Birthday"); |
1011 | replace( Qtopia::Birthday, QString::null ); | 1005 | replace( Qtopia::Birthday, QString::null ); |
1012 | return; | 1006 | return; |
1013 | } | 1007 | } |
1014 | 1008 | ||
1015 | if ( v.isValid() ) | 1009 | if ( v.isValid() ) |
1016 | replace( Qtopia::Birthday, OConversion::dateToString( v ) ); | 1010 | replace( Qtopia::Birthday, OConversion::dateToString( v ) ); |
1017 | 1011 | ||
1018 | } | 1012 | } |
1019 | 1013 | ||
1020 | 1014 | ||
1021 | /*! \fn void OContact::setAnniversary( const QDate &date ) | 1015 | /*! \fn void OContact::setAnniversary( const QDate &date ) |
1022 | Sets the anniversary of the contact to \a date. If date is | 1016 | Sets the anniversary of the contact to \a date. If date is |
1023 | null, the current stored date will be removed. | 1017 | null, the current stored date will be removed. |
diff --git a/libopie/pim/oevent.cpp b/libopie/pim/oevent.cpp index e4f5d92..7bcf944 100644 --- a/libopie/pim/oevent.cpp +++ b/libopie/pim/oevent.cpp | |||
@@ -207,110 +207,110 @@ void OEvent::setTimeZone( const QString& tz ) { | |||
207 | changeOrModify(); | 207 | changeOrModify(); |
208 | data->timezone = tz; | 208 | data->timezone = tz; |
209 | } | 209 | } |
210 | QString OEvent::timeZone()const { | 210 | QString OEvent::timeZone()const { |
211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); | 211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); |
212 | return data->timezone; | 212 | return data->timezone; |
213 | } | 213 | } |
214 | bool OEvent::match( const QRegExp& re )const { | 214 | bool OEvent::match( const QRegExp& re )const { |
215 | if ( re.match( data->description ) != -1 ){ | 215 | if ( re.match( data->description ) != -1 ){ |
216 | setLastHitField( Qtopia::DatebookDescription ); | 216 | setLastHitField( Qtopia::DatebookDescription ); |
217 | return true; | 217 | return true; |
218 | } | 218 | } |
219 | if ( re.match( data->note ) != -1 ){ | 219 | if ( re.match( data->note ) != -1 ){ |
220 | setLastHitField( Qtopia::Note ); | 220 | setLastHitField( Qtopia::Note ); |
221 | return true; | 221 | return true; |
222 | } | 222 | } |
223 | if ( re.match( data->location ) != -1 ){ | 223 | if ( re.match( data->location ) != -1 ){ |
224 | setLastHitField( Qtopia::Location ); | 224 | setLastHitField( Qtopia::Location ); |
225 | return true; | 225 | return true; |
226 | } | 226 | } |
227 | if ( re.match( data->start.toString() ) != -1 ){ | 227 | if ( re.match( data->start.toString() ) != -1 ){ |
228 | setLastHitField( Qtopia::StartDateTime ); | 228 | setLastHitField( Qtopia::StartDateTime ); |
229 | return true; | 229 | return true; |
230 | } | 230 | } |
231 | if ( re.match( data->end.toString() ) != -1 ){ | 231 | if ( re.match( data->end.toString() ) != -1 ){ |
232 | setLastHitField( Qtopia::EndDateTime ); | 232 | setLastHitField( Qtopia::EndDateTime ); |
233 | return true; | 233 | return true; |
234 | } | 234 | } |
235 | return false; | 235 | return false; |
236 | } | 236 | } |
237 | QString OEvent::toRichText()const { | 237 | QString OEvent::toRichText()const { |
238 | QString text, value; | 238 | QString text, value; |
239 | 239 | ||
240 | // description | 240 | // description |
241 | text += "<b><h3><img src=\"datebook/DateBook\">"; | 241 | text += "<b><h3><img src=\"datebook/DateBook\">"; |
242 | if ( !description().isEmpty() ) { | 242 | if ( !description().isEmpty() ) { |
243 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "" ); | 243 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "" ); |
244 | } | 244 | } |
245 | text += "</h3></b><br><hr><br>"; | 245 | text += "</h3></b><br><hr><br>"; |
246 | 246 | ||
247 | // location | 247 | // location |
248 | if ( !(value = location()).isEmpty() ) { | 248 | if ( !(value = location()).isEmpty() ) { |
249 | text += "<b>" + QObject::tr( "Location:" ) + "</b> "; | 249 | text += "<b>" + QObject::tr( "Location:" ) + "</b> "; |
250 | text += Qtopia::escapeString(value) + "<br>"; | 250 | text += Qtopia::escapeString(value) + "<br>"; |
251 | } | 251 | } |
252 | 252 | ||
253 | // all day event | 253 | // all day event |
254 | if ( isAllDay() ) { | 254 | if ( isAllDay() ) { |
255 | text += "<b><i>" + QObject::tr( "This is an all day event" ) + "</i></b><br>"; | 255 | text += "<b><i>" + QObject::tr( "This is an all day event" ) + "</i></b><br>"; |
256 | } | 256 | } |
257 | // multiple day event | 257 | // multiple day event |
258 | else if ( isMultipleDay () ) { | 258 | else if ( isMultipleDay () ) { |
259 | text += "<b><i>" + QObject::tr( "This is a multiple day event" ) + "</i></b><br>"; | 259 | text += "<b><i>" + QObject::tr( "This is a multiple day event" ) + "</i></b><br>"; |
260 | } | 260 | } |
261 | // start & end times | 261 | // start & end times |
262 | else { | 262 | else { |
263 | // start time | 263 | // start time |
264 | if ( startDateTime().isValid() ) { | 264 | if ( startDateTime().isValid() ) { |
265 | text += "<b>" + QObject::tr( "Start:") + "</b> "; | 265 | text += "<b>" + QObject::tr( "Start:") + "</b> "; |
266 | text += Qtopia::escapeString(startDateTime().toString() ). | 266 | text += Qtopia::escapeString(startDateTime().toString() ). |
267 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 267 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
268 | } | 268 | } |
269 | 269 | ||
270 | // end time | 270 | // end time |
271 | if ( endDateTime().isValid() ) { | 271 | if ( endDateTime().isValid() ) { |
272 | text += "<b>" + QObject::tr( "End:") + "</b> "; | 272 | text += "<b>" + QObject::tr( "End:") + "</b> "; |
273 | text += Qtopia::escapeString(endDateTime().toString() ). | 273 | text += Qtopia::escapeString(endDateTime().toString() ). |
274 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 274 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
275 | } | 275 | } |
276 | } | 276 | } |
277 | 277 | ||
278 | // categories | 278 | // categories |
279 | if ( categoryNames("Calendar").count() ){ | 279 | if ( categoryNames("Calendar").count() ){ |
280 | text += "<b>" + QObject::tr( "Category:") + "</b> "; | 280 | text += "<b>" + QObject::tr( "Category:") + "</b> "; |
281 | text += categoryNames("Calendar").join(", "); | 281 | text += categoryNames("Calendar").join(", "); |
282 | text += "<br>"; | 282 | text += "<br>"; |
283 | } | 283 | } |
284 | 284 | ||
285 | //notes | 285 | //notes |
286 | if ( !note().isEmpty() ) { | 286 | if ( !note().isEmpty() ) { |
287 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; | 287 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; |
288 | text += note(); | 288 | text += note(); |
289 | // text += Qtopia::escapeString(note() ). | 289 | // text += Qtopia::escapeString(note() ). |
290 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 290 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
291 | } | 291 | } |
292 | return text; | 292 | return text; |
293 | } | 293 | } |
294 | QString OEvent::toShortText()const { | 294 | QString OEvent::toShortText()const { |
295 | QString text; | 295 | QString text; |
296 | text += QString::number( startDateTime().date().day() ); | 296 | text += QString::number( startDateTime().date().day() ); |
297 | text += "."; | 297 | text += "."; |
298 | text += QString::number( startDateTime().date().month() ); | 298 | text += QString::number( startDateTime().date().month() ); |
299 | text += "."; | 299 | text += "."; |
300 | text += QString::number( startDateTime().date().year() ); | 300 | text += QString::number( startDateTime().date().year() ); |
301 | text += " "; | 301 | text += " "; |
302 | text += QString::number( startDateTime().time().hour() ); | 302 | text += QString::number( startDateTime().time().hour() ); |
303 | text += ":"; | 303 | text += ":"; |
304 | text += QString::number( startDateTime().time().minute() ); | 304 | text += QString::number( startDateTime().time().minute() ); |
305 | text += " - "; | 305 | text += " - "; |
306 | text += description(); | 306 | text += description(); |
307 | return text; | 307 | return text; |
308 | } | 308 | } |
309 | QString OEvent::type()const { | 309 | QString OEvent::type()const { |
310 | return QString::fromLatin1("OEvent"); | 310 | return QString::fromLatin1("OEvent"); |
311 | } | 311 | } |
312 | QString OEvent::recordField( int /*id */ )const { | 312 | QString OEvent::recordField( int /*id */ )const { |
313 | return QString::null; | 313 | return QString::null; |
314 | } | 314 | } |
315 | int OEvent::rtti() { | 315 | int OEvent::rtti() { |
316 | return OPimResolver::DateBook; | 316 | return OPimResolver::DateBook; |
@@ -331,67 +331,64 @@ void OEvent::changeOrModify() { | |||
331 | if (data->manager ) | 331 | if (data->manager ) |
332 | d2->manager = new OPimNotifyManager( *data->manager ); | 332 | d2->manager = new OPimNotifyManager( *data->manager ); |
333 | 333 | ||
334 | if ( data->recur ) | 334 | if ( data->recur ) |
335 | d2->recur = new ORecur( *data->recur ); | 335 | d2->recur = new ORecur( *data->recur ); |
336 | 336 | ||
337 | d2->note = data->note; | 337 | d2->note = data->note; |
338 | d2->created = data->created; | 338 | d2->created = data->created; |
339 | d2->start = data->start; | 339 | d2->start = data->start; |
340 | d2->end = data->end; | 340 | d2->end = data->end; |
341 | d2->isAllDay = data->isAllDay; | 341 | d2->isAllDay = data->isAllDay; |
342 | d2->timezone = data->timezone; | 342 | d2->timezone = data->timezone; |
343 | d2->parent = data->parent; | 343 | d2->parent = data->parent; |
344 | 344 | ||
345 | if ( data->child ) { | 345 | if ( data->child ) { |
346 | d2->child = new QArray<int>( *data->child ); | 346 | d2->child = new QArray<int>( *data->child ); |
347 | d2->child->detach(); | 347 | d2->child->detach(); |
348 | } | 348 | } |
349 | 349 | ||
350 | data = d2; | 350 | data = d2; |
351 | } | 351 | } |
352 | } | 352 | } |
353 | void OEvent::deref() { | 353 | void OEvent::deref() { |
354 | if ( data->deref() ) { | 354 | if ( data->deref() ) { |
355 | delete data; | 355 | delete data; |
356 | data = 0; | 356 | data = 0; |
357 | } | 357 | } |
358 | } | 358 | } |
359 | // FIXME | 359 | // FIXME |
360 | QMap<int, QString> OEvent::toMap()const { | 360 | QMap<int, QString> OEvent::toMap()const { |
361 | return QMap<int, QString>(); | 361 | return QMap<int, QString>(); |
362 | } | 362 | } |
363 | QMap<QString, QString> OEvent::toExtraMap()const { | ||
364 | return QMap<QString, QString>(); | ||
365 | } | ||
366 | int OEvent::parent()const { | 363 | int OEvent::parent()const { |
367 | return data->parent; | 364 | return data->parent; |
368 | } | 365 | } |
369 | void OEvent::setParent( int uid ) { | 366 | void OEvent::setParent( int uid ) { |
370 | changeOrModify(); | 367 | changeOrModify(); |
371 | data->parent = uid; | 368 | data->parent = uid; |
372 | } | 369 | } |
373 | QArray<int> OEvent::children() const{ | 370 | QArray<int> OEvent::children() const{ |
374 | if (!data->child) return QArray<int>(); | 371 | if (!data->child) return QArray<int>(); |
375 | else | 372 | else |
376 | return data->child->copy(); | 373 | return data->child->copy(); |
377 | } | 374 | } |
378 | void OEvent::setChildren( const QArray<int>& arr ) { | 375 | void OEvent::setChildren( const QArray<int>& arr ) { |
379 | changeOrModify(); | 376 | changeOrModify(); |
380 | if (data->child) delete data->child; | 377 | if (data->child) delete data->child; |
381 | 378 | ||
382 | data->child = new QArray<int>( arr ); | 379 | data->child = new QArray<int>( arr ); |
383 | data->child->detach(); | 380 | data->child->detach(); |
384 | } | 381 | } |
385 | void OEvent::addChild( int uid ) { | 382 | void OEvent::addChild( int uid ) { |
386 | changeOrModify(); | 383 | changeOrModify(); |
387 | if (!data->child ) { | 384 | if (!data->child ) { |
388 | data->child = new QArray<int>(1); | 385 | data->child = new QArray<int>(1); |
389 | (*data->child)[0] = uid; | 386 | (*data->child)[0] = uid; |
390 | }else{ | 387 | }else{ |
391 | int count = data->child->count(); | 388 | int count = data->child->count(); |
392 | data->child->resize( count + 1 ); | 389 | data->child->resize( count + 1 ); |
393 | (*data->child)[count] = uid; | 390 | (*data->child)[count] = uid; |
394 | } | 391 | } |
395 | } | 392 | } |
396 | void OEvent::removeChild( int uid ) { | 393 | void OEvent::removeChild( int uid ) { |
397 | if (!data->child || !data->child->contains( uid ) ) return; | 394 | if (!data->child || !data->child->contains( uid ) ) return; |
diff --git a/libopie/pim/oevent.h b/libopie/pim/oevent.h index b696d81..30f442e 100644 --- a/libopie/pim/oevent.h +++ b/libopie/pim/oevent.h | |||
@@ -103,65 +103,64 @@ public: | |||
103 | /** in current timezone */ | 103 | /** in current timezone */ |
104 | QDateTime endDateTime()const; | 104 | QDateTime endDateTime()const; |
105 | QDateTime endDateTimeInZone()const; | 105 | QDateTime endDateTimeInZone()const; |
106 | 106 | ||
107 | bool isMultipleDay()const; | 107 | bool isMultipleDay()const; |
108 | bool isAllDay()const; | 108 | bool isAllDay()const; |
109 | void setAllDay( bool isAllDay ); | 109 | void setAllDay( bool isAllDay ); |
110 | 110 | ||
111 | /* pin this event to a timezone! FIXME */ | 111 | /* pin this event to a timezone! FIXME */ |
112 | void setTimeZone( const QString& timeZone ); | 112 | void setTimeZone( const QString& timeZone ); |
113 | QString timeZone()const; | 113 | QString timeZone()const; |
114 | 114 | ||
115 | 115 | ||
116 | virtual bool match( const QRegExp& )const; | 116 | virtual bool match( const QRegExp& )const; |
117 | 117 | ||
118 | /** For exception to recurrence here is a list of children... */ | 118 | /** For exception to recurrence here is a list of children... */ |
119 | QArray<int> children()const; | 119 | QArray<int> children()const; |
120 | void setChildren( const QArray<int>& ); | 120 | void setChildren( const QArray<int>& ); |
121 | void addChild( int uid ); | 121 | void addChild( int uid ); |
122 | void removeChild( int uid ); | 122 | void removeChild( int uid ); |
123 | 123 | ||
124 | /** return the parent OEvent */ | 124 | /** return the parent OEvent */ |
125 | int parent()const; | 125 | int parent()const; |
126 | void setParent( int uid ); | 126 | void setParent( int uid ); |
127 | 127 | ||
128 | 128 | ||
129 | /* needed reimp */ | 129 | /* needed reimp */ |
130 | QString toRichText()const; | 130 | QString toRichText()const; |
131 | QString toShortText()const; | 131 | QString toShortText()const; |
132 | QString type()const; | 132 | QString type()const; |
133 | 133 | ||
134 | QMap<int, QString> toMap()const; | 134 | QMap<int, QString> toMap()const; |
135 | QMap<QString, QString> toExtraMap()const; | ||
136 | QString recordField(int )const; | 135 | QString recordField(int )const; |
137 | 136 | ||
138 | static int rtti(); | 137 | static int rtti(); |
139 | 138 | ||
140 | bool loadFromStream( QDataStream& ); | 139 | bool loadFromStream( QDataStream& ); |
141 | bool saveToStream( QDataStream& )const; | 140 | bool saveToStream( QDataStream& )const; |
142 | 141 | ||
143 | /* bool operator==( const OEvent& ); | 142 | /* bool operator==( const OEvent& ); |
144 | bool operator!=( const OEvent& ); | 143 | bool operator!=( const OEvent& ); |
145 | bool operator<( const OEvent& ); | 144 | bool operator<( const OEvent& ); |
146 | bool operator<=( const OEvent& ); | 145 | bool operator<=( const OEvent& ); |
147 | bool operator>( const OEvent& ); | 146 | bool operator>( const OEvent& ); |
148 | bool operator>=(const OEvent& ); | 147 | bool operator>=(const OEvent& ); |
149 | */ | 148 | */ |
150 | private: | 149 | private: |
151 | inline void changeOrModify(); | 150 | inline void changeOrModify(); |
152 | void deref(); | 151 | void deref(); |
153 | struct Data; | 152 | struct Data; |
154 | Data* data; | 153 | Data* data; |
155 | class Private; | 154 | class Private; |
156 | Private* priv; | 155 | Private* priv; |
157 | 156 | ||
158 | }; | 157 | }; |
159 | 158 | ||
160 | /** | 159 | /** |
161 | * AN Event can span through multiple days. We split up a multiday eve | 160 | * AN Event can span through multiple days. We split up a multiday eve |
162 | */ | 161 | */ |
163 | class OEffectiveEvent { | 162 | class OEffectiveEvent { |
164 | public: | 163 | public: |
165 | typedef QValueList<OEffectiveEvent> ValueList; | 164 | typedef QValueList<OEffectiveEvent> ValueList; |
166 | enum Position { MidWay, Start, End, StartEnd }; | 165 | enum Position { MidWay, Start, End, StartEnd }; |
167 | // If we calculate the effective event of a multi-day event | 166 | // If we calculate the effective event of a multi-day event |
diff --git a/libopie/pim/opimrecord.cpp b/libopie/pim/opimrecord.cpp index 0c9734d..2365748 100644 --- a/libopie/pim/opimrecord.cpp +++ b/libopie/pim/opimrecord.cpp | |||
@@ -145,32 +145,38 @@ bool OPimRecord::saveToStream( QDataStream& stream )const { | |||
145 | flush( (*it).partner( OPimXRef::One), stream ); | 145 | flush( (*it).partner( OPimXRef::One), stream ); |
146 | flush( (*it).partner( OPimXRef::Two), stream ); | 146 | flush( (*it).partner( OPimXRef::Two), stream ); |
147 | } | 147 | } |
148 | return true; | 148 | return true; |
149 | } | 149 | } |
150 | void OPimRecord::flush( const OPimXRefPartner& par, QDataStream& str ) const{ | 150 | void OPimRecord::flush( const OPimXRefPartner& par, QDataStream& str ) const{ |
151 | str << par.service(); | 151 | str << par.service(); |
152 | str << par.uid(); | 152 | str << par.uid(); |
153 | str << par.field(); | 153 | str << par.field(); |
154 | } | 154 | } |
155 | OPimXRefPartner OPimRecord::partner( QDataStream& stream ) { | 155 | OPimXRefPartner OPimRecord::partner( QDataStream& stream ) { |
156 | OPimXRefPartner par; | 156 | OPimXRefPartner par; |
157 | QString str; | 157 | QString str; |
158 | int i; | 158 | int i; |
159 | 159 | ||
160 | stream >> str; | 160 | stream >> str; |
161 | par.setService( str ); | 161 | par.setService( str ); |
162 | 162 | ||
163 | stream >> i; | 163 | stream >> i; |
164 | par.setUid( i ); | 164 | par.setUid( i ); |
165 | 165 | ||
166 | stream >> i ; | 166 | stream >> i ; |
167 | par.setField( i ); | 167 | par.setField( i ); |
168 | 168 | ||
169 | return par; | 169 | return par; |
170 | } | 170 | } |
171 | void OPimRecord::setLastHitField( int lastHit )const { | 171 | void OPimRecord::setLastHitField( int lastHit )const { |
172 | m_lastHit = lastHit; | 172 | m_lastHit = lastHit; |
173 | } | 173 | } |
174 | int OPimRecord::lastHitField()const{ | 174 | int OPimRecord::lastHitField()const{ |
175 | return m_lastHit; | 175 | return m_lastHit; |
176 | } | 176 | } |
177 | QMap<QString, QString> OPimRecord::toExtraMap()const { | ||
178 | return customMap; | ||
179 | } | ||
180 | void OPimRecord::setExtraMap( const QMap<QString, QString>& map) { | ||
181 | customMap = map; | ||
182 | } | ||
diff --git a/libopie/pim/opimrecord.h b/libopie/pim/opimrecord.h index 494c78e..563b19c 100644 --- a/libopie/pim/opimrecord.h +++ b/libopie/pim/opimrecord.h | |||
@@ -1,41 +1,46 @@ | |||
1 | #ifndef OPIE_PIM_RECORD_H | 1 | #ifndef OPIE_PIM_RECORD_H |
2 | #define OPIE_PIM_RECORD_H | 2 | #define OPIE_PIM_RECORD_H |
3 | 3 | ||
4 | #include <qdatastream.h> | 4 | #include <qdatastream.h> |
5 | #include <qmap.h> | 5 | #include <qmap.h> |
6 | #include <qstring.h> | 6 | #include <qstring.h> |
7 | #include <qstringlist.h> | 7 | #include <qstringlist.h> |
8 | 8 | ||
9 | /* | ||
10 | * we need to get customMap which is private... | ||
11 | */ | ||
12 | #define private protected | ||
9 | #include <qpe/palmtoprecord.h> | 13 | #include <qpe/palmtoprecord.h> |
14 | #undef private | ||
10 | 15 | ||
11 | #include <opie/opimxrefmanager.h> | 16 | #include <opie/opimxrefmanager.h> |
12 | 17 | ||
13 | /** | 18 | /** |
14 | * This is the base class for | 19 | * This is the base class for |
15 | * all PIM Records | 20 | * all PIM Records |
16 | * | 21 | * |
17 | */ | 22 | */ |
18 | class OPimRecord : public Qtopia::Record { | 23 | class OPimRecord : public Qtopia::Record { |
19 | public: | 24 | public: |
20 | /** | 25 | /** |
21 | * c'tor | 26 | * c'tor |
22 | * uid of 0 isEmpty | 27 | * uid of 0 isEmpty |
23 | * uid of 1 will be assigned a new one | 28 | * uid of 1 will be assigned a new one |
24 | */ | 29 | */ |
25 | OPimRecord(int uid = 0); | 30 | OPimRecord(int uid = 0); |
26 | ~OPimRecord(); | 31 | ~OPimRecord(); |
27 | 32 | ||
28 | /** | 33 | /** |
29 | * copy c'tor | 34 | * copy c'tor |
30 | */ | 35 | */ |
31 | OPimRecord( const OPimRecord& rec ); | 36 | OPimRecord( const OPimRecord& rec ); |
32 | 37 | ||
33 | /** | 38 | /** |
34 | * copy operator | 39 | * copy operator |
35 | */ | 40 | */ |
36 | OPimRecord &operator=( const OPimRecord& ); | 41 | OPimRecord &operator=( const OPimRecord& ); |
37 | 42 | ||
38 | /** | 43 | /** |
39 | * category names resolved | 44 | * category names resolved |
40 | */ | 45 | */ |
41 | QStringList categoryNames( const QString& appname )const; | 46 | QStringList categoryNames( const QString& appname )const; |
@@ -65,65 +70,66 @@ public: | |||
65 | /** | 70 | /** |
66 | * a small one line summary | 71 | * a small one line summary |
67 | */ | 72 | */ |
68 | virtual QString toShortText()const = 0; | 73 | virtual QString toShortText()const = 0; |
69 | 74 | ||
70 | /** | 75 | /** |
71 | * the name of the Record | 76 | * the name of the Record |
72 | */ | 77 | */ |
73 | virtual QString type()const = 0; | 78 | virtual QString type()const = 0; |
74 | 79 | ||
75 | /** | 80 | /** |
76 | * matches the Records the regular expression? | 81 | * matches the Records the regular expression? |
77 | */ | 82 | */ |
78 | virtual bool match( const QString ®exp ) const | 83 | virtual bool match( const QString ®exp ) const |
79 | {setLastHitField( -1 ); | 84 | {setLastHitField( -1 ); |
80 | return Qtopia::Record::match(QRegExp(regexp));}; | 85 | return Qtopia::Record::match(QRegExp(regexp));}; |
81 | 86 | ||
82 | /** | 87 | /** |
83 | * if implemented this function returns which item has been | 88 | * if implemented this function returns which item has been |
84 | * last hit by the match() function. | 89 | * last hit by the match() function. |
85 | * or -1 if not implemented or no hit has occured | 90 | * or -1 if not implemented or no hit has occured |
86 | */ | 91 | */ |
87 | int lastHitField()const; | 92 | int lastHitField()const; |
88 | 93 | ||
89 | /** | 94 | /** |
90 | * converts the internal structure to a map | 95 | * converts the internal structure to a map |
91 | */ | 96 | */ |
92 | virtual QMap<int, QString> toMap()const = 0; | 97 | virtual QMap<int, QString> toMap()const = 0; |
93 | 98 | ||
94 | /** | 99 | /** |
95 | * key value representation of extra items | 100 | * key value representation of extra items |
96 | */ | 101 | */ |
97 | virtual QMap<QString, QString> toExtraMap()const = 0; | 102 | QMap<QString, QString> toExtraMap()const; |
103 | void setExtraMap( const QMap<QString, QString>& ); | ||
98 | 104 | ||
99 | /** | 105 | /** |
100 | * the name for a recordField | 106 | * the name for a recordField |
101 | */ | 107 | */ |
102 | virtual QString recordField(int)const = 0; | 108 | virtual QString recordField(int)const = 0; |
103 | 109 | ||
104 | /** | 110 | /** |
105 | * returns a reference of the | 111 | * returns a reference of the |
106 | * Cross Reference Manager | 112 | * Cross Reference Manager |
107 | * Partner 'One' is THIS PIM RECORD! | 113 | * Partner 'One' is THIS PIM RECORD! |
108 | * 'Two' is the Partner where we link to | 114 | * 'Two' is the Partner where we link to |
109 | */ | 115 | */ |
110 | OPimXRefManager& xrefmanager(); | 116 | OPimXRefManager& xrefmanager(); |
111 | 117 | ||
112 | /** | 118 | /** |
113 | * set the uid | 119 | * set the uid |
114 | */ | 120 | */ |
115 | virtual void setUid( int uid ); | 121 | virtual void setUid( int uid ); |
116 | 122 | ||
117 | /* | 123 | /* |
118 | * used inside the Templates for casting | 124 | * used inside the Templates for casting |
119 | * REIMPLEMENT in your .... | 125 | * REIMPLEMENT in your .... |
120 | */ | 126 | */ |
121 | static int rtti(); | 127 | static int rtti(); |
122 | 128 | ||
123 | /** | 129 | /** |
124 | * some marshalling and de marshalling code | 130 | * some marshalling and de marshalling code |
125 | * saves the OPimRecord | 131 | * saves the OPimRecord |
126 | * to and from a DataStream | 132 | * to and from a DataStream |
127 | */ | 133 | */ |
128 | virtual bool loadFromStream(QDataStream& ); | 134 | virtual bool loadFromStream(QDataStream& ); |
129 | virtual bool saveToStream( QDataStream& stream )const; | 135 | virtual bool saveToStream( QDataStream& stream )const; |
diff --git a/libopie/pim/otodo.cpp b/libopie/pim/otodo.cpp index c84eeeb..38b93f7 100644 --- a/libopie/pim/otodo.cpp +++ b/libopie/pim/otodo.cpp | |||
@@ -250,112 +250,112 @@ void OTodo::setMaintainer( const OPimMaintainer& pim ) { | |||
250 | (*data->maintainer) = pim; | 250 | (*data->maintainer) = pim; |
251 | else | 251 | else |
252 | data->maintainer = new OPimMaintainer( pim ); | 252 | data->maintainer = new OPimMaintainer( pim ); |
253 | } | 253 | } |
254 | bool OTodo::isOverdue( ) | 254 | bool OTodo::isOverdue( ) |
255 | { | 255 | { |
256 | if( data->hasDate && !data->isCompleted) | 256 | if( data->hasDate && !data->isCompleted) |
257 | return QDate::currentDate() > data->date; | 257 | return QDate::currentDate() > data->date; |
258 | return false; | 258 | return false; |
259 | } | 259 | } |
260 | void OTodo::setProgress(ushort progress ) | 260 | void OTodo::setProgress(ushort progress ) |
261 | { | 261 | { |
262 | changeOrModify(); | 262 | changeOrModify(); |
263 | data->prog = progress; | 263 | data->prog = progress; |
264 | } | 264 | } |
265 | QString OTodo::toShortText() const { | 265 | QString OTodo::toShortText() const { |
266 | return summary(); | 266 | return summary(); |
267 | } | 267 | } |
268 | /*! | 268 | /*! |
269 | Returns a richt text string | 269 | Returns a richt text string |
270 | */ | 270 | */ |
271 | QString OTodo::toRichText() const | 271 | QString OTodo::toRichText() const |
272 | { | 272 | { |
273 | QString text; | 273 | QString text; |
274 | QStringList catlist; | 274 | QStringList catlist; |
275 | 275 | ||
276 | // summary | 276 | // summary |
277 | text += "<b><h3><img src=\"todo/TodoList\">"; | 277 | text += "<b><h3><img src=\"todo/TodoList\">"; |
278 | if ( !summary().isEmpty() ) { | 278 | if ( !summary().isEmpty() ) { |
279 | text += Qtopia::escapeString(summary() ).replace(QRegExp( "[\n]"), "" ); | 279 | text += Qtopia::escapeString(summary() ).replace(QRegExp( "[\n]"), "" ); |
280 | } | 280 | } |
281 | text += "</h3></b><br><hr><br>"; | 281 | text += "</h3></b><br><hr><br>"; |
282 | 282 | ||
283 | // description | 283 | // description |
284 | if( !description().isEmpty() ){ | 284 | if( !description().isEmpty() ){ |
285 | text += "<b>" + QObject::tr( "Description:" ) + "</b><br>"; | 285 | text += "<b>" + QObject::tr( "Description:" ) + "</b><br>"; |
286 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) ; | 286 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) ; |
287 | } | 287 | } |
288 | 288 | ||
289 | // priority | 289 | // priority |
290 | int priorityval = priority(); | 290 | int priorityval = priority(); |
291 | text += "<b>" + QObject::tr( "Priority:") +" </b><img src=\"todo/priority" + | 291 | text += "<b>" + QObject::tr( "Priority:") +" </b><img src=\"todo/priority" + |
292 | QString::number( priorityval ) + "\">"; | 292 | QString::number( priorityval ) + "\">"; |
293 | // text += "<b>" + QObject::tr( "Priority:") +"</b><img src=\"todo/priority" + | 293 | // text += "<b>" + QObject::tr( "Priority:") +"</b><img src=\"todo/priority" + |
294 | // QString::number( priority() ) + "\"><br>"; | 294 | // QString::number( priority() ) + "\"><br>"; |
295 | switch ( priorityval ) | 295 | switch ( priorityval ) |
296 | { | 296 | { |
297 | case 1 : text += QObject::tr( "Very high" ); | 297 | case 1 : text += QObject::tr( "Very high" ); |
298 | break; | 298 | break; |
299 | case 2 : text += QObject::tr( "High" ); | 299 | case 2 : text += QObject::tr( "High" ); |
300 | break; | 300 | break; |
301 | case 3 : text += QObject::tr( "Normal" ); | 301 | case 3 : text += QObject::tr( "Normal" ); |
302 | break; | 302 | break; |
303 | case 4 : text += QObject::tr( "Low" ); | 303 | case 4 : text += QObject::tr( "Low" ); |
304 | break; | 304 | break; |
305 | case 5 : text += QObject::tr( "Very low" ); | 305 | case 5 : text += QObject::tr( "Very low" ); |
306 | break; | 306 | break; |
307 | }; | 307 | }; |
308 | text += "<br>"; | 308 | text += "<br>"; |
309 | 309 | ||
310 | // progress | 310 | // progress |
311 | text += "<b>" + QObject::tr( "Progress:") + " </b>" | 311 | text += "<b>" + QObject::tr( "Progress:") + " </b>" |
312 | + QString::number( progress() ) + " %<br>"; | 312 | + QString::number( progress() ) + " %<br>"; |
313 | 313 | ||
314 | // due date | 314 | // due date |
315 | if (hasDueDate() ){ | 315 | if (hasDueDate() ){ |
316 | QDate dd = dueDate(); | 316 | QDate dd = dueDate(); |
317 | int off = QDate::currentDate().daysTo( dd ); | 317 | int off = QDate::currentDate().daysTo( dd ); |
318 | 318 | ||
319 | text += "<b>" + QObject::tr( "Deadline:" ) + " </b><font color=\""; | 319 | text += "<b>" + QObject::tr( "Deadline:" ) + " </b><font color=\""; |
320 | if ( off < 0 ) | 320 | if ( off < 0 ) |
321 | text += "#FF0000"; | 321 | text += "#FF0000"; |
322 | else if ( off == 0 ) | 322 | else if ( off == 0 ) |
323 | text += "#FFFF00"; | 323 | text += "#FFFF00"; |
324 | else if ( off > 0 ) | 324 | else if ( off > 0 ) |
325 | text += "#00FF00"; | 325 | text += "#00FF00"; |
326 | 326 | ||
327 | text += "\">" + dd.toString() + "</font><br>"; | 327 | text += "\">" + dd.toString() + "</font><br>"; |
328 | } | 328 | } |
329 | 329 | ||
330 | // categories | 330 | // categories |
331 | text += "<b>" + QObject::tr( "Category:") + "</b> "; | 331 | text += "<b>" + QObject::tr( "Category:") + "</b> "; |
332 | text += categoryNames( "Todo List" ).join(", "); | 332 | text += categoryNames( "Todo List" ).join(", "); |
333 | text += "<br>"; | 333 | text += "<br>"; |
334 | 334 | ||
335 | return text; | 335 | return text; |
336 | } | 336 | } |
337 | bool OTodo::hasNotifiers()const { | 337 | bool OTodo::hasNotifiers()const { |
338 | if (!data->notifiers) return false; | 338 | if (!data->notifiers) return false; |
339 | return !data->notifiers->isEmpty(); | 339 | return !data->notifiers->isEmpty(); |
340 | } | 340 | } |
341 | OPimNotifyManager& OTodo::notifiers() { | 341 | OPimNotifyManager& OTodo::notifiers() { |
342 | if (!data->notifiers ) | 342 | if (!data->notifiers ) |
343 | data->notifiers = new OPimNotifyManager; | 343 | data->notifiers = new OPimNotifyManager; |
344 | return (*data->notifiers); | 344 | return (*data->notifiers); |
345 | } | 345 | } |
346 | const OPimNotifyManager& OTodo::notifiers()const{ | 346 | const OPimNotifyManager& OTodo::notifiers()const{ |
347 | if (!data->notifiers ) | 347 | if (!data->notifiers ) |
348 | data->notifiers = new OPimNotifyManager; | 348 | data->notifiers = new OPimNotifyManager; |
349 | 349 | ||
350 | return (*data->notifiers); | 350 | return (*data->notifiers); |
351 | } | 351 | } |
352 | 352 | ||
353 | bool OTodo::operator<( const OTodo &toDoEvent )const{ | 353 | bool OTodo::operator<( const OTodo &toDoEvent )const{ |
354 | if( !hasDueDate() && !toDoEvent.hasDueDate() ) return true; | 354 | if( !hasDueDate() && !toDoEvent.hasDueDate() ) return true; |
355 | if( !hasDueDate() && toDoEvent.hasDueDate() ) return false; | 355 | if( !hasDueDate() && toDoEvent.hasDueDate() ) return false; |
356 | if( hasDueDate() && toDoEvent.hasDueDate() ){ | 356 | if( hasDueDate() && toDoEvent.hasDueDate() ){ |
357 | if( dueDate() == toDoEvent.dueDate() ){ // let's the priority decide | 357 | if( dueDate() == toDoEvent.dueDate() ){ // let's the priority decide |
358 | return priority() < toDoEvent.priority(); | 358 | return priority() < toDoEvent.priority(); |
359 | }else{ | 359 | }else{ |
360 | return dueDate() < toDoEvent.dueDate(); | 360 | return dueDate() < toDoEvent.dueDate(); |
361 | } | 361 | } |
@@ -431,67 +431,64 @@ OTodo &OTodo::operator=(const OTodo &item ) | |||
431 | OPimRecord::operator=( item ); | 431 | OPimRecord::operator=( item ); |
432 | //qWarning("operator= ref "); | 432 | //qWarning("operator= ref "); |
433 | item.data->ref(); | 433 | item.data->ref(); |
434 | deref(); | 434 | deref(); |
435 | data = item.data; | 435 | data = item.data; |
436 | 436 | ||
437 | return *this; | 437 | return *this; |
438 | } | 438 | } |
439 | 439 | ||
440 | QMap<int, QString> OTodo::toMap() const { | 440 | QMap<int, QString> OTodo::toMap() const { |
441 | QMap<int, QString> map; | 441 | QMap<int, QString> map; |
442 | 442 | ||
443 | map.insert( Uid, QString::number( uid() ) ); | 443 | map.insert( Uid, QString::number( uid() ) ); |
444 | map.insert( Category, idsToString( categories() ) ); | 444 | map.insert( Category, idsToString( categories() ) ); |
445 | map.insert( HasDate, QString::number( data->hasDate ) ); | 445 | map.insert( HasDate, QString::number( data->hasDate ) ); |
446 | map.insert( Completed, QString::number( data->isCompleted ) ); | 446 | map.insert( Completed, QString::number( data->isCompleted ) ); |
447 | map.insert( Description, data->desc ); | 447 | map.insert( Description, data->desc ); |
448 | map.insert( Summary, data->sum ); | 448 | map.insert( Summary, data->sum ); |
449 | map.insert( Priority, QString::number( data->priority ) ); | 449 | map.insert( Priority, QString::number( data->priority ) ); |
450 | map.insert( DateDay, QString::number( data->date.day() ) ); | 450 | map.insert( DateDay, QString::number( data->date.day() ) ); |
451 | map.insert( DateMonth, QString::number( data->date.month() ) ); | 451 | map.insert( DateMonth, QString::number( data->date.month() ) ); |
452 | map.insert( DateYear, QString::number( data->date.year() ) ); | 452 | map.insert( DateYear, QString::number( data->date.year() ) ); |
453 | map.insert( Progress, QString::number( data->prog ) ); | 453 | map.insert( Progress, QString::number( data->prog ) ); |
454 | // map.insert( CrossReference, crossToString() ); | 454 | // map.insert( CrossReference, crossToString() ); |
455 | /* FIXME!!! map.insert( State, ); | 455 | /* FIXME!!! map.insert( State, ); |
456 | map.insert( Recurrence, ); | 456 | map.insert( Recurrence, ); |
457 | map.insert( Reminders, ); | 457 | map.insert( Reminders, ); |
458 | map. | 458 | map. |
459 | */ | 459 | */ |
460 | return map; | 460 | return map; |
461 | } | 461 | } |
462 | 462 | ||
463 | QMap<QString, QString> OTodo::toExtraMap()const { | ||
464 | return data->extra; | ||
465 | } | ||
466 | /** | 463 | /** |
467 | * change or modify looks at the ref count and either | 464 | * change or modify looks at the ref count and either |
468 | * creates a new QShared Object or it can modify it | 465 | * creates a new QShared Object or it can modify it |
469 | * right in place | 466 | * right in place |
470 | */ | 467 | */ |
471 | void OTodo::changeOrModify() { | 468 | void OTodo::changeOrModify() { |
472 | if ( data->count != 1 ) { | 469 | if ( data->count != 1 ) { |
473 | qWarning("changeOrModify"); | 470 | qWarning("changeOrModify"); |
474 | data->deref(); | 471 | data->deref(); |
475 | OTodoData* d2 = new OTodoData(); | 472 | OTodoData* d2 = new OTodoData(); |
476 | copy(data, d2 ); | 473 | copy(data, d2 ); |
477 | data = d2; | 474 | data = d2; |
478 | } | 475 | } |
479 | } | 476 | } |
480 | // WATCHOUT | 477 | // WATCHOUT |
481 | /* | 478 | /* |
482 | * if you add something to the Data struct | 479 | * if you add something to the Data struct |
483 | * be sure to copy it here | 480 | * be sure to copy it here |
484 | */ | 481 | */ |
485 | void OTodo::copy( OTodoData* src, OTodoData* dest ) { | 482 | void OTodo::copy( OTodoData* src, OTodoData* dest ) { |
486 | dest->date = src->date; | 483 | dest->date = src->date; |
487 | dest->isCompleted = src->isCompleted; | 484 | dest->isCompleted = src->isCompleted; |
488 | dest->hasDate = src->hasDate; | 485 | dest->hasDate = src->hasDate; |
489 | dest->priority = src->priority; | 486 | dest->priority = src->priority; |
490 | dest->desc = src->desc; | 487 | dest->desc = src->desc; |
491 | dest->sum = src->sum; | 488 | dest->sum = src->sum; |
492 | dest->extra = src->extra; | 489 | dest->extra = src->extra; |
493 | dest->prog = src->prog; | 490 | dest->prog = src->prog; |
494 | 491 | ||
495 | if (src->state ) | 492 | if (src->state ) |
496 | dest->state = new OPimState( *src->state ); | 493 | dest->state = new OPimState( *src->state ); |
497 | 494 | ||
diff --git a/libopie/pim/otodo.h b/libopie/pim/otodo.h index 4d5ee36..f9a345a 100644 --- a/libopie/pim/otodo.h +++ b/libopie/pim/otodo.h | |||
@@ -164,65 +164,64 @@ public: | |||
164 | 164 | ||
165 | /** | 165 | /** |
166 | * A small summary of the todo | 166 | * A small summary of the todo |
167 | */ | 167 | */ |
168 | QString summary() const; | 168 | QString summary() const; |
169 | 169 | ||
170 | /** | 170 | /** |
171 | * @reimplemented | 171 | * @reimplemented |
172 | * Return this todoevent in a RichText formatted QString | 172 | * Return this todoevent in a RichText formatted QString |
173 | */ | 173 | */ |
174 | QString toRichText() const; | 174 | QString toRichText() const; |
175 | 175 | ||
176 | bool hasNotifiers()const; | 176 | bool hasNotifiers()const; |
177 | /* | 177 | /* |
178 | * FIXME check if the sharing is still fine!! -zecke | 178 | * FIXME check if the sharing is still fine!! -zecke |
179 | * ### CHECK If API is fine | 179 | * ### CHECK If API is fine |
180 | */ | 180 | */ |
181 | /** | 181 | /** |
182 | * return a reference to our notifiers... | 182 | * return a reference to our notifiers... |
183 | */ | 183 | */ |
184 | OPimNotifyManager ¬ifiers(); | 184 | OPimNotifyManager ¬ifiers(); |
185 | 185 | ||
186 | /** | 186 | /** |
187 | * | 187 | * |
188 | */ | 188 | */ |
189 | const OPimNotifyManager ¬ifiers()const; | 189 | const OPimNotifyManager ¬ifiers()const; |
190 | 190 | ||
191 | /** | 191 | /** |
192 | * reimplementations | 192 | * reimplementations |
193 | */ | 193 | */ |
194 | QString type()const; | 194 | QString type()const; |
195 | QString toShortText()const; | 195 | QString toShortText()const; |
196 | QMap<QString, QString> toExtraMap()const; | ||
197 | QString recordField(int id )const; | 196 | QString recordField(int id )const; |
198 | 197 | ||
199 | /** | 198 | /** |
200 | * toMap puts all data into the map. int relates | 199 | * toMap puts all data into the map. int relates |
201 | * to ToDoEvent RecordFields enum | 200 | * to ToDoEvent RecordFields enum |
202 | */ | 201 | */ |
203 | QMap<int, QString> toMap()const; | 202 | QMap<int, QString> toMap()const; |
204 | 203 | ||
205 | /** | 204 | /** |
206 | * Set if this Todo is completed | 205 | * Set if this Todo is completed |
207 | */ | 206 | */ |
208 | void setCompleted(bool completed ); | 207 | void setCompleted(bool completed ); |
209 | 208 | ||
210 | /** | 209 | /** |
211 | * set if this todo got an end data | 210 | * set if this todo got an end data |
212 | */ | 211 | */ |
213 | void setHasDueDate( bool hasDate ); | 212 | void setHasDueDate( bool hasDate ); |
214 | // FIXME we do not have these for start, completed | 213 | // FIXME we do not have these for start, completed |
215 | // cause we'll use the isNull() of QDate for figuring | 214 | // cause we'll use the isNull() of QDate for figuring |
216 | // out if it's has a date... | 215 | // out if it's has a date... |
217 | // decide what to do here? -zecke | 216 | // decide what to do here? -zecke |
218 | 217 | ||
219 | /** | 218 | /** |
220 | * Set the priority of the Todo | 219 | * Set the priority of the Todo |
221 | */ | 220 | */ |
222 | void setPriority(int priority ); | 221 | void setPriority(int priority ); |
223 | 222 | ||
224 | /** | 223 | /** |
225 | * Set the progress. | 224 | * Set the progress. |
226 | */ | 225 | */ |
227 | void setProgress( ushort progress ); | 226 | void setProgress( ushort progress ); |
228 | 227 | ||
diff --git a/libopie/pim/otodoaccessxml.cpp b/libopie/pim/otodoaccessxml.cpp index 2b62f0d..3d15354 100644 --- a/libopie/pim/otodoaccessxml.cpp +++ b/libopie/pim/otodoaccessxml.cpp | |||
@@ -468,67 +468,89 @@ void OTodoAccessXML::todo( QAsciiDict<int>* dict, OTodo& ev, | |||
468 | /* Recurrence stuff below + post processing later */ | 468 | /* Recurrence stuff below + post processing later */ |
469 | case FRType: | 469 | case FRType: |
470 | if ( val == "Daily" ) | 470 | if ( val == "Daily" ) |
471 | recur()->setType( ORecur::Daily ); | 471 | recur()->setType( ORecur::Daily ); |
472 | else if ( val == "Weekly" ) | 472 | else if ( val == "Weekly" ) |
473 | recur()->setType( ORecur::Weekly); | 473 | recur()->setType( ORecur::Weekly); |
474 | else if ( val == "MonthlyDay" ) | 474 | else if ( val == "MonthlyDay" ) |
475 | recur()->setType( ORecur::MonthlyDay ); | 475 | recur()->setType( ORecur::MonthlyDay ); |
476 | else if ( val == "MonthlyDate" ) | 476 | else if ( val == "MonthlyDate" ) |
477 | recur()->setType( ORecur::MonthlyDate ); | 477 | recur()->setType( ORecur::MonthlyDate ); |
478 | else if ( val == "Yearly" ) | 478 | else if ( val == "Yearly" ) |
479 | recur()->setType( ORecur::Yearly ); | 479 | recur()->setType( ORecur::Yearly ); |
480 | else | 480 | else |
481 | recur()->setType( ORecur::NoRepeat ); | 481 | recur()->setType( ORecur::NoRepeat ); |
482 | break; | 482 | break; |
483 | case FRWeekdays: | 483 | case FRWeekdays: |
484 | recur()->setDays( val.toInt() ); | 484 | recur()->setDays( val.toInt() ); |
485 | break; | 485 | break; |
486 | case FRPosition: | 486 | case FRPosition: |
487 | recur()->setPosition( val.toInt() ); | 487 | recur()->setPosition( val.toInt() ); |
488 | break; | 488 | break; |
489 | case FRFreq: | 489 | case FRFreq: |
490 | recur()->setFrequency( val.toInt() ); | 490 | recur()->setFrequency( val.toInt() ); |
491 | break; | 491 | break; |
492 | case FRHasEndDate: | 492 | case FRHasEndDate: |
493 | recur()->setHasEndDate( val.toInt() ); | 493 | recur()->setHasEndDate( val.toInt() ); |
494 | break; | 494 | break; |
495 | case FREndDate: { | 495 | case FREndDate: { |
496 | rp_end = (time_t) val.toLong(); | 496 | rp_end = (time_t) val.toLong(); |
497 | break; | 497 | break; |
498 | } | 498 | } |
499 | default: | 499 | default: |
500 | ev.setCustomField( attr, val ); | ||
500 | break; | 501 | break; |
501 | } | 502 | } |
502 | } | 503 | } |
504 | |||
505 | // from PalmtopRecord... GPL ### FIXME | ||
506 | namespace { | ||
507 | QString customToXml(const QMap<QString, QString>& customMap ) | ||
508 | { | ||
509 | //qWarning(QString("writing custom %1").arg(customMap.count())); | ||
510 | QString buf(" "); | ||
511 | for ( QMap<QString, QString>::ConstIterator cit = customMap.begin(); | ||
512 | cit != customMap.end(); ++cit) { | ||
513 | // qWarning(".ITEM."); | ||
514 | buf += cit.key(); | ||
515 | buf += "=\""; | ||
516 | buf += Qtopia::escapeString(cit.data()); | ||
517 | buf += "\" "; | ||
518 | } | ||
519 | return buf; | ||
520 | } | ||
521 | |||
522 | |||
523 | } | ||
524 | |||
503 | QString OTodoAccessXML::toString( const OTodo& ev )const { | 525 | QString OTodoAccessXML::toString( const OTodo& ev )const { |
504 | QString str; | 526 | QString str; |
505 | 527 | ||
506 | str += "Completed=\"" + QString::number( ev.isCompleted() ) + "\" "; | 528 | str += "Completed=\"" + QString::number( ev.isCompleted() ) + "\" "; |
507 | str += "HasDate=\"" + QString::number( ev.hasDueDate() ) + "\" "; | 529 | str += "HasDate=\"" + QString::number( ev.hasDueDate() ) + "\" "; |
508 | str += "Priority=\"" + QString::number( ev.priority() ) + "\" "; | 530 | str += "Priority=\"" + QString::number( ev.priority() ) + "\" "; |
509 | str += "Progress=\"" + QString::number(ev.progress() ) + "\" "; | 531 | str += "Progress=\"" + QString::number(ev.progress() ) + "\" "; |
510 | 532 | ||
511 | str += "Categories=\"" + toString( ev.categories() ) + "\" "; | 533 | str += "Categories=\"" + toString( ev.categories() ) + "\" "; |
512 | str += "Description=\"" + Qtopia::escapeString( ev.description() ) + "\" "; | 534 | str += "Description=\"" + Qtopia::escapeString( ev.description() ) + "\" "; |
513 | str += "Summary=\"" + Qtopia::escapeString( ev.summary() ) + "\" "; | 535 | str += "Summary=\"" + Qtopia::escapeString( ev.summary() ) + "\" "; |
514 | 536 | ||
515 | if ( ev.hasDueDate() ) { | 537 | if ( ev.hasDueDate() ) { |
516 | str += "DateYear=\"" + QString::number( ev.dueDate().year() ) + "\" "; | 538 | str += "DateYear=\"" + QString::number( ev.dueDate().year() ) + "\" "; |
517 | str += "DateMonth=\"" + QString::number( ev.dueDate().month() ) + "\" "; | 539 | str += "DateMonth=\"" + QString::number( ev.dueDate().month() ) + "\" "; |
518 | str += "DateDay=\"" + QString::number( ev.dueDate().day() ) + "\" "; | 540 | str += "DateDay=\"" + QString::number( ev.dueDate().day() ) + "\" "; |
519 | } | 541 | } |
520 | // qWarning( "Uid %d", ev.uid() ); | 542 | // qWarning( "Uid %d", ev.uid() ); |
521 | str += "Uid=\"" + QString::number( ev.uid() ) + "\" "; | 543 | str += "Uid=\"" + QString::number( ev.uid() ) + "\" "; |
522 | 544 | ||
523 | // append the extra options | 545 | // append the extra options |
524 | /* FIXME Qtopia::Record this is currently not | 546 | /* FIXME Qtopia::Record this is currently not |
525 | * possible you can set custom fields | 547 | * possible you can set custom fields |
526 | * but don' iterate over the list | 548 | * but don' iterate over the list |
527 | * I may do #define private protected | 549 | * I may do #define private protected |
528 | * for this case - cough --zecke | 550 | * for this case - cough --zecke |
529 | */ | 551 | */ |
530 | /* | 552 | /* |
531 | QMap<QString, QString> extras = ev.extras(); | 553 | QMap<QString, QString> extras = ev.extras(); |
532 | QMap<QString, QString>::Iterator extIt; | 554 | QMap<QString, QString>::Iterator extIt; |
533 | for (extIt = extras.begin(); extIt != extras.end(); ++extIt ) | 555 | for (extIt = extras.begin(); extIt != extras.end(); ++extIt ) |
534 | str += extIt.key() + "=\"" + extIt.data() + "\" "; | 556 | str += extIt.key() + "=\"" + extIt.data() + "\" "; |
@@ -552,64 +574,65 @@ QString OTodoAccessXML::toString( const OTodo& ev )const { | |||
552 | OPimNotifyManager manager = ev.notifiers(); | 574 | OPimNotifyManager manager = ev.notifiers(); |
553 | OPimNotifyManager::Alarms alarms = manager.alarms(); | 575 | OPimNotifyManager::Alarms alarms = manager.alarms(); |
554 | if (!alarms.isEmpty() ) { | 576 | if (!alarms.isEmpty() ) { |
555 | QStringList als; | 577 | QStringList als; |
556 | OPimNotifyManager::Alarms::Iterator it = alarms.begin(); | 578 | OPimNotifyManager::Alarms::Iterator it = alarms.begin(); |
557 | for ( ; it != alarms.end(); ++it ) { | 579 | for ( ; it != alarms.end(); ++it ) { |
558 | /* only if time is valid */ | 580 | /* only if time is valid */ |
559 | if ( (*it).dateTime().isValid() ) { | 581 | if ( (*it).dateTime().isValid() ) { |
560 | als << OConversion::dateTimeToString( (*it).dateTime() ) | 582 | als << OConversion::dateTimeToString( (*it).dateTime() ) |
561 | + ":" + QString::number( (*it).duration() ) | 583 | + ":" + QString::number( (*it).duration() ) |
562 | + ":" + QString::number( (*it).sound() ) | 584 | + ":" + QString::number( (*it).sound() ) |
563 | + ":"; | 585 | + ":"; |
564 | } | 586 | } |
565 | } | 587 | } |
566 | // now write the list | 588 | // now write the list |
567 | qWarning("als: %s", als.join("____________").latin1() ); | 589 | qWarning("als: %s", als.join("____________").latin1() ); |
568 | str += "Alarms=\""+als.join(";") +"\" "; | 590 | str += "Alarms=\""+als.join(";") +"\" "; |
569 | } | 591 | } |
570 | 592 | ||
571 | /* | 593 | /* |
572 | * now the same for reminders but more easy. We just save the uid of the OEvent. | 594 | * now the same for reminders but more easy. We just save the uid of the OEvent. |
573 | */ | 595 | */ |
574 | OPimNotifyManager::Reminders reminders = manager.reminders(); | 596 | OPimNotifyManager::Reminders reminders = manager.reminders(); |
575 | if (!reminders.isEmpty() ) { | 597 | if (!reminders.isEmpty() ) { |
576 | OPimNotifyManager::Reminders::Iterator it = reminders.begin(); | 598 | OPimNotifyManager::Reminders::Iterator it = reminders.begin(); |
577 | QStringList records; | 599 | QStringList records; |
578 | for ( ; it != reminders.end(); ++it ) { | 600 | for ( ; it != reminders.end(); ++it ) { |
579 | records << QString::number( (*it).recordUid() ); | 601 | records << QString::number( (*it).recordUid() ); |
580 | } | 602 | } |
581 | str += "Reminders=\""+ records.join(";") +"\" "; | 603 | str += "Reminders=\""+ records.join(";") +"\" "; |
582 | } | 604 | } |
583 | } | 605 | } |
606 | str += customToXml( ev.toExtraMap() ); | ||
584 | 607 | ||
585 | 608 | ||
586 | return str; | 609 | return str; |
587 | } | 610 | } |
588 | QString OTodoAccessXML::toString( const QArray<int>& ints ) const { | 611 | QString OTodoAccessXML::toString( const QArray<int>& ints ) const { |
589 | return Qtopia::Record::idsToString( ints ); | 612 | return Qtopia::Record::idsToString( ints ); |
590 | } | 613 | } |
591 | 614 | ||
592 | /* internal class for sorting | 615 | /* internal class for sorting |
593 | * | 616 | * |
594 | * Inspired by todoxmlio.cpp from TT | 617 | * Inspired by todoxmlio.cpp from TT |
595 | */ | 618 | */ |
596 | 619 | ||
597 | struct OTodoXMLContainer { | 620 | struct OTodoXMLContainer { |
598 | OTodo todo; | 621 | OTodo todo; |
599 | }; | 622 | }; |
600 | 623 | ||
601 | namespace { | 624 | namespace { |
602 | inline QString string( const OTodo& todo) { | 625 | inline QString string( const OTodo& todo) { |
603 | return todo.summary().isEmpty() ? | 626 | return todo.summary().isEmpty() ? |
604 | todo.description().left(20 ) : | 627 | todo.description().left(20 ) : |
605 | todo.summary(); | 628 | todo.summary(); |
606 | } | 629 | } |
607 | inline int completed( const OTodo& todo1, const OTodo& todo2) { | 630 | inline int completed( const OTodo& todo1, const OTodo& todo2) { |
608 | int ret = 0; | 631 | int ret = 0; |
609 | if ( todo1.isCompleted() ) ret++; | 632 | if ( todo1.isCompleted() ) ret++; |
610 | if ( todo2.isCompleted() ) ret--; | 633 | if ( todo2.isCompleted() ) ret--; |
611 | return ret; | 634 | return ret; |
612 | } | 635 | } |
613 | inline int priority( const OTodo& t1, const OTodo& t2) { | 636 | inline int priority( const OTodo& t1, const OTodo& t2) { |
614 | return ( t1.priority() - t2.priority() ); | 637 | return ( t1.priority() - t2.priority() ); |
615 | } | 638 | } |
diff --git a/libopie2/opiepim/backend/otodoaccessxml.cpp b/libopie2/opiepim/backend/otodoaccessxml.cpp index 2b62f0d..3d15354 100644 --- a/libopie2/opiepim/backend/otodoaccessxml.cpp +++ b/libopie2/opiepim/backend/otodoaccessxml.cpp | |||
@@ -468,67 +468,89 @@ void OTodoAccessXML::todo( QAsciiDict<int>* dict, OTodo& ev, | |||
468 | /* Recurrence stuff below + post processing later */ | 468 | /* Recurrence stuff below + post processing later */ |
469 | case FRType: | 469 | case FRType: |
470 | if ( val == "Daily" ) | 470 | if ( val == "Daily" ) |
471 | recur()->setType( ORecur::Daily ); | 471 | recur()->setType( ORecur::Daily ); |
472 | else if ( val == "Weekly" ) | 472 | else if ( val == "Weekly" ) |
473 | recur()->setType( ORecur::Weekly); | 473 | recur()->setType( ORecur::Weekly); |
474 | else if ( val == "MonthlyDay" ) | 474 | else if ( val == "MonthlyDay" ) |
475 | recur()->setType( ORecur::MonthlyDay ); | 475 | recur()->setType( ORecur::MonthlyDay ); |
476 | else if ( val == "MonthlyDate" ) | 476 | else if ( val == "MonthlyDate" ) |
477 | recur()->setType( ORecur::MonthlyDate ); | 477 | recur()->setType( ORecur::MonthlyDate ); |
478 | else if ( val == "Yearly" ) | 478 | else if ( val == "Yearly" ) |
479 | recur()->setType( ORecur::Yearly ); | 479 | recur()->setType( ORecur::Yearly ); |
480 | else | 480 | else |
481 | recur()->setType( ORecur::NoRepeat ); | 481 | recur()->setType( ORecur::NoRepeat ); |
482 | break; | 482 | break; |
483 | case FRWeekdays: | 483 | case FRWeekdays: |
484 | recur()->setDays( val.toInt() ); | 484 | recur()->setDays( val.toInt() ); |
485 | break; | 485 | break; |
486 | case FRPosition: | 486 | case FRPosition: |
487 | recur()->setPosition( val.toInt() ); | 487 | recur()->setPosition( val.toInt() ); |
488 | break; | 488 | break; |
489 | case FRFreq: | 489 | case FRFreq: |
490 | recur()->setFrequency( val.toInt() ); | 490 | recur()->setFrequency( val.toInt() ); |
491 | break; | 491 | break; |
492 | case FRHasEndDate: | 492 | case FRHasEndDate: |
493 | recur()->setHasEndDate( val.toInt() ); | 493 | recur()->setHasEndDate( val.toInt() ); |
494 | break; | 494 | break; |
495 | case FREndDate: { | 495 | case FREndDate: { |
496 | rp_end = (time_t) val.toLong(); | 496 | rp_end = (time_t) val.toLong(); |
497 | break; | 497 | break; |
498 | } | 498 | } |
499 | default: | 499 | default: |
500 | ev.setCustomField( attr, val ); | ||
500 | break; | 501 | break; |
501 | } | 502 | } |
502 | } | 503 | } |
504 | |||
505 | // from PalmtopRecord... GPL ### FIXME | ||
506 | namespace { | ||
507 | QString customToXml(const QMap<QString, QString>& customMap ) | ||
508 | { | ||
509 | //qWarning(QString("writing custom %1").arg(customMap.count())); | ||
510 | QString buf(" "); | ||
511 | for ( QMap<QString, QString>::ConstIterator cit = customMap.begin(); | ||
512 | cit != customMap.end(); ++cit) { | ||
513 | // qWarning(".ITEM."); | ||
514 | buf += cit.key(); | ||
515 | buf += "=\""; | ||
516 | buf += Qtopia::escapeString(cit.data()); | ||
517 | buf += "\" "; | ||
518 | } | ||
519 | return buf; | ||
520 | } | ||
521 | |||
522 | |||
523 | } | ||
524 | |||
503 | QString OTodoAccessXML::toString( const OTodo& ev )const { | 525 | QString OTodoAccessXML::toString( const OTodo& ev )const { |
504 | QString str; | 526 | QString str; |
505 | 527 | ||
506 | str += "Completed=\"" + QString::number( ev.isCompleted() ) + "\" "; | 528 | str += "Completed=\"" + QString::number( ev.isCompleted() ) + "\" "; |
507 | str += "HasDate=\"" + QString::number( ev.hasDueDate() ) + "\" "; | 529 | str += "HasDate=\"" + QString::number( ev.hasDueDate() ) + "\" "; |
508 | str += "Priority=\"" + QString::number( ev.priority() ) + "\" "; | 530 | str += "Priority=\"" + QString::number( ev.priority() ) + "\" "; |
509 | str += "Progress=\"" + QString::number(ev.progress() ) + "\" "; | 531 | str += "Progress=\"" + QString::number(ev.progress() ) + "\" "; |
510 | 532 | ||
511 | str += "Categories=\"" + toString( ev.categories() ) + "\" "; | 533 | str += "Categories=\"" + toString( ev.categories() ) + "\" "; |
512 | str += "Description=\"" + Qtopia::escapeString( ev.description() ) + "\" "; | 534 | str += "Description=\"" + Qtopia::escapeString( ev.description() ) + "\" "; |
513 | str += "Summary=\"" + Qtopia::escapeString( ev.summary() ) + "\" "; | 535 | str += "Summary=\"" + Qtopia::escapeString( ev.summary() ) + "\" "; |
514 | 536 | ||
515 | if ( ev.hasDueDate() ) { | 537 | if ( ev.hasDueDate() ) { |
516 | str += "DateYear=\"" + QString::number( ev.dueDate().year() ) + "\" "; | 538 | str += "DateYear=\"" + QString::number( ev.dueDate().year() ) + "\" "; |
517 | str += "DateMonth=\"" + QString::number( ev.dueDate().month() ) + "\" "; | 539 | str += "DateMonth=\"" + QString::number( ev.dueDate().month() ) + "\" "; |
518 | str += "DateDay=\"" + QString::number( ev.dueDate().day() ) + "\" "; | 540 | str += "DateDay=\"" + QString::number( ev.dueDate().day() ) + "\" "; |
519 | } | 541 | } |
520 | // qWarning( "Uid %d", ev.uid() ); | 542 | // qWarning( "Uid %d", ev.uid() ); |
521 | str += "Uid=\"" + QString::number( ev.uid() ) + "\" "; | 543 | str += "Uid=\"" + QString::number( ev.uid() ) + "\" "; |
522 | 544 | ||
523 | // append the extra options | 545 | // append the extra options |
524 | /* FIXME Qtopia::Record this is currently not | 546 | /* FIXME Qtopia::Record this is currently not |
525 | * possible you can set custom fields | 547 | * possible you can set custom fields |
526 | * but don' iterate over the list | 548 | * but don' iterate over the list |
527 | * I may do #define private protected | 549 | * I may do #define private protected |
528 | * for this case - cough --zecke | 550 | * for this case - cough --zecke |
529 | */ | 551 | */ |
530 | /* | 552 | /* |
531 | QMap<QString, QString> extras = ev.extras(); | 553 | QMap<QString, QString> extras = ev.extras(); |
532 | QMap<QString, QString>::Iterator extIt; | 554 | QMap<QString, QString>::Iterator extIt; |
533 | for (extIt = extras.begin(); extIt != extras.end(); ++extIt ) | 555 | for (extIt = extras.begin(); extIt != extras.end(); ++extIt ) |
534 | str += extIt.key() + "=\"" + extIt.data() + "\" "; | 556 | str += extIt.key() + "=\"" + extIt.data() + "\" "; |
@@ -552,64 +574,65 @@ QString OTodoAccessXML::toString( const OTodo& ev )const { | |||
552 | OPimNotifyManager manager = ev.notifiers(); | 574 | OPimNotifyManager manager = ev.notifiers(); |
553 | OPimNotifyManager::Alarms alarms = manager.alarms(); | 575 | OPimNotifyManager::Alarms alarms = manager.alarms(); |
554 | if (!alarms.isEmpty() ) { | 576 | if (!alarms.isEmpty() ) { |
555 | QStringList als; | 577 | QStringList als; |
556 | OPimNotifyManager::Alarms::Iterator it = alarms.begin(); | 578 | OPimNotifyManager::Alarms::Iterator it = alarms.begin(); |
557 | for ( ; it != alarms.end(); ++it ) { | 579 | for ( ; it != alarms.end(); ++it ) { |
558 | /* only if time is valid */ | 580 | /* only if time is valid */ |
559 | if ( (*it).dateTime().isValid() ) { | 581 | if ( (*it).dateTime().isValid() ) { |
560 | als << OConversion::dateTimeToString( (*it).dateTime() ) | 582 | als << OConversion::dateTimeToString( (*it).dateTime() ) |
561 | + ":" + QString::number( (*it).duration() ) | 583 | + ":" + QString::number( (*it).duration() ) |
562 | + ":" + QString::number( (*it).sound() ) | 584 | + ":" + QString::number( (*it).sound() ) |
563 | + ":"; | 585 | + ":"; |
564 | } | 586 | } |
565 | } | 587 | } |
566 | // now write the list | 588 | // now write the list |
567 | qWarning("als: %s", als.join("____________").latin1() ); | 589 | qWarning("als: %s", als.join("____________").latin1() ); |
568 | str += "Alarms=\""+als.join(";") +"\" "; | 590 | str += "Alarms=\""+als.join(";") +"\" "; |
569 | } | 591 | } |
570 | 592 | ||
571 | /* | 593 | /* |
572 | * now the same for reminders but more easy. We just save the uid of the OEvent. | 594 | * now the same for reminders but more easy. We just save the uid of the OEvent. |
573 | */ | 595 | */ |
574 | OPimNotifyManager::Reminders reminders = manager.reminders(); | 596 | OPimNotifyManager::Reminders reminders = manager.reminders(); |
575 | if (!reminders.isEmpty() ) { | 597 | if (!reminders.isEmpty() ) { |
576 | OPimNotifyManager::Reminders::Iterator it = reminders.begin(); | 598 | OPimNotifyManager::Reminders::Iterator it = reminders.begin(); |
577 | QStringList records; | 599 | QStringList records; |
578 | for ( ; it != reminders.end(); ++it ) { | 600 | for ( ; it != reminders.end(); ++it ) { |
579 | records << QString::number( (*it).recordUid() ); | 601 | records << QString::number( (*it).recordUid() ); |
580 | } | 602 | } |
581 | str += "Reminders=\""+ records.join(";") +"\" "; | 603 | str += "Reminders=\""+ records.join(";") +"\" "; |
582 | } | 604 | } |
583 | } | 605 | } |
606 | str += customToXml( ev.toExtraMap() ); | ||
584 | 607 | ||
585 | 608 | ||
586 | return str; | 609 | return str; |
587 | } | 610 | } |
588 | QString OTodoAccessXML::toString( const QArray<int>& ints ) const { | 611 | QString OTodoAccessXML::toString( const QArray<int>& ints ) const { |
589 | return Qtopia::Record::idsToString( ints ); | 612 | return Qtopia::Record::idsToString( ints ); |
590 | } | 613 | } |
591 | 614 | ||
592 | /* internal class for sorting | 615 | /* internal class for sorting |
593 | * | 616 | * |
594 | * Inspired by todoxmlio.cpp from TT | 617 | * Inspired by todoxmlio.cpp from TT |
595 | */ | 618 | */ |
596 | 619 | ||
597 | struct OTodoXMLContainer { | 620 | struct OTodoXMLContainer { |
598 | OTodo todo; | 621 | OTodo todo; |
599 | }; | 622 | }; |
600 | 623 | ||
601 | namespace { | 624 | namespace { |
602 | inline QString string( const OTodo& todo) { | 625 | inline QString string( const OTodo& todo) { |
603 | return todo.summary().isEmpty() ? | 626 | return todo.summary().isEmpty() ? |
604 | todo.description().left(20 ) : | 627 | todo.description().left(20 ) : |
605 | todo.summary(); | 628 | todo.summary(); |
606 | } | 629 | } |
607 | inline int completed( const OTodo& todo1, const OTodo& todo2) { | 630 | inline int completed( const OTodo& todo1, const OTodo& todo2) { |
608 | int ret = 0; | 631 | int ret = 0; |
609 | if ( todo1.isCompleted() ) ret++; | 632 | if ( todo1.isCompleted() ) ret++; |
610 | if ( todo2.isCompleted() ) ret--; | 633 | if ( todo2.isCompleted() ) ret--; |
611 | return ret; | 634 | return ret; |
612 | } | 635 | } |
613 | inline int priority( const OTodo& t1, const OTodo& t2) { | 636 | inline int priority( const OTodo& t1, const OTodo& t2) { |
614 | return ( t1.priority() - t2.priority() ); | 637 | return ( t1.priority() - t2.priority() ); |
615 | } | 638 | } |
diff --git a/libopie2/opiepim/core/opimrecord.cpp b/libopie2/opiepim/core/opimrecord.cpp index 0c9734d..2365748 100644 --- a/libopie2/opiepim/core/opimrecord.cpp +++ b/libopie2/opiepim/core/opimrecord.cpp | |||
@@ -145,32 +145,38 @@ bool OPimRecord::saveToStream( QDataStream& stream )const { | |||
145 | flush( (*it).partner( OPimXRef::One), stream ); | 145 | flush( (*it).partner( OPimXRef::One), stream ); |
146 | flush( (*it).partner( OPimXRef::Two), stream ); | 146 | flush( (*it).partner( OPimXRef::Two), stream ); |
147 | } | 147 | } |
148 | return true; | 148 | return true; |
149 | } | 149 | } |
150 | void OPimRecord::flush( const OPimXRefPartner& par, QDataStream& str ) const{ | 150 | void OPimRecord::flush( const OPimXRefPartner& par, QDataStream& str ) const{ |
151 | str << par.service(); | 151 | str << par.service(); |
152 | str << par.uid(); | 152 | str << par.uid(); |
153 | str << par.field(); | 153 | str << par.field(); |
154 | } | 154 | } |
155 | OPimXRefPartner OPimRecord::partner( QDataStream& stream ) { | 155 | OPimXRefPartner OPimRecord::partner( QDataStream& stream ) { |
156 | OPimXRefPartner par; | 156 | OPimXRefPartner par; |
157 | QString str; | 157 | QString str; |
158 | int i; | 158 | int i; |
159 | 159 | ||
160 | stream >> str; | 160 | stream >> str; |
161 | par.setService( str ); | 161 | par.setService( str ); |
162 | 162 | ||
163 | stream >> i; | 163 | stream >> i; |
164 | par.setUid( i ); | 164 | par.setUid( i ); |
165 | 165 | ||
166 | stream >> i ; | 166 | stream >> i ; |
167 | par.setField( i ); | 167 | par.setField( i ); |
168 | 168 | ||
169 | return par; | 169 | return par; |
170 | } | 170 | } |
171 | void OPimRecord::setLastHitField( int lastHit )const { | 171 | void OPimRecord::setLastHitField( int lastHit )const { |
172 | m_lastHit = lastHit; | 172 | m_lastHit = lastHit; |
173 | } | 173 | } |
174 | int OPimRecord::lastHitField()const{ | 174 | int OPimRecord::lastHitField()const{ |
175 | return m_lastHit; | 175 | return m_lastHit; |
176 | } | 176 | } |
177 | QMap<QString, QString> OPimRecord::toExtraMap()const { | ||
178 | return customMap; | ||
179 | } | ||
180 | void OPimRecord::setExtraMap( const QMap<QString, QString>& map) { | ||
181 | customMap = map; | ||
182 | } | ||
diff --git a/libopie2/opiepim/core/opimrecord.h b/libopie2/opiepim/core/opimrecord.h index 494c78e..563b19c 100644 --- a/libopie2/opiepim/core/opimrecord.h +++ b/libopie2/opiepim/core/opimrecord.h | |||
@@ -1,41 +1,46 @@ | |||
1 | #ifndef OPIE_PIM_RECORD_H | 1 | #ifndef OPIE_PIM_RECORD_H |
2 | #define OPIE_PIM_RECORD_H | 2 | #define OPIE_PIM_RECORD_H |
3 | 3 | ||
4 | #include <qdatastream.h> | 4 | #include <qdatastream.h> |
5 | #include <qmap.h> | 5 | #include <qmap.h> |
6 | #include <qstring.h> | 6 | #include <qstring.h> |
7 | #include <qstringlist.h> | 7 | #include <qstringlist.h> |
8 | 8 | ||
9 | /* | ||
10 | * we need to get customMap which is private... | ||
11 | */ | ||
12 | #define private protected | ||
9 | #include <qpe/palmtoprecord.h> | 13 | #include <qpe/palmtoprecord.h> |
14 | #undef private | ||
10 | 15 | ||
11 | #include <opie/opimxrefmanager.h> | 16 | #include <opie/opimxrefmanager.h> |
12 | 17 | ||
13 | /** | 18 | /** |
14 | * This is the base class for | 19 | * This is the base class for |
15 | * all PIM Records | 20 | * all PIM Records |
16 | * | 21 | * |
17 | */ | 22 | */ |
18 | class OPimRecord : public Qtopia::Record { | 23 | class OPimRecord : public Qtopia::Record { |
19 | public: | 24 | public: |
20 | /** | 25 | /** |
21 | * c'tor | 26 | * c'tor |
22 | * uid of 0 isEmpty | 27 | * uid of 0 isEmpty |
23 | * uid of 1 will be assigned a new one | 28 | * uid of 1 will be assigned a new one |
24 | */ | 29 | */ |
25 | OPimRecord(int uid = 0); | 30 | OPimRecord(int uid = 0); |
26 | ~OPimRecord(); | 31 | ~OPimRecord(); |
27 | 32 | ||
28 | /** | 33 | /** |
29 | * copy c'tor | 34 | * copy c'tor |
30 | */ | 35 | */ |
31 | OPimRecord( const OPimRecord& rec ); | 36 | OPimRecord( const OPimRecord& rec ); |
32 | 37 | ||
33 | /** | 38 | /** |
34 | * copy operator | 39 | * copy operator |
35 | */ | 40 | */ |
36 | OPimRecord &operator=( const OPimRecord& ); | 41 | OPimRecord &operator=( const OPimRecord& ); |
37 | 42 | ||
38 | /** | 43 | /** |
39 | * category names resolved | 44 | * category names resolved |
40 | */ | 45 | */ |
41 | QStringList categoryNames( const QString& appname )const; | 46 | QStringList categoryNames( const QString& appname )const; |
@@ -65,65 +70,66 @@ public: | |||
65 | /** | 70 | /** |
66 | * a small one line summary | 71 | * a small one line summary |
67 | */ | 72 | */ |
68 | virtual QString toShortText()const = 0; | 73 | virtual QString toShortText()const = 0; |
69 | 74 | ||
70 | /** | 75 | /** |
71 | * the name of the Record | 76 | * the name of the Record |
72 | */ | 77 | */ |
73 | virtual QString type()const = 0; | 78 | virtual QString type()const = 0; |
74 | 79 | ||
75 | /** | 80 | /** |
76 | * matches the Records the regular expression? | 81 | * matches the Records the regular expression? |
77 | */ | 82 | */ |
78 | virtual bool match( const QString ®exp ) const | 83 | virtual bool match( const QString ®exp ) const |
79 | {setLastHitField( -1 ); | 84 | {setLastHitField( -1 ); |
80 | return Qtopia::Record::match(QRegExp(regexp));}; | 85 | return Qtopia::Record::match(QRegExp(regexp));}; |
81 | 86 | ||
82 | /** | 87 | /** |
83 | * if implemented this function returns which item has been | 88 | * if implemented this function returns which item has been |
84 | * last hit by the match() function. | 89 | * last hit by the match() function. |
85 | * or -1 if not implemented or no hit has occured | 90 | * or -1 if not implemented or no hit has occured |
86 | */ | 91 | */ |
87 | int lastHitField()const; | 92 | int lastHitField()const; |
88 | 93 | ||
89 | /** | 94 | /** |
90 | * converts the internal structure to a map | 95 | * converts the internal structure to a map |
91 | */ | 96 | */ |
92 | virtual QMap<int, QString> toMap()const = 0; | 97 | virtual QMap<int, QString> toMap()const = 0; |
93 | 98 | ||
94 | /** | 99 | /** |
95 | * key value representation of extra items | 100 | * key value representation of extra items |
96 | */ | 101 | */ |
97 | virtual QMap<QString, QString> toExtraMap()const = 0; | 102 | QMap<QString, QString> toExtraMap()const; |
103 | void setExtraMap( const QMap<QString, QString>& ); | ||
98 | 104 | ||
99 | /** | 105 | /** |
100 | * the name for a recordField | 106 | * the name for a recordField |
101 | */ | 107 | */ |
102 | virtual QString recordField(int)const = 0; | 108 | virtual QString recordField(int)const = 0; |
103 | 109 | ||
104 | /** | 110 | /** |
105 | * returns a reference of the | 111 | * returns a reference of the |
106 | * Cross Reference Manager | 112 | * Cross Reference Manager |
107 | * Partner 'One' is THIS PIM RECORD! | 113 | * Partner 'One' is THIS PIM RECORD! |
108 | * 'Two' is the Partner where we link to | 114 | * 'Two' is the Partner where we link to |
109 | */ | 115 | */ |
110 | OPimXRefManager& xrefmanager(); | 116 | OPimXRefManager& xrefmanager(); |
111 | 117 | ||
112 | /** | 118 | /** |
113 | * set the uid | 119 | * set the uid |
114 | */ | 120 | */ |
115 | virtual void setUid( int uid ); | 121 | virtual void setUid( int uid ); |
116 | 122 | ||
117 | /* | 123 | /* |
118 | * used inside the Templates for casting | 124 | * used inside the Templates for casting |
119 | * REIMPLEMENT in your .... | 125 | * REIMPLEMENT in your .... |
120 | */ | 126 | */ |
121 | static int rtti(); | 127 | static int rtti(); |
122 | 128 | ||
123 | /** | 129 | /** |
124 | * some marshalling and de marshalling code | 130 | * some marshalling and de marshalling code |
125 | * saves the OPimRecord | 131 | * saves the OPimRecord |
126 | * to and from a DataStream | 132 | * to and from a DataStream |
127 | */ | 133 | */ |
128 | virtual bool loadFromStream(QDataStream& ); | 134 | virtual bool loadFromStream(QDataStream& ); |
129 | virtual bool saveToStream( QDataStream& stream )const; | 135 | virtual bool saveToStream( QDataStream& stream )const; |
diff --git a/libopie2/opiepim/ocontact.cpp b/libopie2/opiepim/ocontact.cpp index a2fb68c..be4ce0a 100644 --- a/libopie2/opiepim/ocontact.cpp +++ b/libopie2/opiepim/ocontact.cpp | |||
@@ -412,65 +412,65 @@ OContact::~OContact() | |||
412 | Sets the uid for this record to \a id. | 412 | Sets the uid for this record to \a id. |
413 | */ | 413 | */ |
414 | 414 | ||
415 | /*! \enum OContact::journal_action | 415 | /*! \enum OContact::journal_action |
416 | \internal | 416 | \internal |
417 | */ | 417 | */ |
418 | 418 | ||
419 | /*! | 419 | /*! |
420 | \internal | 420 | \internal |
421 | */ | 421 | */ |
422 | QMap<int, QString> OContact::toMap() const | 422 | QMap<int, QString> OContact::toMap() const |
423 | { | 423 | { |
424 | QMap<int, QString> map = mMap; | 424 | QMap<int, QString> map = mMap; |
425 | QString cats = idsToString( categories() ); | 425 | QString cats = idsToString( categories() ); |
426 | if ( !cats.isEmpty() ) | 426 | if ( !cats.isEmpty() ) |
427 | map.insert( Qtopia::AddressCategory, cats ); | 427 | map.insert( Qtopia::AddressCategory, cats ); |
428 | return map; | 428 | return map; |
429 | } | 429 | } |
430 | 430 | ||
431 | /*! | 431 | /*! |
432 | Returns a rich text formatted QString representing the contents the contact. | 432 | Returns a rich text formatted QString representing the contents the contact. |
433 | */ | 433 | */ |
434 | QString OContact::toRichText() const | 434 | QString OContact::toRichText() const |
435 | { | 435 | { |
436 | QString text; | 436 | QString text; |
437 | QString value, comp, state; | 437 | QString value, comp, state; |
438 | QString str; | 438 | QString str; |
439 | bool marker = false; | 439 | bool marker = false; |
440 | 440 | ||
441 | // name, jobtitle and company | 441 | // name, jobtitle and company |
442 | if ( !(value = fullName()).isEmpty() ) | 442 | if ( !(value = fullName()).isEmpty() ) |
443 | text += "<b><h3><img src=\"addressbook/AddressBook\">" + Qtopia::escapeString(value) + "</h3></b>"; | 443 | text += "<b><h3><img src=\"addressbook/AddressBook\">" + Qtopia::escapeString(value) + "</h3></b>"; |
444 | 444 | ||
445 | if ( !(value = jobTitle()).isEmpty() ) | 445 | if ( !(value = jobTitle()).isEmpty() ) |
446 | text += Qtopia::escapeString(value) + "<br>"; | 446 | text += Qtopia::escapeString(value) + "<br>"; |
447 | 447 | ||
448 | comp = company(); | 448 | comp = company(); |
449 | if ( !(value = department()).isEmpty() ) { | 449 | if ( !(value = department()).isEmpty() ) { |
450 | text += Qtopia::escapeString(value); | 450 | text += Qtopia::escapeString(value); |
451 | if ( comp ) | 451 | if ( comp ) |
452 | text += ", "; | 452 | text += ", "; |
453 | else | 453 | else |
454 | text += "<br>"; | 454 | text += "<br>"; |
455 | } | 455 | } |
456 | if ( !comp.isEmpty() ) | 456 | if ( !comp.isEmpty() ) |
457 | text += Qtopia::escapeString(comp) + "<br>"; | 457 | text += Qtopia::escapeString(comp) + "<br>"; |
458 | 458 | ||
459 | text += "<hr><br>"; | 459 | text += "<hr><br>"; |
460 | 460 | ||
461 | // defailt email | 461 | // defailt email |
462 | QString defEmail = defaultEmail(); | 462 | QString defEmail = defaultEmail(); |
463 | if ( !defEmail.isEmpty() ) | 463 | if ( !defEmail.isEmpty() ) |
464 | text += "<b><img src=\"addressbook/email\">" + QObject::tr("Default Email: ") + "</b>" | 464 | text += "<b><img src=\"addressbook/email\">" + QObject::tr("Default Email: ") + "</b>" |
465 | + Qtopia::escapeString(defEmail) + "<br>"; | 465 | + Qtopia::escapeString(defEmail) + "<br>"; |
466 | 466 | ||
467 | text += "<br>"; | 467 | text += "<br>"; |
468 | 468 | ||
469 | // business address | 469 | // business address |
470 | if ( !businessStreet().isEmpty() || !businessCity().isEmpty() || | 470 | if ( !businessStreet().isEmpty() || !businessCity().isEmpty() || |
471 | !businessZip().isEmpty() || !businessCountry().isEmpty() ) { | 471 | !businessZip().isEmpty() || !businessCountry().isEmpty() ) { |
472 | text += QObject::tr( "<b>Work Address:</b>" ); | 472 | text += QObject::tr( "<b>Work Address:</b>" ); |
473 | text += "<br>"; | 473 | text += "<br>"; |
474 | marker = true; | 474 | marker = true; |
475 | } | 475 | } |
476 | 476 | ||
@@ -953,71 +953,65 @@ void OContact::setChildren( const QString &str ) | |||
953 | 953 | ||
954 | /*! | 954 | /*! |
955 | \overload | 955 | \overload |
956 | Returns TRUE if the contact matches the regular expression \a regexp. | 956 | Returns TRUE if the contact matches the regular expression \a regexp. |
957 | Otherwise returns FALSE. | 957 | Otherwise returns FALSE. |
958 | */ | 958 | */ |
959 | bool OContact::match( const QRegExp &r ) const | 959 | bool OContact::match( const QRegExp &r ) const |
960 | { | 960 | { |
961 | setLastHitField( -1 ); | 961 | setLastHitField( -1 ); |
962 | bool match; | 962 | bool match; |
963 | match = false; | 963 | match = false; |
964 | QMap<int, QString>::ConstIterator it; | 964 | QMap<int, QString>::ConstIterator it; |
965 | for ( it = mMap.begin(); it != mMap.end(); ++it ) { | 965 | for ( it = mMap.begin(); it != mMap.end(); ++it ) { |
966 | if ( (*it).find( r ) > -1 ) { | 966 | if ( (*it).find( r ) > -1 ) { |
967 | setLastHitField( it.key() ); | 967 | setLastHitField( it.key() ); |
968 | match = true; | 968 | match = true; |
969 | break; | 969 | break; |
970 | } | 970 | } |
971 | } | 971 | } |
972 | return match; | 972 | return match; |
973 | } | 973 | } |
974 | 974 | ||
975 | 975 | ||
976 | QString OContact::toShortText() const | 976 | QString OContact::toShortText() const |
977 | { | 977 | { |
978 | return ( fullName() ); | 978 | return ( fullName() ); |
979 | } | 979 | } |
980 | QString OContact::type() const | 980 | QString OContact::type() const |
981 | { | 981 | { |
982 | return QString::fromLatin1( "OContact" ); | 982 | return QString::fromLatin1( "OContact" ); |
983 | } | 983 | } |
984 | 984 | ||
985 | // Definition is missing ! (se) | 985 | |
986 | QMap<QString,QString> OContact::toExtraMap() const | ||
987 | { | ||
988 | qWarning ("Function not implemented: OContact::toExtraMap()"); | ||
989 | QMap <QString,QString> useless; | ||
990 | return useless; | ||
991 | } | ||
992 | 986 | ||
993 | class QString OContact::recordField( int pos ) const | 987 | class QString OContact::recordField( int pos ) const |
994 | { | 988 | { |
995 | QStringList SLFIELDS = fields(); // ?? why this ? (se) | 989 | QStringList SLFIELDS = fields(); // ?? why this ? (se) |
996 | return SLFIELDS[pos]; | 990 | return SLFIELDS[pos]; |
997 | } | 991 | } |
998 | 992 | ||
999 | // In future releases, we should store birthday and anniversary | 993 | // In future releases, we should store birthday and anniversary |
1000 | // internally as QDate instead of QString ! | 994 | // internally as QDate instead of QString ! |
1001 | // QString is always too complicate to interprete (DD.MM.YY, DD/MM/YY, MM/DD/YY, etc..)(se) | 995 | // QString is always too complicate to interprete (DD.MM.YY, DD/MM/YY, MM/DD/YY, etc..)(se) |
1002 | 996 | ||
1003 | /*! \fn void OContact::setBirthday( const QDate& date ) | 997 | /*! \fn void OContact::setBirthday( const QDate& date ) |
1004 | Sets the birthday for the contact to \a date. If date is null | 998 | Sets the birthday for the contact to \a date. If date is null |
1005 | the current stored date will be removed. | 999 | the current stored date will be removed. |
1006 | */ | 1000 | */ |
1007 | void OContact::setBirthday( const QDate &v ) | 1001 | void OContact::setBirthday( const QDate &v ) |
1008 | { | 1002 | { |
1009 | if ( v.isNull() ){ | 1003 | if ( v.isNull() ){ |
1010 | qWarning( "Remove Birthday"); | 1004 | qWarning( "Remove Birthday"); |
1011 | replace( Qtopia::Birthday, QString::null ); | 1005 | replace( Qtopia::Birthday, QString::null ); |
1012 | return; | 1006 | return; |
1013 | } | 1007 | } |
1014 | 1008 | ||
1015 | if ( v.isValid() ) | 1009 | if ( v.isValid() ) |
1016 | replace( Qtopia::Birthday, OConversion::dateToString( v ) ); | 1010 | replace( Qtopia::Birthday, OConversion::dateToString( v ) ); |
1017 | 1011 | ||
1018 | } | 1012 | } |
1019 | 1013 | ||
1020 | 1014 | ||
1021 | /*! \fn void OContact::setAnniversary( const QDate &date ) | 1015 | /*! \fn void OContact::setAnniversary( const QDate &date ) |
1022 | Sets the anniversary of the contact to \a date. If date is | 1016 | Sets the anniversary of the contact to \a date. If date is |
1023 | null, the current stored date will be removed. | 1017 | null, the current stored date will be removed. |
diff --git a/libopie2/opiepim/oevent.cpp b/libopie2/opiepim/oevent.cpp index e4f5d92..7bcf944 100644 --- a/libopie2/opiepim/oevent.cpp +++ b/libopie2/opiepim/oevent.cpp | |||
@@ -207,110 +207,110 @@ void OEvent::setTimeZone( const QString& tz ) { | |||
207 | changeOrModify(); | 207 | changeOrModify(); |
208 | data->timezone = tz; | 208 | data->timezone = tz; |
209 | } | 209 | } |
210 | QString OEvent::timeZone()const { | 210 | QString OEvent::timeZone()const { |
211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); | 211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); |
212 | return data->timezone; | 212 | return data->timezone; |
213 | } | 213 | } |
214 | bool OEvent::match( const QRegExp& re )const { | 214 | bool OEvent::match( const QRegExp& re )const { |
215 | if ( re.match( data->description ) != -1 ){ | 215 | if ( re.match( data->description ) != -1 ){ |
216 | setLastHitField( Qtopia::DatebookDescription ); | 216 | setLastHitField( Qtopia::DatebookDescription ); |
217 | return true; | 217 | return true; |
218 | } | 218 | } |
219 | if ( re.match( data->note ) != -1 ){ | 219 | if ( re.match( data->note ) != -1 ){ |
220 | setLastHitField( Qtopia::Note ); | 220 | setLastHitField( Qtopia::Note ); |
221 | return true; | 221 | return true; |
222 | } | 222 | } |
223 | if ( re.match( data->location ) != -1 ){ | 223 | if ( re.match( data->location ) != -1 ){ |
224 | setLastHitField( Qtopia::Location ); | 224 | setLastHitField( Qtopia::Location ); |
225 | return true; | 225 | return true; |
226 | } | 226 | } |
227 | if ( re.match( data->start.toString() ) != -1 ){ | 227 | if ( re.match( data->start.toString() ) != -1 ){ |
228 | setLastHitField( Qtopia::StartDateTime ); | 228 | setLastHitField( Qtopia::StartDateTime ); |
229 | return true; | 229 | return true; |
230 | } | 230 | } |
231 | if ( re.match( data->end.toString() ) != -1 ){ | 231 | if ( re.match( data->end.toString() ) != -1 ){ |
232 | setLastHitField( Qtopia::EndDateTime ); | 232 | setLastHitField( Qtopia::EndDateTime ); |
233 | return true; | 233 | return true; |
234 | } | 234 | } |
235 | return false; | 235 | return false; |
236 | } | 236 | } |
237 | QString OEvent::toRichText()const { | 237 | QString OEvent::toRichText()const { |
238 | QString text, value; | 238 | QString text, value; |
239 | 239 | ||
240 | // description | 240 | // description |
241 | text += "<b><h3><img src=\"datebook/DateBook\">"; | 241 | text += "<b><h3><img src=\"datebook/DateBook\">"; |
242 | if ( !description().isEmpty() ) { | 242 | if ( !description().isEmpty() ) { |
243 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "" ); | 243 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "" ); |
244 | } | 244 | } |
245 | text += "</h3></b><br><hr><br>"; | 245 | text += "</h3></b><br><hr><br>"; |
246 | 246 | ||
247 | // location | 247 | // location |
248 | if ( !(value = location()).isEmpty() ) { | 248 | if ( !(value = location()).isEmpty() ) { |
249 | text += "<b>" + QObject::tr( "Location:" ) + "</b> "; | 249 | text += "<b>" + QObject::tr( "Location:" ) + "</b> "; |
250 | text += Qtopia::escapeString(value) + "<br>"; | 250 | text += Qtopia::escapeString(value) + "<br>"; |
251 | } | 251 | } |
252 | 252 | ||
253 | // all day event | 253 | // all day event |
254 | if ( isAllDay() ) { | 254 | if ( isAllDay() ) { |
255 | text += "<b><i>" + QObject::tr( "This is an all day event" ) + "</i></b><br>"; | 255 | text += "<b><i>" + QObject::tr( "This is an all day event" ) + "</i></b><br>"; |
256 | } | 256 | } |
257 | // multiple day event | 257 | // multiple day event |
258 | else if ( isMultipleDay () ) { | 258 | else if ( isMultipleDay () ) { |
259 | text += "<b><i>" + QObject::tr( "This is a multiple day event" ) + "</i></b><br>"; | 259 | text += "<b><i>" + QObject::tr( "This is a multiple day event" ) + "</i></b><br>"; |
260 | } | 260 | } |
261 | // start & end times | 261 | // start & end times |
262 | else { | 262 | else { |
263 | // start time | 263 | // start time |
264 | if ( startDateTime().isValid() ) { | 264 | if ( startDateTime().isValid() ) { |
265 | text += "<b>" + QObject::tr( "Start:") + "</b> "; | 265 | text += "<b>" + QObject::tr( "Start:") + "</b> "; |
266 | text += Qtopia::escapeString(startDateTime().toString() ). | 266 | text += Qtopia::escapeString(startDateTime().toString() ). |
267 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 267 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
268 | } | 268 | } |
269 | 269 | ||
270 | // end time | 270 | // end time |
271 | if ( endDateTime().isValid() ) { | 271 | if ( endDateTime().isValid() ) { |
272 | text += "<b>" + QObject::tr( "End:") + "</b> "; | 272 | text += "<b>" + QObject::tr( "End:") + "</b> "; |
273 | text += Qtopia::escapeString(endDateTime().toString() ). | 273 | text += Qtopia::escapeString(endDateTime().toString() ). |
274 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 274 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
275 | } | 275 | } |
276 | } | 276 | } |
277 | 277 | ||
278 | // categories | 278 | // categories |
279 | if ( categoryNames("Calendar").count() ){ | 279 | if ( categoryNames("Calendar").count() ){ |
280 | text += "<b>" + QObject::tr( "Category:") + "</b> "; | 280 | text += "<b>" + QObject::tr( "Category:") + "</b> "; |
281 | text += categoryNames("Calendar").join(", "); | 281 | text += categoryNames("Calendar").join(", "); |
282 | text += "<br>"; | 282 | text += "<br>"; |
283 | } | 283 | } |
284 | 284 | ||
285 | //notes | 285 | //notes |
286 | if ( !note().isEmpty() ) { | 286 | if ( !note().isEmpty() ) { |
287 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; | 287 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; |
288 | text += note(); | 288 | text += note(); |
289 | // text += Qtopia::escapeString(note() ). | 289 | // text += Qtopia::escapeString(note() ). |
290 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 290 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
291 | } | 291 | } |
292 | return text; | 292 | return text; |
293 | } | 293 | } |
294 | QString OEvent::toShortText()const { | 294 | QString OEvent::toShortText()const { |
295 | QString text; | 295 | QString text; |
296 | text += QString::number( startDateTime().date().day() ); | 296 | text += QString::number( startDateTime().date().day() ); |
297 | text += "."; | 297 | text += "."; |
298 | text += QString::number( startDateTime().date().month() ); | 298 | text += QString::number( startDateTime().date().month() ); |
299 | text += "."; | 299 | text += "."; |
300 | text += QString::number( startDateTime().date().year() ); | 300 | text += QString::number( startDateTime().date().year() ); |
301 | text += " "; | 301 | text += " "; |
302 | text += QString::number( startDateTime().time().hour() ); | 302 | text += QString::number( startDateTime().time().hour() ); |
303 | text += ":"; | 303 | text += ":"; |
304 | text += QString::number( startDateTime().time().minute() ); | 304 | text += QString::number( startDateTime().time().minute() ); |
305 | text += " - "; | 305 | text += " - "; |
306 | text += description(); | 306 | text += description(); |
307 | return text; | 307 | return text; |
308 | } | 308 | } |
309 | QString OEvent::type()const { | 309 | QString OEvent::type()const { |
310 | return QString::fromLatin1("OEvent"); | 310 | return QString::fromLatin1("OEvent"); |
311 | } | 311 | } |
312 | QString OEvent::recordField( int /*id */ )const { | 312 | QString OEvent::recordField( int /*id */ )const { |
313 | return QString::null; | 313 | return QString::null; |
314 | } | 314 | } |
315 | int OEvent::rtti() { | 315 | int OEvent::rtti() { |
316 | return OPimResolver::DateBook; | 316 | return OPimResolver::DateBook; |
@@ -331,67 +331,64 @@ void OEvent::changeOrModify() { | |||
331 | if (data->manager ) | 331 | if (data->manager ) |
332 | d2->manager = new OPimNotifyManager( *data->manager ); | 332 | d2->manager = new OPimNotifyManager( *data->manager ); |
333 | 333 | ||
334 | if ( data->recur ) | 334 | if ( data->recur ) |
335 | d2->recur = new ORecur( *data->recur ); | 335 | d2->recur = new ORecur( *data->recur ); |
336 | 336 | ||
337 | d2->note = data->note; | 337 | d2->note = data->note; |
338 | d2->created = data->created; | 338 | d2->created = data->created; |
339 | d2->start = data->start; | 339 | d2->start = data->start; |
340 | d2->end = data->end; | 340 | d2->end = data->end; |
341 | d2->isAllDay = data->isAllDay; | 341 | d2->isAllDay = data->isAllDay; |
342 | d2->timezone = data->timezone; | 342 | d2->timezone = data->timezone; |
343 | d2->parent = data->parent; | 343 | d2->parent = data->parent; |
344 | 344 | ||
345 | if ( data->child ) { | 345 | if ( data->child ) { |
346 | d2->child = new QArray<int>( *data->child ); | 346 | d2->child = new QArray<int>( *data->child ); |
347 | d2->child->detach(); | 347 | d2->child->detach(); |
348 | } | 348 | } |
349 | 349 | ||
350 | data = d2; | 350 | data = d2; |
351 | } | 351 | } |
352 | } | 352 | } |
353 | void OEvent::deref() { | 353 | void OEvent::deref() { |
354 | if ( data->deref() ) { | 354 | if ( data->deref() ) { |
355 | delete data; | 355 | delete data; |
356 | data = 0; | 356 | data = 0; |
357 | } | 357 | } |
358 | } | 358 | } |
359 | // FIXME | 359 | // FIXME |
360 | QMap<int, QString> OEvent::toMap()const { | 360 | QMap<int, QString> OEvent::toMap()const { |
361 | return QMap<int, QString>(); | 361 | return QMap<int, QString>(); |
362 | } | 362 | } |
363 | QMap<QString, QString> OEvent::toExtraMap()const { | ||
364 | return QMap<QString, QString>(); | ||
365 | } | ||
366 | int OEvent::parent()const { | 363 | int OEvent::parent()const { |
367 | return data->parent; | 364 | return data->parent; |
368 | } | 365 | } |
369 | void OEvent::setParent( int uid ) { | 366 | void OEvent::setParent( int uid ) { |
370 | changeOrModify(); | 367 | changeOrModify(); |
371 | data->parent = uid; | 368 | data->parent = uid; |
372 | } | 369 | } |
373 | QArray<int> OEvent::children() const{ | 370 | QArray<int> OEvent::children() const{ |
374 | if (!data->child) return QArray<int>(); | 371 | if (!data->child) return QArray<int>(); |
375 | else | 372 | else |
376 | return data->child->copy(); | 373 | return data->child->copy(); |
377 | } | 374 | } |
378 | void OEvent::setChildren( const QArray<int>& arr ) { | 375 | void OEvent::setChildren( const QArray<int>& arr ) { |
379 | changeOrModify(); | 376 | changeOrModify(); |
380 | if (data->child) delete data->child; | 377 | if (data->child) delete data->child; |
381 | 378 | ||
382 | data->child = new QArray<int>( arr ); | 379 | data->child = new QArray<int>( arr ); |
383 | data->child->detach(); | 380 | data->child->detach(); |
384 | } | 381 | } |
385 | void OEvent::addChild( int uid ) { | 382 | void OEvent::addChild( int uid ) { |
386 | changeOrModify(); | 383 | changeOrModify(); |
387 | if (!data->child ) { | 384 | if (!data->child ) { |
388 | data->child = new QArray<int>(1); | 385 | data->child = new QArray<int>(1); |
389 | (*data->child)[0] = uid; | 386 | (*data->child)[0] = uid; |
390 | }else{ | 387 | }else{ |
391 | int count = data->child->count(); | 388 | int count = data->child->count(); |
392 | data->child->resize( count + 1 ); | 389 | data->child->resize( count + 1 ); |
393 | (*data->child)[count] = uid; | 390 | (*data->child)[count] = uid; |
394 | } | 391 | } |
395 | } | 392 | } |
396 | void OEvent::removeChild( int uid ) { | 393 | void OEvent::removeChild( int uid ) { |
397 | if (!data->child || !data->child->contains( uid ) ) return; | 394 | if (!data->child || !data->child->contains( uid ) ) return; |
diff --git a/libopie2/opiepim/oevent.h b/libopie2/opiepim/oevent.h index b696d81..30f442e 100644 --- a/libopie2/opiepim/oevent.h +++ b/libopie2/opiepim/oevent.h | |||
@@ -103,65 +103,64 @@ public: | |||
103 | /** in current timezone */ | 103 | /** in current timezone */ |
104 | QDateTime endDateTime()const; | 104 | QDateTime endDateTime()const; |
105 | QDateTime endDateTimeInZone()const; | 105 | QDateTime endDateTimeInZone()const; |
106 | 106 | ||
107 | bool isMultipleDay()const; | 107 | bool isMultipleDay()const; |
108 | bool isAllDay()const; | 108 | bool isAllDay()const; |
109 | void setAllDay( bool isAllDay ); | 109 | void setAllDay( bool isAllDay ); |
110 | 110 | ||
111 | /* pin this event to a timezone! FIXME */ | 111 | /* pin this event to a timezone! FIXME */ |
112 | void setTimeZone( const QString& timeZone ); | 112 | void setTimeZone( const QString& timeZone ); |
113 | QString timeZone()const; | 113 | QString timeZone()const; |
114 | 114 | ||
115 | 115 | ||
116 | virtual bool match( const QRegExp& )const; | 116 | virtual bool match( const QRegExp& )const; |
117 | 117 | ||
118 | /** For exception to recurrence here is a list of children... */ | 118 | /** For exception to recurrence here is a list of children... */ |
119 | QArray<int> children()const; | 119 | QArray<int> children()const; |
120 | void setChildren( const QArray<int>& ); | 120 | void setChildren( const QArray<int>& ); |
121 | void addChild( int uid ); | 121 | void addChild( int uid ); |
122 | void removeChild( int uid ); | 122 | void removeChild( int uid ); |
123 | 123 | ||
124 | /** return the parent OEvent */ | 124 | /** return the parent OEvent */ |
125 | int parent()const; | 125 | int parent()const; |
126 | void setParent( int uid ); | 126 | void setParent( int uid ); |
127 | 127 | ||
128 | 128 | ||
129 | /* needed reimp */ | 129 | /* needed reimp */ |
130 | QString toRichText()const; | 130 | QString toRichText()const; |
131 | QString toShortText()const; | 131 | QString toShortText()const; |
132 | QString type()const; | 132 | QString type()const; |
133 | 133 | ||
134 | QMap<int, QString> toMap()const; | 134 | QMap<int, QString> toMap()const; |
135 | QMap<QString, QString> toExtraMap()const; | ||
136 | QString recordField(int )const; | 135 | QString recordField(int )const; |
137 | 136 | ||
138 | static int rtti(); | 137 | static int rtti(); |
139 | 138 | ||
140 | bool loadFromStream( QDataStream& ); | 139 | bool loadFromStream( QDataStream& ); |
141 | bool saveToStream( QDataStream& )const; | 140 | bool saveToStream( QDataStream& )const; |
142 | 141 | ||
143 | /* bool operator==( const OEvent& ); | 142 | /* bool operator==( const OEvent& ); |
144 | bool operator!=( const OEvent& ); | 143 | bool operator!=( const OEvent& ); |
145 | bool operator<( const OEvent& ); | 144 | bool operator<( const OEvent& ); |
146 | bool operator<=( const OEvent& ); | 145 | bool operator<=( const OEvent& ); |
147 | bool operator>( const OEvent& ); | 146 | bool operator>( const OEvent& ); |
148 | bool operator>=(const OEvent& ); | 147 | bool operator>=(const OEvent& ); |
149 | */ | 148 | */ |
150 | private: | 149 | private: |
151 | inline void changeOrModify(); | 150 | inline void changeOrModify(); |
152 | void deref(); | 151 | void deref(); |
153 | struct Data; | 152 | struct Data; |
154 | Data* data; | 153 | Data* data; |
155 | class Private; | 154 | class Private; |
156 | Private* priv; | 155 | Private* priv; |
157 | 156 | ||
158 | }; | 157 | }; |
159 | 158 | ||
160 | /** | 159 | /** |
161 | * AN Event can span through multiple days. We split up a multiday eve | 160 | * AN Event can span through multiple days. We split up a multiday eve |
162 | */ | 161 | */ |
163 | class OEffectiveEvent { | 162 | class OEffectiveEvent { |
164 | public: | 163 | public: |
165 | typedef QValueList<OEffectiveEvent> ValueList; | 164 | typedef QValueList<OEffectiveEvent> ValueList; |
166 | enum Position { MidWay, Start, End, StartEnd }; | 165 | enum Position { MidWay, Start, End, StartEnd }; |
167 | // If we calculate the effective event of a multi-day event | 166 | // If we calculate the effective event of a multi-day event |
diff --git a/libopie2/opiepim/otodo.cpp b/libopie2/opiepim/otodo.cpp index c84eeeb..38b93f7 100644 --- a/libopie2/opiepim/otodo.cpp +++ b/libopie2/opiepim/otodo.cpp | |||
@@ -250,112 +250,112 @@ void OTodo::setMaintainer( const OPimMaintainer& pim ) { | |||
250 | (*data->maintainer) = pim; | 250 | (*data->maintainer) = pim; |
251 | else | 251 | else |
252 | data->maintainer = new OPimMaintainer( pim ); | 252 | data->maintainer = new OPimMaintainer( pim ); |
253 | } | 253 | } |
254 | bool OTodo::isOverdue( ) | 254 | bool OTodo::isOverdue( ) |
255 | { | 255 | { |
256 | if( data->hasDate && !data->isCompleted) | 256 | if( data->hasDate && !data->isCompleted) |
257 | return QDate::currentDate() > data->date; | 257 | return QDate::currentDate() > data->date; |
258 | return false; | 258 | return false; |
259 | } | 259 | } |
260 | void OTodo::setProgress(ushort progress ) | 260 | void OTodo::setProgress(ushort progress ) |
261 | { | 261 | { |
262 | changeOrModify(); | 262 | changeOrModify(); |
263 | data->prog = progress; | 263 | data->prog = progress; |
264 | } | 264 | } |
265 | QString OTodo::toShortText() const { | 265 | QString OTodo::toShortText() const { |
266 | return summary(); | 266 | return summary(); |
267 | } | 267 | } |
268 | /*! | 268 | /*! |
269 | Returns a richt text string | 269 | Returns a richt text string |
270 | */ | 270 | */ |
271 | QString OTodo::toRichText() const | 271 | QString OTodo::toRichText() const |
272 | { | 272 | { |
273 | QString text; | 273 | QString text; |
274 | QStringList catlist; | 274 | QStringList catlist; |
275 | 275 | ||
276 | // summary | 276 | // summary |
277 | text += "<b><h3><img src=\"todo/TodoList\">"; | 277 | text += "<b><h3><img src=\"todo/TodoList\">"; |
278 | if ( !summary().isEmpty() ) { | 278 | if ( !summary().isEmpty() ) { |
279 | text += Qtopia::escapeString(summary() ).replace(QRegExp( "[\n]"), "" ); | 279 | text += Qtopia::escapeString(summary() ).replace(QRegExp( "[\n]"), "" ); |
280 | } | 280 | } |
281 | text += "</h3></b><br><hr><br>"; | 281 | text += "</h3></b><br><hr><br>"; |
282 | 282 | ||
283 | // description | 283 | // description |
284 | if( !description().isEmpty() ){ | 284 | if( !description().isEmpty() ){ |
285 | text += "<b>" + QObject::tr( "Description:" ) + "</b><br>"; | 285 | text += "<b>" + QObject::tr( "Description:" ) + "</b><br>"; |
286 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) ; | 286 | text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) ; |
287 | } | 287 | } |
288 | 288 | ||
289 | // priority | 289 | // priority |
290 | int priorityval = priority(); | 290 | int priorityval = priority(); |
291 | text += "<b>" + QObject::tr( "Priority:") +" </b><img src=\"todo/priority" + | 291 | text += "<b>" + QObject::tr( "Priority:") +" </b><img src=\"todo/priority" + |
292 | QString::number( priorityval ) + "\">"; | 292 | QString::number( priorityval ) + "\">"; |
293 | // text += "<b>" + QObject::tr( "Priority:") +"</b><img src=\"todo/priority" + | 293 | // text += "<b>" + QObject::tr( "Priority:") +"</b><img src=\"todo/priority" + |
294 | // QString::number( priority() ) + "\"><br>"; | 294 | // QString::number( priority() ) + "\"><br>"; |
295 | switch ( priorityval ) | 295 | switch ( priorityval ) |
296 | { | 296 | { |
297 | case 1 : text += QObject::tr( "Very high" ); | 297 | case 1 : text += QObject::tr( "Very high" ); |
298 | break; | 298 | break; |
299 | case 2 : text += QObject::tr( "High" ); | 299 | case 2 : text += QObject::tr( "High" ); |
300 | break; | 300 | break; |
301 | case 3 : text += QObject::tr( "Normal" ); | 301 | case 3 : text += QObject::tr( "Normal" ); |
302 | break; | 302 | break; |
303 | case 4 : text += QObject::tr( "Low" ); | 303 | case 4 : text += QObject::tr( "Low" ); |
304 | break; | 304 | break; |
305 | case 5 : text += QObject::tr( "Very low" ); | 305 | case 5 : text += QObject::tr( "Very low" ); |
306 | break; | 306 | break; |
307 | }; | 307 | }; |
308 | text += "<br>"; | 308 | text += "<br>"; |
309 | 309 | ||
310 | // progress | 310 | // progress |
311 | text += "<b>" + QObject::tr( "Progress:") + " </b>" | 311 | text += "<b>" + QObject::tr( "Progress:") + " </b>" |
312 | + QString::number( progress() ) + " %<br>"; | 312 | + QString::number( progress() ) + " %<br>"; |
313 | 313 | ||
314 | // due date | 314 | // due date |
315 | if (hasDueDate() ){ | 315 | if (hasDueDate() ){ |
316 | QDate dd = dueDate(); | 316 | QDate dd = dueDate(); |
317 | int off = QDate::currentDate().daysTo( dd ); | 317 | int off = QDate::currentDate().daysTo( dd ); |
318 | 318 | ||
319 | text += "<b>" + QObject::tr( "Deadline:" ) + " </b><font color=\""; | 319 | text += "<b>" + QObject::tr( "Deadline:" ) + " </b><font color=\""; |
320 | if ( off < 0 ) | 320 | if ( off < 0 ) |
321 | text += "#FF0000"; | 321 | text += "#FF0000"; |
322 | else if ( off == 0 ) | 322 | else if ( off == 0 ) |
323 | text += "#FFFF00"; | 323 | text += "#FFFF00"; |
324 | else if ( off > 0 ) | 324 | else if ( off > 0 ) |
325 | text += "#00FF00"; | 325 | text += "#00FF00"; |
326 | 326 | ||
327 | text += "\">" + dd.toString() + "</font><br>"; | 327 | text += "\">" + dd.toString() + "</font><br>"; |
328 | } | 328 | } |
329 | 329 | ||
330 | // categories | 330 | // categories |
331 | text += "<b>" + QObject::tr( "Category:") + "</b> "; | 331 | text += "<b>" + QObject::tr( "Category:") + "</b> "; |
332 | text += categoryNames( "Todo List" ).join(", "); | 332 | text += categoryNames( "Todo List" ).join(", "); |
333 | text += "<br>"; | 333 | text += "<br>"; |
334 | 334 | ||
335 | return text; | 335 | return text; |
336 | } | 336 | } |
337 | bool OTodo::hasNotifiers()const { | 337 | bool OTodo::hasNotifiers()const { |
338 | if (!data->notifiers) return false; | 338 | if (!data->notifiers) return false; |
339 | return !data->notifiers->isEmpty(); | 339 | return !data->notifiers->isEmpty(); |
340 | } | 340 | } |
341 | OPimNotifyManager& OTodo::notifiers() { | 341 | OPimNotifyManager& OTodo::notifiers() { |
342 | if (!data->notifiers ) | 342 | if (!data->notifiers ) |
343 | data->notifiers = new OPimNotifyManager; | 343 | data->notifiers = new OPimNotifyManager; |
344 | return (*data->notifiers); | 344 | return (*data->notifiers); |
345 | } | 345 | } |
346 | const OPimNotifyManager& OTodo::notifiers()const{ | 346 | const OPimNotifyManager& OTodo::notifiers()const{ |
347 | if (!data->notifiers ) | 347 | if (!data->notifiers ) |
348 | data->notifiers = new OPimNotifyManager; | 348 | data->notifiers = new OPimNotifyManager; |
349 | 349 | ||
350 | return (*data->notifiers); | 350 | return (*data->notifiers); |
351 | } | 351 | } |
352 | 352 | ||
353 | bool OTodo::operator<( const OTodo &toDoEvent )const{ | 353 | bool OTodo::operator<( const OTodo &toDoEvent )const{ |
354 | if( !hasDueDate() && !toDoEvent.hasDueDate() ) return true; | 354 | if( !hasDueDate() && !toDoEvent.hasDueDate() ) return true; |
355 | if( !hasDueDate() && toDoEvent.hasDueDate() ) return false; | 355 | if( !hasDueDate() && toDoEvent.hasDueDate() ) return false; |
356 | if( hasDueDate() && toDoEvent.hasDueDate() ){ | 356 | if( hasDueDate() && toDoEvent.hasDueDate() ){ |
357 | if( dueDate() == toDoEvent.dueDate() ){ // let's the priority decide | 357 | if( dueDate() == toDoEvent.dueDate() ){ // let's the priority decide |
358 | return priority() < toDoEvent.priority(); | 358 | return priority() < toDoEvent.priority(); |
359 | }else{ | 359 | }else{ |
360 | return dueDate() < toDoEvent.dueDate(); | 360 | return dueDate() < toDoEvent.dueDate(); |
361 | } | 361 | } |
@@ -431,67 +431,64 @@ OTodo &OTodo::operator=(const OTodo &item ) | |||
431 | OPimRecord::operator=( item ); | 431 | OPimRecord::operator=( item ); |
432 | //qWarning("operator= ref "); | 432 | //qWarning("operator= ref "); |
433 | item.data->ref(); | 433 | item.data->ref(); |
434 | deref(); | 434 | deref(); |
435 | data = item.data; | 435 | data = item.data; |
436 | 436 | ||
437 | return *this; | 437 | return *this; |
438 | } | 438 | } |
439 | 439 | ||
440 | QMap<int, QString> OTodo::toMap() const { | 440 | QMap<int, QString> OTodo::toMap() const { |
441 | QMap<int, QString> map; | 441 | QMap<int, QString> map; |
442 | 442 | ||
443 | map.insert( Uid, QString::number( uid() ) ); | 443 | map.insert( Uid, QString::number( uid() ) ); |
444 | map.insert( Category, idsToString( categories() ) ); | 444 | map.insert( Category, idsToString( categories() ) ); |
445 | map.insert( HasDate, QString::number( data->hasDate ) ); | 445 | map.insert( HasDate, QString::number( data->hasDate ) ); |
446 | map.insert( Completed, QString::number( data->isCompleted ) ); | 446 | map.insert( Completed, QString::number( data->isCompleted ) ); |
447 | map.insert( Description, data->desc ); | 447 | map.insert( Description, data->desc ); |
448 | map.insert( Summary, data->sum ); | 448 | map.insert( Summary, data->sum ); |
449 | map.insert( Priority, QString::number( data->priority ) ); | 449 | map.insert( Priority, QString::number( data->priority ) ); |
450 | map.insert( DateDay, QString::number( data->date.day() ) ); | 450 | map.insert( DateDay, QString::number( data->date.day() ) ); |
451 | map.insert( DateMonth, QString::number( data->date.month() ) ); | 451 | map.insert( DateMonth, QString::number( data->date.month() ) ); |
452 | map.insert( DateYear, QString::number( data->date.year() ) ); | 452 | map.insert( DateYear, QString::number( data->date.year() ) ); |
453 | map.insert( Progress, QString::number( data->prog ) ); | 453 | map.insert( Progress, QString::number( data->prog ) ); |
454 | // map.insert( CrossReference, crossToString() ); | 454 | // map.insert( CrossReference, crossToString() ); |
455 | /* FIXME!!! map.insert( State, ); | 455 | /* FIXME!!! map.insert( State, ); |
456 | map.insert( Recurrence, ); | 456 | map.insert( Recurrence, ); |
457 | map.insert( Reminders, ); | 457 | map.insert( Reminders, ); |
458 | map. | 458 | map. |
459 | */ | 459 | */ |
460 | return map; | 460 | return map; |
461 | } | 461 | } |
462 | 462 | ||
463 | QMap<QString, QString> OTodo::toExtraMap()const { | ||
464 | return data->extra; | ||
465 | } | ||
466 | /** | 463 | /** |
467 | * change or modify looks at the ref count and either | 464 | * change or modify looks at the ref count and either |
468 | * creates a new QShared Object or it can modify it | 465 | * creates a new QShared Object or it can modify it |
469 | * right in place | 466 | * right in place |
470 | */ | 467 | */ |
471 | void OTodo::changeOrModify() { | 468 | void OTodo::changeOrModify() { |
472 | if ( data->count != 1 ) { | 469 | if ( data->count != 1 ) { |
473 | qWarning("changeOrModify"); | 470 | qWarning("changeOrModify"); |
474 | data->deref(); | 471 | data->deref(); |
475 | OTodoData* d2 = new OTodoData(); | 472 | OTodoData* d2 = new OTodoData(); |
476 | copy(data, d2 ); | 473 | copy(data, d2 ); |
477 | data = d2; | 474 | data = d2; |
478 | } | 475 | } |
479 | } | 476 | } |
480 | // WATCHOUT | 477 | // WATCHOUT |
481 | /* | 478 | /* |
482 | * if you add something to the Data struct | 479 | * if you add something to the Data struct |
483 | * be sure to copy it here | 480 | * be sure to copy it here |
484 | */ | 481 | */ |
485 | void OTodo::copy( OTodoData* src, OTodoData* dest ) { | 482 | void OTodo::copy( OTodoData* src, OTodoData* dest ) { |
486 | dest->date = src->date; | 483 | dest->date = src->date; |
487 | dest->isCompleted = src->isCompleted; | 484 | dest->isCompleted = src->isCompleted; |
488 | dest->hasDate = src->hasDate; | 485 | dest->hasDate = src->hasDate; |
489 | dest->priority = src->priority; | 486 | dest->priority = src->priority; |
490 | dest->desc = src->desc; | 487 | dest->desc = src->desc; |
491 | dest->sum = src->sum; | 488 | dest->sum = src->sum; |
492 | dest->extra = src->extra; | 489 | dest->extra = src->extra; |
493 | dest->prog = src->prog; | 490 | dest->prog = src->prog; |
494 | 491 | ||
495 | if (src->state ) | 492 | if (src->state ) |
496 | dest->state = new OPimState( *src->state ); | 493 | dest->state = new OPimState( *src->state ); |
497 | 494 | ||
diff --git a/libopie2/opiepim/otodo.h b/libopie2/opiepim/otodo.h index 4d5ee36..f9a345a 100644 --- a/libopie2/opiepim/otodo.h +++ b/libopie2/opiepim/otodo.h | |||
@@ -164,65 +164,64 @@ public: | |||
164 | 164 | ||
165 | /** | 165 | /** |
166 | * A small summary of the todo | 166 | * A small summary of the todo |
167 | */ | 167 | */ |
168 | QString summary() const; | 168 | QString summary() const; |
169 | 169 | ||
170 | /** | 170 | /** |
171 | * @reimplemented | 171 | * @reimplemented |
172 | * Return this todoevent in a RichText formatted QString | 172 | * Return this todoevent in a RichText formatted QString |
173 | */ | 173 | */ |
174 | QString toRichText() const; | 174 | QString toRichText() const; |
175 | 175 | ||
176 | bool hasNotifiers()const; | 176 | bool hasNotifiers()const; |
177 | /* | 177 | /* |
178 | * FIXME check if the sharing is still fine!! -zecke | 178 | * FIXME check if the sharing is still fine!! -zecke |
179 | * ### CHECK If API is fine | 179 | * ### CHECK If API is fine |
180 | */ | 180 | */ |
181 | /** | 181 | /** |
182 | * return a reference to our notifiers... | 182 | * return a reference to our notifiers... |
183 | */ | 183 | */ |
184 | OPimNotifyManager ¬ifiers(); | 184 | OPimNotifyManager ¬ifiers(); |
185 | 185 | ||
186 | /** | 186 | /** |
187 | * | 187 | * |
188 | */ | 188 | */ |
189 | const OPimNotifyManager ¬ifiers()const; | 189 | const OPimNotifyManager ¬ifiers()const; |
190 | 190 | ||
191 | /** | 191 | /** |
192 | * reimplementations | 192 | * reimplementations |
193 | */ | 193 | */ |
194 | QString type()const; | 194 | QString type()const; |
195 | QString toShortText()const; | 195 | QString toShortText()const; |
196 | QMap<QString, QString> toExtraMap()const; | ||
197 | QString recordField(int id )const; | 196 | QString recordField(int id )const; |
198 | 197 | ||
199 | /** | 198 | /** |
200 | * toMap puts all data into the map. int relates | 199 | * toMap puts all data into the map. int relates |
201 | * to ToDoEvent RecordFields enum | 200 | * to ToDoEvent RecordFields enum |
202 | */ | 201 | */ |
203 | QMap<int, QString> toMap()const; | 202 | QMap<int, QString> toMap()const; |
204 | 203 | ||
205 | /** | 204 | /** |
206 | * Set if this Todo is completed | 205 | * Set if this Todo is completed |
207 | */ | 206 | */ |
208 | void setCompleted(bool completed ); | 207 | void setCompleted(bool completed ); |
209 | 208 | ||
210 | /** | 209 | /** |
211 | * set if this todo got an end data | 210 | * set if this todo got an end data |
212 | */ | 211 | */ |
213 | void setHasDueDate( bool hasDate ); | 212 | void setHasDueDate( bool hasDate ); |
214 | // FIXME we do not have these for start, completed | 213 | // FIXME we do not have these for start, completed |
215 | // cause we'll use the isNull() of QDate for figuring | 214 | // cause we'll use the isNull() of QDate for figuring |
216 | // out if it's has a date... | 215 | // out if it's has a date... |
217 | // decide what to do here? -zecke | 216 | // decide what to do here? -zecke |
218 | 217 | ||
219 | /** | 218 | /** |
220 | * Set the priority of the Todo | 219 | * Set the priority of the Todo |
221 | */ | 220 | */ |
222 | void setPriority(int priority ); | 221 | void setPriority(int priority ); |
223 | 222 | ||
224 | /** | 223 | /** |
225 | * Set the progress. | 224 | * Set the progress. |
226 | */ | 225 | */ |
227 | void setProgress( ushort progress ); | 226 | void setProgress( ushort progress ); |
228 | 227 | ||