-rw-r--r-- | libkcal/incidencebase.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libkcal/incidencebase.h b/libkcal/incidencebase.h index ce6e254..2f85df6 100644 --- a/libkcal/incidencebase.h +++ b/libkcal/incidencebase.h | |||
@@ -111,60 +111,68 @@ class IncidenceBase : public CustomProperties | |||
111 | int attendeeCount() const { return mAttendees.count(); }; | 111 | int attendeeCount() const { return mAttendees.count(); }; |
112 | /** Return the Attendee with this email */ | 112 | /** Return the Attendee with this email */ |
113 | Attendee* attendeeByMail(const QString &); | 113 | Attendee* attendeeByMail(const QString &); |
114 | /** Return first Attendee with one of this emails */ | 114 | /** Return first Attendee with one of this emails */ |
115 | Attendee* attendeeByMails(const QStringList &, const QString& email = QString::null); | 115 | Attendee* attendeeByMails(const QStringList &, const QString& email = QString::null); |
116 | 116 | ||
117 | /** pilot syncronization states */ | 117 | /** pilot syncronization states */ |
118 | enum { SYNCNONE = 0, SYNCMOD = 1, SYNCDEL = 3 }; | 118 | enum { SYNCNONE = 0, SYNCMOD = 1, SYNCDEL = 3 }; |
119 | /** Set synchronisation satus. */ | 119 | /** Set synchronisation satus. */ |
120 | void setSyncStatus(int stat); | 120 | void setSyncStatus(int stat); |
121 | /** Return synchronisation status. */ | 121 | /** Return synchronisation status. */ |
122 | int syncStatus() const; | 122 | int syncStatus() const; |
123 | 123 | ||
124 | /** Set Pilot Id. */ | 124 | /** Set Pilot Id. */ |
125 | void setPilotId(int id); | 125 | void setPilotId(int id); |
126 | /** Return Pilot Id. */ | 126 | /** Return Pilot Id. */ |
127 | int pilotId() const; | 127 | int pilotId() const; |
128 | 128 | ||
129 | void setZaurusId(int id); | 129 | void setZaurusId(int id); |
130 | int zaurusId() const; | 130 | int zaurusId() const; |
131 | void setZaurusUid(int id); | 131 | void setZaurusUid(int id); |
132 | int zaurusUid() const; | 132 | int zaurusUid() const; |
133 | void setTempSyncStat(int id); | 133 | void setTempSyncStat(int id); |
134 | int tempSyncStat() const; | 134 | int tempSyncStat() const; |
135 | void setIDStr( const QString & ); | ||
136 | QString IDStr() const; | ||
137 | void setID( const QString &, int ); | ||
138 | int getID( const QString & ); | ||
139 | void setCsum( const QString &, int ); | ||
140 | int getCsum( const QString & ); | ||
141 | |||
135 | 142 | ||
136 | void registerObserver( Observer * ); | 143 | void registerObserver( Observer * ); |
137 | void unRegisterObserver( Observer * ); | 144 | void unRegisterObserver( Observer * ); |
138 | void updated(); | 145 | void updated(); |
139 | 146 | ||
140 | protected: | 147 | protected: |
141 | bool mReadOnly; | 148 | bool mReadOnly; |
142 | QDateTime getEvenTime( QDateTime ); | 149 | QDateTime getEvenTime( QDateTime ); |
143 | 150 | ||
144 | private: | 151 | private: |
145 | // base components | 152 | // base components |
146 | QDateTime mDtStart; | 153 | QDateTime mDtStart; |
147 | QString mOrganizer; | 154 | QString mOrganizer; |
148 | QString mUid; | 155 | QString mUid; |
149 | QDateTime mLastModified; | 156 | QDateTime mLastModified; |
150 | QPtrList<Attendee> mAttendees; | 157 | QPtrList<Attendee> mAttendees; |
151 | 158 | ||
152 | bool mFloats; | 159 | bool mFloats; |
153 | 160 | ||
154 | int mDuration; | 161 | int mDuration; |
155 | bool mHasDuration; | 162 | bool mHasDuration; |
163 | QString mExternalId; | ||
156 | int mZaurusId; | 164 | int mZaurusId; |
157 | int mZaurusUid; | 165 | int mZaurusUid; |
158 | int mTempSyncStat; | 166 | int mTempSyncStat; |
159 | 167 | ||
160 | // PILOT SYNCHRONIZATION STUFF | 168 | // PILOT SYNCHRONIZATION STUFF |
161 | int mPilotId; // unique id for pilot sync | 169 | int mPilotId; // unique id for pilot sync |
162 | int mSyncStatus; // status (for sync) | 170 | int mSyncStatus; // status (for sync) |
163 | 171 | ||
164 | QPtrList<Observer> mObservers; | 172 | QPtrList<Observer> mObservers; |
165 | }; | 173 | }; |
166 | 174 | ||
167 | bool operator==( const IncidenceBase&, const IncidenceBase& ); | 175 | bool operator==( const IncidenceBase&, const IncidenceBase& ); |
168 | } | 176 | } |
169 | 177 | ||
170 | #endif | 178 | #endif |