summaryrefslogtreecommitdiffabout
path: root/libkcal/incidencebase.cpp
Unidiff
Diffstat (limited to 'libkcal/incidencebase.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/incidencebase.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp
index 9aa517c..7525a4a 100644
--- a/libkcal/incidencebase.cpp
+++ b/libkcal/incidencebase.cpp
@@ -24,387 +24,396 @@
24#include <kidmanager.h> 24#include <kidmanager.h>
25 25
26#include "calformat.h" 26#include "calformat.h"
27#include "syncdefines.h" 27#include "syncdefines.h"
28 28
29#include "incidencebase.h" 29#include "incidencebase.h"
30 30
31using namespace KCal; 31using namespace KCal;
32 32
33IncidenceBase::IncidenceBase() : 33IncidenceBase::IncidenceBase() :
34 mReadOnly(false), mFloats(true), mDuration(0), mHasDuration(false), 34 mReadOnly(false), mFloats(true), mDuration(0), mHasDuration(false),
35 mPilotId(0), mSyncStatus(SYNCMOD) 35 mPilotId(0), mSyncStatus(SYNCMOD)
36{ 36{
37 setUid(CalFormat::createUniqueId()); 37 setUid(CalFormat::createUniqueId());
38 mOrganizer = ""; 38 mOrganizer = "";
39 mFloats = false; 39 mFloats = false;
40 mDuration = 0; 40 mDuration = 0;
41 mHasDuration = false; 41 mHasDuration = false;
42 mPilotId = 0; 42 mPilotId = 0;
43 mExternalId = ":"; 43 mExternalId = ":";
44 mTempSyncStat = SYNC_TEMPSTATE_INITIAL; 44 mTempSyncStat = SYNC_TEMPSTATE_INITIAL;
45 mSyncStatus = 0; 45 mSyncStatus = 0;
46 mAttendees.setAutoDelete( true ); 46 mAttendees.setAutoDelete( true );
47} 47}
48 48
49IncidenceBase::IncidenceBase(const IncidenceBase &i) : 49IncidenceBase::IncidenceBase(const IncidenceBase &i) :
50 CustomProperties( i ) 50 CustomProperties( i )
51{ 51{
52 mReadOnly = i.mReadOnly; 52 mReadOnly = i.mReadOnly;
53 mDtStart = i.mDtStart; 53 mDtStart = i.mDtStart;
54 mDuration = i.mDuration; 54 mDuration = i.mDuration;
55 mHasDuration = i.mHasDuration; 55 mHasDuration = i.mHasDuration;
56 mOrganizer = i.mOrganizer; 56 mOrganizer = i.mOrganizer;
57 mUid = i.mUid; 57 mUid = i.mUid;
58 QPtrList<Attendee> attendees = i.attendees(); 58 QPtrList<Attendee> attendees = i.attendees();
59 for( Attendee *a = attendees.first(); a; a = attendees.next() ) { 59 for( Attendee *a = attendees.first(); a; a = attendees.next() ) {
60 mAttendees.append( new Attendee( *a ) ); 60 mAttendees.append( new Attendee( *a ) );
61 } 61 }
62 mFloats = i.mFloats; 62 mFloats = i.mFloats;
63 mLastModified = i.mLastModified; 63 mLastModified = i.mLastModified;
64 mPilotId = i.mPilotId; 64 mPilotId = i.mPilotId;
65 mTempSyncStat = i.mTempSyncStat; 65 mTempSyncStat = i.mTempSyncStat;
66 mSyncStatus = i.mSyncStatus; 66 mSyncStatus = i.mSyncStatus;
67 mExternalId = i.mExternalId; 67 mExternalId = i.mExternalId;
68 // The copied object is a new one, so it isn't observed by the observer 68 // The copied object is a new one, so it isn't observed by the observer
69 // of the original object. 69 // of the original object.
70 mObservers.clear(); 70 mObservers.clear();
71 71
72 mAttendees.setAutoDelete( true ); 72 mAttendees.setAutoDelete( true );
73} 73}
74 74
75IncidenceBase::~IncidenceBase() 75IncidenceBase::~IncidenceBase()
76{ 76{
77} 77}
78 78
79 79
80bool KCal::operator==( const IncidenceBase& i1, const IncidenceBase& i2 ) 80bool KCal::operator==( const IncidenceBase& i1, const IncidenceBase& i2 )
81{ 81{
82 // do not compare mSyncStatus and mExternalId 82 // do not compare mSyncStatus and mExternalId
83 if( i1.attendees().count() != i2.attendees().count() ) { 83 if( i1.attendees().count() != i2.attendees().count() ) {
84 return false; // no need to check further 84 return false; // no need to check further
85 } 85 }
86 if ( i1.attendees().count() > 0 ) { 86 if ( i1.attendees().count() > 0 ) {
87 Attendee * a1 = i1.attendees().first(), *a2 =i2.attendees().first() ; 87 Attendee * a1 = i1.attendees().first(), *a2 =i2.attendees().first() ;
88 while ( a1 ) { 88 while ( a1 ) {
89 if ( !( (*a1) == (*a2)) ) 89 if ( !( (*a1) == (*a2)) )
90 { 90 {
91 //qDebug("Attendee not equal "); 91 //qDebug("Attendee not equal ");
92 return false; 92 return false;
93 } 93 }
94 a1 = i1.attendees().next(); 94 a1 = i1.attendees().next();
95 a2 = i2.attendees().next(); 95 a2 = i2.attendees().next();
96 } 96 }
97 } 97 }
98 //if ( i1.dtStart() != i2.dtStart() ) 98 //if ( i1.dtStart() != i2.dtStart() )
99 // return false; 99 // return false;
100#if 0 100#if 0
101 qDebug("1 %d ",i1.doesFloat() == i2.doesFloat() ); 101 qDebug("1 %d ",i1.doesFloat() == i2.doesFloat() );
102 qDebug("1 %d ",i1.duration() == i2.duration() ); 102 qDebug("1 %d ",i1.duration() == i2.duration() );
103 qDebug("3 %d ",i1.hasDuration() == i2.hasDuration() ); 103 qDebug("3 %d ",i1.hasDuration() == i2.hasDuration() );
104 qDebug("1 %d ",i1.pilotId() == i2.pilotId() ); 104 qDebug("1 %d ",i1.pilotId() == i2.pilotId() );
105 qDebug("1 %d %d %d",i1.syncStatus() == i2.syncStatus() , i1.syncStatus(),i2.syncStatus() ); 105 qDebug("1 %d %d %d",i1.syncStatus() == i2.syncStatus() , i1.syncStatus(),i2.syncStatus() );
106 qDebug("6 %d ",i1.organizer() == i2.organizer() ); 106 qDebug("6 %d ",i1.organizer() == i2.organizer() );
107 107
108#endif 108#endif
109 return ( i1.organizer() == i2.organizer() && 109 return ( i1.organizer() == i2.organizer() &&
110 // i1.uid() == i2.uid() && 110 // i1.uid() == i2.uid() &&
111 // Don't compare lastModified, otherwise the operator is not 111 // Don't compare lastModified, otherwise the operator is not
112 // of much use. We are not comparing for identity, after all. 112 // of much use. We are not comparing for identity, after all.
113 i1.doesFloat() == i2.doesFloat() && 113 i1.doesFloat() == i2.doesFloat() &&
114 i1.duration() == i2.duration() && 114 i1.duration() == i2.duration() &&
115 i1.hasDuration() == i2.hasDuration() && 115 i1.hasDuration() == i2.hasDuration() &&
116 i1.pilotId() == i2.pilotId() );// && i1.syncStatus() == i2.syncStatus() ); 116 i1.pilotId() == i2.pilotId() );// && i1.syncStatus() == i2.syncStatus() );
117 // no need to compare mObserver 117 // no need to compare mObserver
118} 118}
119 119
120 120
121QDateTime IncidenceBase::getEvenTime( QDateTime dt ) 121QDateTime IncidenceBase::getEvenTime( QDateTime dt )
122{ 122{
123 QTime t = dt.time(); 123 QTime t = dt.time();
124 dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); 124 dt.setTime( QTime (t.hour (), t.minute (), t.second () ) );
125 return dt; 125 return dt;
126} 126}
127 127
128 128
129void IncidenceBase::setUid(const QString &uid) 129void IncidenceBase::setUid(const QString &uid)
130{ 130{
131 mUid = uid; 131 mUid = uid;
132 updated(); 132 updated();
133} 133}
134 134
135QString IncidenceBase::uid() const 135QString IncidenceBase::uid() const
136{ 136{
137 return mUid; 137 return mUid;
138} 138}
139 139
140void IncidenceBase::setLastModified(const QDateTime &lm) 140void IncidenceBase::setLastModified(const QDateTime &lm)
141{ 141{
142 // DON'T! updated() because we call this from 142 // DON'T! updated() because we call this from
143 // Calendar::updateEvent(). 143 // Calendar::updateEvent().
144 mLastModified = getEvenTime(lm); 144 mLastModified = getEvenTime(lm);
145 //qDebug("IncidenceBase::setLastModified %s ",lm.toString().latin1()); 145 //qDebug("IncidenceBase::setLastModified %s ",lm.toString().latin1());
146} 146}
147 147
148QDateTime IncidenceBase::lastModified() const 148QDateTime IncidenceBase::lastModified() const
149{ 149{
150 return mLastModified; 150 return mLastModified;
151} 151}
152 152
153void IncidenceBase::setOrganizer(const QString &o) 153void IncidenceBase::setOrganizer(const QString &o)
154{ 154{
155 // we don't check for readonly here, because it is 155 // we don't check for readonly here, because it is
156 // possible that by setting the organizer we are changing 156 // possible that by setting the organizer we are changing
157 // the event's readonly status... 157 // the event's readonly status...
158 mOrganizer = o; 158 mOrganizer = o;
159 if (mOrganizer.left(7).upper() == "MAILTO:") 159 if (mOrganizer.left(7).upper() == "MAILTO:")
160 mOrganizer = mOrganizer.remove(0,7); 160 mOrganizer = mOrganizer.remove(0,7);
161 161
162 updated(); 162 updated();
163} 163}
164 164
165QString IncidenceBase::organizer() const 165QString IncidenceBase::organizer() const
166{ 166{
167 return mOrganizer; 167 return mOrganizer;
168} 168}
169 169
170void IncidenceBase::setReadOnly( bool readOnly ) 170void IncidenceBase::setReadOnly( bool readOnly )
171{ 171{
172 mReadOnly = readOnly; 172 mReadOnly = readOnly;
173} 173}
174 174
175void IncidenceBase::setDtStart(const QDateTime &dtStart) 175void IncidenceBase::setDtStart(const QDateTime &dtStart)
176{ 176{
177// if (mReadOnly) return; 177// if (mReadOnly) return;
178 mDtStart = getEvenTime(dtStart); 178 mDtStart = getEvenTime(dtStart);
179 updated(); 179 updated();
180} 180}
181 181
182QDateTime IncidenceBase::dtStart() const 182QDateTime IncidenceBase::dtStart() const
183{ 183{
184 return mDtStart; 184 return mDtStart;
185} 185}
186 186
187QString IncidenceBase::dtStartTimeStr() const 187QString IncidenceBase::dtStartTimeStr() const
188{ 188{
189 return KGlobal::locale()->formatTime(dtStart().time()); 189 return KGlobal::locale()->formatTime(dtStart().time());
190} 190}
191 191
192QString IncidenceBase::dtStartDateStr(bool shortfmt) const 192QString IncidenceBase::dtStartDateStr(bool shortfmt) const
193{ 193{
194 return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); 194 return KGlobal::locale()->formatDate(dtStart().date(),shortfmt);
195} 195}
196 196
197QString IncidenceBase::dtStartStr(bool shortfmt) const 197QString IncidenceBase::dtStartStr(bool shortfmt) const
198{ 198{
199 return KGlobal::locale()->formatDateTime(dtStart(), shortfmt); 199 return KGlobal::locale()->formatDateTime(dtStart(), shortfmt);
200} 200}
201 201
202 202
203bool IncidenceBase::doesFloat() const 203bool IncidenceBase::doesFloat() const
204{ 204{
205 return mFloats; 205 return mFloats;
206} 206}
207 207
208void IncidenceBase::setFloats(bool f) 208void IncidenceBase::setFloats(bool f)
209{ 209{
210 if (mReadOnly) return; 210 if (mReadOnly) return;
211 mFloats = f; 211 mFloats = f;
212 updated(); 212 updated();
213} 213}
214 214
215 215
216void IncidenceBase::addAttendee(Attendee *a, bool doupdate) 216bool IncidenceBase::addAttendee(Attendee *a, bool doupdate)
217{ 217{
218 if (mReadOnly) return; 218 if (mReadOnly) return false;
219 if (a->name().left(7).upper() == "MAILTO:") 219 if (a->name().left(7).upper() == "MAILTO:")
220 a->setName(a->name().remove(0,7)); 220 a->setName(a->name().remove(0,7));
221 221
222 QPtrListIterator<Attendee> qli(mAttendees);
223
224 qli.toFirst();
225 while (qli) {
226 if (*qli.current() == *a)
227 return false;
228 ++qli;
229 }
222 mAttendees.append(a); 230 mAttendees.append(a);
223 if (doupdate) updated(); 231 if (doupdate) updated();
232 return true;
224} 233}
225 234
226#if 0 235#if 0
227void IncidenceBase::removeAttendee(Attendee *a) 236void IncidenceBase::removeAttendee(Attendee *a)
228{ 237{
229 if (mReadOnly) return; 238 if (mReadOnly) return;
230 mAttendees.removeRef(a); 239 mAttendees.removeRef(a);
231 updated(); 240 updated();
232} 241}
233 242
234void IncidenceBase::removeAttendee(const char *n) 243void IncidenceBase::removeAttendee(const char *n)
235{ 244{
236 Attendee *a; 245 Attendee *a;
237 246
238 if (mReadOnly) return; 247 if (mReadOnly) return;
239 for (a = mAttendees.first(); a; a = mAttendees.next()) 248 for (a = mAttendees.first(); a; a = mAttendees.next())
240 if (a->getName() == n) { 249 if (a->getName() == n) {
241 mAttendees.remove(); 250 mAttendees.remove();
242 break; 251 break;
243 } 252 }
244} 253}
245#endif 254#endif
246 255
247void IncidenceBase::clearAttendees() 256void IncidenceBase::clearAttendees()
248{ 257{
249 if (mReadOnly) return; 258 if (mReadOnly) return;
250 mAttendees.clear(); 259 mAttendees.clear();
251} 260}
252 261
253#if 0 262#if 0
254Attendee *IncidenceBase::getAttendee(const char *n) const 263Attendee *IncidenceBase::getAttendee(const char *n) const
255{ 264{
256 QPtrListIterator<Attendee> qli(mAttendees); 265 QPtrListIterator<Attendee> qli(mAttendees);
257 266
258 qli.toFirst(); 267 qli.toFirst();
259 while (qli) { 268 while (qli) {
260 if (qli.current()->getName() == n) 269 if (qli.current()->getName() == n)
261 return qli.current(); 270 return qli.current();
262 ++qli; 271 ++qli;
263 } 272 }
264 return 0L; 273 return 0L;
265} 274}
266#endif 275#endif
267 276
268Attendee *IncidenceBase::attendeeByMail(const QString &email) 277Attendee *IncidenceBase::attendeeByMail(const QString &email)
269{ 278{
270 QPtrListIterator<Attendee> qli(mAttendees); 279 QPtrListIterator<Attendee> qli(mAttendees);
271 280
272 qli.toFirst(); 281 qli.toFirst();
273 while (qli) { 282 while (qli) {
274 if (qli.current()->email().lower() == email.lower()) 283 if (qli.current()->email().lower() == email.lower())
275 return qli.current(); 284 return qli.current();
276 ++qli; 285 ++qli;
277 } 286 }
278 return 0L; 287 return 0L;
279} 288}
280 289
281Attendee *IncidenceBase::attendeeByMails(const QStringList &emails, const QString& email) 290Attendee *IncidenceBase::attendeeByMails(const QStringList &emails, const QString& email)
282{ 291{
283 QPtrListIterator<Attendee> qli(mAttendees); 292 QPtrListIterator<Attendee> qli(mAttendees);
284 293
285 QStringList mails = emails; 294 QStringList mails = emails;
286 if (!email.isEmpty()) { 295 if (!email.isEmpty()) {
287 mails.append(email); 296 mails.append(email);
288 } 297 }
289 qli.toFirst(); 298 qli.toFirst();
290 while (qli) { 299 while (qli) {
291 for ( QStringList::Iterator it = mails.begin(); it != mails.end(); ++it ) { 300 for ( QStringList::Iterator it = mails.begin(); it != mails.end(); ++it ) {
292 if (qli.current()->email().lower() == (*it).lower()) 301 if (qli.current()->email().lower() == (*it).lower())
293 return qli.current(); 302 return qli.current();
294 } 303 }
295 304
296 ++qli; 305 ++qli;
297 } 306 }
298 return 0L; 307 return 0L;
299} 308}
300 309
301void IncidenceBase::setDuration(int seconds) 310void IncidenceBase::setDuration(int seconds)
302{ 311{
303 mDuration = seconds; 312 mDuration = seconds;
304 setHasDuration(true); 313 setHasDuration(true);
305} 314}
306 315
307int IncidenceBase::duration() const 316int IncidenceBase::duration() const
308{ 317{
309 return mDuration; 318 return mDuration;
310} 319}
311 320
312void IncidenceBase::setHasDuration(bool b) 321void IncidenceBase::setHasDuration(bool b)
313{ 322{
314 mHasDuration = b; 323 mHasDuration = b;
315} 324}
316 325
317bool IncidenceBase::hasDuration() const 326bool IncidenceBase::hasDuration() const
318{ 327{
319 return mHasDuration; 328 return mHasDuration;
320} 329}
321 330
322void IncidenceBase::setSyncStatus(int stat) 331void IncidenceBase::setSyncStatus(int stat)
323{ 332{
324 if (mReadOnly) return; 333 if (mReadOnly) return;
325 mSyncStatus = stat; 334 mSyncStatus = stat;
326} 335}
327 336
328int IncidenceBase::syncStatus() const 337int IncidenceBase::syncStatus() const
329{ 338{
330 return mSyncStatus; 339 return mSyncStatus;
331} 340}
332 341
333void IncidenceBase::setPilotId( int id ) 342void IncidenceBase::setPilotId( int id )
334{ 343{
335 if (mReadOnly) return; 344 if (mReadOnly) return;
336 mPilotId = id; 345 mPilotId = id;
337} 346}
338 347
339int IncidenceBase::pilotId() const 348int IncidenceBase::pilotId() const
340{ 349{
341 return mPilotId; 350 return mPilotId;
342} 351}
343 352
344int IncidenceBase::tempSyncStat() const 353int IncidenceBase::tempSyncStat() const
345{ 354{
346 return mTempSyncStat; 355 return mTempSyncStat;
347} 356}
348void IncidenceBase::setTempSyncStat( int id ) 357void IncidenceBase::setTempSyncStat( int id )
349{ 358{
350 if (mReadOnly) return; 359 if (mReadOnly) return;
351 mTempSyncStat = id; 360 mTempSyncStat = id;
352} 361}
353 362
354void IncidenceBase::removeID(const QString &prof) 363void IncidenceBase::removeID(const QString &prof)
355{ 364{
356 if ( prof.isEmpty() ) 365 if ( prof.isEmpty() )
357 mExternalId = ":"; 366 mExternalId = ":";
358 else 367 else
359 mExternalId = KIdManager::removeId ( mExternalId, prof); 368 mExternalId = KIdManager::removeId ( mExternalId, prof);
360 369
361} 370}
362void IncidenceBase::setID( const QString & prof , const QString & id ) 371void IncidenceBase::setID( const QString & prof , const QString & id )
363{ 372{
364 mExternalId = KIdManager::setId ( mExternalId, prof, id ); 373 mExternalId = KIdManager::setId ( mExternalId, prof, id );
365} 374}
366QString IncidenceBase::getID( const QString & prof) 375QString IncidenceBase::getID( const QString & prof)
367{ 376{
368 return KIdManager::getId ( mExternalId, prof ); 377 return KIdManager::getId ( mExternalId, prof );
369} 378}
370 379
371// example :Sharp_DTM;22;23566:TP;-1;8654:TPP;18;0: 380// example :Sharp_DTM;22;23566:TP;-1;8654:TPP;18;0:
372// format name;III;JJJ: III >= 0, may be -1. JJJ always >= 0 381// format name;III;JJJ: III >= 0, may be -1. JJJ always >= 0
373void IncidenceBase::setCsum( const QString & prof , const QString & id ) 382void IncidenceBase::setCsum( const QString & prof , const QString & id )
374{ 383{
375 mExternalId = KIdManager::setCsum ( mExternalId, prof, id ); 384 mExternalId = KIdManager::setCsum ( mExternalId, prof, id );
376} 385}
377QString IncidenceBase::getCsum( const QString & prof) 386QString IncidenceBase::getCsum( const QString & prof)
378{ 387{
379 return KIdManager::getCsum ( mExternalId, prof ); 388 return KIdManager::getCsum ( mExternalId, prof );
380} 389}
381 390
382void IncidenceBase::setIDStr( const QString & s ) 391void IncidenceBase::setIDStr( const QString & s )
383{ 392{
384 if (mReadOnly) return; 393 if (mReadOnly) return;
385 mExternalId = s; 394 mExternalId = s;
386} 395}
387 396
388QString IncidenceBase::IDStr() const 397QString IncidenceBase::IDStr() const
389{ 398{
390 return mExternalId ; 399 return mExternalId ;
391} 400}
392void IncidenceBase::registerObserver( IncidenceBase::Observer *observer ) 401void IncidenceBase::registerObserver( IncidenceBase::Observer *observer )
393{ 402{
394 if( !mObservers.contains(observer) ) mObservers.append( observer ); 403 if( !mObservers.contains(observer) ) mObservers.append( observer );
395} 404}
396 405
397void IncidenceBase::unRegisterObserver( IncidenceBase::Observer *observer ) 406void IncidenceBase::unRegisterObserver( IncidenceBase::Observer *observer )
398{ 407{
399 mObservers.remove( observer ); 408 mObservers.remove( observer );
400} 409}
401 410
402void IncidenceBase::updated() 411void IncidenceBase::updated()
403{ 412{
404 QPtrListIterator<Observer> it(mObservers); 413 QPtrListIterator<Observer> it(mObservers);
405 while( it.current() ) { 414 while( it.current() ) {
406 Observer *o = it.current(); 415 Observer *o = it.current();
407 ++it; 416 ++it;
408 o->incidenceUpdated( this ); 417 o->incidenceUpdated( this );
409 } 418 }
410} 419}