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/incidencebase.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/incidencebase.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/libkcal/incidencebase.h b/libkcal/incidencebase.h index 3edc03b..d97f524 100644 --- a/libkcal/incidencebase.h +++ b/libkcal/incidencebase.h | |||
@@ -24,17 +24,19 @@ | |||
24 | // | 24 | // |
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 | #include <qptrlist.h> | 29 | #include <q3ptrlist.h> |
30 | //Added by qt3to4: | ||
31 | #include <Q3CString> | ||
30 | 32 | ||
31 | #include "customproperties.h" | 33 | #include "customproperties.h" |
32 | #include "attendee.h" | 34 | #include "attendee.h" |
33 | 35 | ||
34 | namespace KCal { | 36 | namespace KCal { |
35 | 37 | ||
36 | typedef QValueList<QDate> DateList; | 38 | typedef Q3ValueList<QDate> DateList; |
37 | enum IncTypeID { eventID,todoID,journalID,freebusyID }; | 39 | enum IncTypeID { eventID,todoID,journalID,freebusyID }; |
38 | 40 | ||
39 | /** | 41 | /** |
40 | This class provides the base class common to all calendar components. | 42 | This class provides the base class common to all calendar components. |
@@ -50,9 +52,9 @@ class IncidenceBase : public CustomProperties | |||
50 | IncidenceBase(); | 52 | IncidenceBase(); |
51 | IncidenceBase(const IncidenceBase &); | 53 | IncidenceBase(const IncidenceBase &); |
52 | virtual ~IncidenceBase(); | 54 | virtual ~IncidenceBase(); |
53 | 55 | ||
54 | virtual QCString type() const = 0; | 56 | virtual Q3CString type() const = 0; |
55 | virtual IncTypeID typeID() const = 0; | 57 | virtual IncTypeID typeID() const = 0; |
56 | 58 | ||
57 | /** Set the unique id for the event */ | 59 | /** Set the unique id for the event */ |
58 | void setUid(const QString &); | 60 | void setUid(const QString &); |
@@ -108,9 +110,9 @@ class IncidenceBase : public CustomProperties | |||
108 | // void removeAttendee(const char *n); | 110 | // void removeAttendee(const char *n); |
109 | /** Remove all Attendees. */ | 111 | /** Remove all Attendees. */ |
110 | void clearAttendees(); | 112 | void clearAttendees(); |
111 | /** Return list of attendees. */ | 113 | /** Return list of attendees. */ |
112 | QPtrList<Attendee> attendees() const { return mAttendees; }; | 114 | Q3PtrList<Attendee> attendees() const { return mAttendees; }; |
113 | /** Return number of attendees. */ | 115 | /** Return number of attendees. */ |
114 | int attendeeCount() const { return mAttendees.count(); }; | 116 | int attendeeCount() const { return mAttendees.count(); }; |
115 | /** Return the Attendee with this email */ | 117 | /** Return the Attendee with this email */ |
116 | Attendee* attendeeByMail(const QString &); | 118 | Attendee* attendeeByMail(const QString &); |
@@ -167,9 +169,9 @@ class IncidenceBase : public CustomProperties | |||
167 | int mCalID; | 169 | int mCalID; |
168 | bool mCalEnabled; | 170 | bool mCalEnabled; |
169 | bool mAlarmEnabled; | 171 | bool mAlarmEnabled; |
170 | QDateTime mLastModified; | 172 | QDateTime mLastModified; |
171 | QPtrList<Attendee> mAttendees; | 173 | Q3PtrList<Attendee> mAttendees; |
172 | 174 | ||
173 | bool mFloats; | 175 | bool mFloats; |
174 | 176 | ||
175 | int mDuration; | 177 | int mDuration; |
@@ -180,9 +182,9 @@ class IncidenceBase : public CustomProperties | |||
180 | // PILOT SYNCHRONIZATION STUFF | 182 | // PILOT SYNCHRONIZATION STUFF |
181 | int mPilotId; // unique id for pilot sync | 183 | int mPilotId; // unique id for pilot sync |
182 | int mSyncStatus; // status (for sync) | 184 | int mSyncStatus; // status (for sync) |
183 | 185 | ||
184 | QPtrList<Observer> mObservers; | 186 | Q3PtrList<Observer> mObservers; |
185 | }; | 187 | }; |
186 | 188 | ||
187 | bool operator==( const IncidenceBase&, const IncidenceBase& ); | 189 | bool operator==( const IncidenceBase&, const IncidenceBase& ); |
188 | } | 190 | } |