author | Michael Krelin <hacker@klever.net> | 2007-07-04 11:23:42 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-04 11:23:42 (UTC) |
commit | a08aff328d4393031d5ba7d622c2b05705a89d73 (patch) (unidiff) | |
tree | 8ee90d686081c52e7c69b5ce946e9b1a7d690001 /libkcal/incidence.h | |
parent | 11edc920afe4f274c0964436633aa632c8288a40 (diff) | |
download | kdepimpi-a08aff328d4393031d5ba7d622c2b05705a89d73.zip kdepimpi-a08aff328d4393031d5ba7d622c2b05705a89d73.tar.gz kdepimpi-a08aff328d4393031d5ba7d622c2b05705a89d73.tar.bz2 |
initial public commit of qt4 portp1
-rw-r--r-- | libkcal/incidence.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libkcal/incidence.h b/libkcal/incidence.h index f89942f..2940129 100644 --- a/libkcal/incidence.h +++ b/libkcal/incidence.h | |||
@@ -25,7 +25,9 @@ | |||
25 | 25 | ||
26 | #include <qdatetime.h> | 26 | #include <qdatetime.h> |
27 | #include <qstringlist.h> | 27 | #include <qstringlist.h> |
28 | #include <qvaluelist.h> | 28 | #include <q3valuelist.h> |
29 | //Added by qt3to4: | ||
30 | #include <Q3PtrList> | ||
29 | 31 | ||
30 | #include "recurrence.h" | 32 | #include "recurrence.h" |
31 | #include "alarm.h" | 33 | #include "alarm.h" |
@@ -113,7 +115,7 @@ class Incidence : public IncidenceBase | |||
113 | 115 | ||
114 | virtual Incidence *clone() = 0; | 116 | virtual Incidence *clone() = 0; |
115 | virtual void cloneRelations( Incidence * ); | 117 | virtual void cloneRelations( Incidence * ); |
116 | void addRelationsToList(QPtrList<Incidence> *rel); | 118 | void addRelationsToList(Q3PtrList<Incidence> *rel); |
117 | void clearRelations(); | 119 | void clearRelations(); |
118 | virtual QDateTime getNextAlarmDateTime( bool * ok, int * offset, QDateTime start_dt ) const = 0; | 120 | virtual QDateTime getNextAlarmDateTime( bool * ok, int * offset, QDateTime start_dt ) const = 0; |
119 | void setReadOnly( bool ); | 121 | void setReadOnly( bool ); |
@@ -177,7 +179,7 @@ class Incidence : public IncidenceBase | |||
177 | /** what event does this one relate to? */ | 179 | /** what event does this one relate to? */ |
178 | Incidence *relatedTo() const; | 180 | Incidence *relatedTo() const; |
179 | /** All events that are related to this event */ | 181 | /** All events that are related to this event */ |
180 | QPtrList<Incidence> relations() const; | 182 | Q3PtrList<Incidence> relations() const; |
181 | /** Add an event which is related to this event */ | 183 | /** Add an event which is related to this event */ |
182 | void addRelation(Incidence *); | 184 | void addRelation(Incidence *); |
183 | /** Remove event that is related to this event */ | 185 | /** Remove event that is related to this event */ |
@@ -202,9 +204,9 @@ class Incidence : public IncidenceBase | |||
202 | /** remove and delete all attachments with this mime type */ | 204 | /** remove and delete all attachments with this mime type */ |
203 | void deleteAttachments(const QString& mime); | 205 | void deleteAttachments(const QString& mime); |
204 | /** return list of all associated attachments */ | 206 | /** return list of all associated attachments */ |
205 | QPtrList<Attachment> attachments() const; | 207 | Q3PtrList<Attachment> attachments() const; |
206 | /** find a list of attachments with this mime type */ | 208 | /** find a list of attachments with this mime type */ |
207 | QPtrList<Attachment> attachments(const QString& mime) const; | 209 | Q3PtrList<Attachment> attachments(const QString& mime) const; |
208 | 210 | ||
209 | /** sets the event's status the value specified. See the enumeration | 211 | /** sets the event's status the value specified. See the enumeration |
210 | * above for possible values. */ | 212 | * above for possible values. */ |
@@ -235,7 +237,7 @@ class Incidence : public IncidenceBase | |||
235 | int priority() const; | 237 | int priority() const; |
236 | 238 | ||
237 | /** All alarms that are associated with this incidence */ | 239 | /** All alarms that are associated with this incidence */ |
238 | QPtrList<Alarm> alarms() const; | 240 | Q3PtrList<Alarm> alarms() const; |
239 | /** Create a new alarm which is associated with this incidence */ | 241 | /** Create a new alarm which is associated with this incidence */ |
240 | Alarm* newAlarm(); | 242 | Alarm* newAlarm(); |
241 | /** Add an alarm which is associated with this incidence */ | 243 | /** Add an alarm which is associated with this incidence */ |
@@ -288,8 +290,8 @@ class Incidence : public IncidenceBase | |||
288 | QString durationText4Time( int secs ); | 290 | QString durationText4Time( int secs ); |
289 | Recurrence *mRecurrence; | 291 | Recurrence *mRecurrence; |
290 | protected: | 292 | protected: |
291 | QPtrList<Alarm> mAlarms; | 293 | Q3PtrList<Alarm> mAlarms; |
292 | QPtrList<Incidence> mRelations; | 294 | Q3PtrList<Incidence> mRelations; |
293 | QDateTime mRecurrenceID; | 295 | QDateTime mRecurrenceID; |
294 | bool mHasRecurrenceID; | 296 | bool mHasRecurrenceID; |
295 | private: | 297 | private: |
@@ -308,7 +310,7 @@ protected: | |||
308 | Incidence *mRelatedTo; | 310 | Incidence *mRelatedTo; |
309 | QString mRelatedToUid; | 311 | QString mRelatedToUid; |
310 | DateList mExDates; | 312 | DateList mExDates; |
311 | QPtrList<Attachment> mAttachments; | 313 | Q3PtrList<Attachment> mAttachments; |
312 | QStringList mResources; | 314 | QStringList mResources; |
313 | bool mHasStartDate; // if todo has associated start date | 315 | bool mHasStartDate; // if todo has associated start date |
314 | 316 | ||