author | zautrix <zautrix> | 2005-06-10 20:13:31 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-10 20:13:31 (UTC) |
commit | cdc55afb3d2c3ebd970843b7dce02acb1e6a189b (patch) (unidiff) | |
tree | 45f3bfa69a72de4e8b53bbcb2414478ec65cd183 /libkcal/calendarlocal.h | |
parent | 31fed261955dcb25d06052a8154ac4cc630b0f7d (diff) | |
download | kdepimpi-cdc55afb3d2c3ebd970843b7dce02acb1e6a189b.zip kdepimpi-cdc55afb3d2c3ebd970843b7dce02acb1e6a189b.tar.gz kdepimpi-cdc55afb3d2c3ebd970843b7dce02acb1e6a189b.tar.bz2 |
many preparations for multiple calendars
-rw-r--r-- | libkcal/calendarlocal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libkcal/calendarlocal.h b/libkcal/calendarlocal.h index 98ec710..b25fcbe 100644 --- a/libkcal/calendarlocal.h +++ b/libkcal/calendarlocal.h | |||
@@ -159,48 +159,51 @@ class CalendarLocal : public Calendar | |||
159 | via it's pointer. It makes sure that the calendar is internally | 159 | via it's pointer. It makes sure that the calendar is internally |
160 | consistent. | 160 | consistent. |
161 | */ | 161 | */ |
162 | void update( IncidenceBase *incidence ); | 162 | void update( IncidenceBase *incidence ); |
163 | 163 | ||
164 | /** | 164 | /** |
165 | Builds and then returns a list of all events that match for the | 165 | Builds and then returns a list of all events that match for the |
166 | date specified. useful for dayView, etc. etc. | 166 | date specified. useful for dayView, etc. etc. |
167 | */ | 167 | */ |
168 | QPtrList<Event> rawEventsForDate( const QDate &date, bool sorted = false ); | 168 | QPtrList<Event> rawEventsForDate( const QDate &date, bool sorted = false ); |
169 | /** | 169 | /** |
170 | Get unfiltered events for date \a qdt. | 170 | Get unfiltered events for date \a qdt. |
171 | */ | 171 | */ |
172 | QPtrList<Event> rawEventsForDate( const QDateTime &qdt ); | 172 | QPtrList<Event> rawEventsForDate( const QDateTime &qdt ); |
173 | /** | 173 | /** |
174 | Get unfiltered events in a range of dates. If inclusive is set to true, | 174 | Get unfiltered events in a range of dates. If inclusive is set to true, |
175 | only events are returned, which are completely included in the range. | 175 | only events are returned, which are completely included in the range. |
176 | */ | 176 | */ |
177 | QPtrList<Event> rawEvents( const QDate &start, const QDate &end, | 177 | QPtrList<Event> rawEvents( const QDate &start, const QDate &end, |
178 | bool inclusive = false ); | 178 | bool inclusive = false ); |
179 | Todo *todo( QString, QString ); | 179 | Todo *todo( QString, QString ); |
180 | Event *event( QString, QString ); | 180 | Event *event( QString, QString ); |
181 | 181 | ||
182 | 182 | ||
183 | void setCalendarEnabled( int id, bool enable ); | ||
184 | void setAlarmEnabled( int id, bool enable ); | ||
185 | void setDefaultCalendarEnabledOnly(); | ||
183 | 186 | ||
184 | protected: | 187 | protected: |
185 | 188 | ||
186 | // Event* mNextAlarmEvent; | 189 | // Event* mNextAlarmEvent; |
187 | QString mNextSummary; | 190 | QString mNextSummary; |
188 | QString mNextAlarmEventDateTimeString; | 191 | QString mNextAlarmEventDateTimeString; |
189 | QString mLastAlarmNotificationString; | 192 | QString mLastAlarmNotificationString; |
190 | QDateTime mNextAlarmEventDateTime; | 193 | QDateTime mNextAlarmEventDateTime; |
191 | QDateTime mNextAlarmDateTime; | 194 | QDateTime mNextAlarmDateTime; |
192 | void reInitAlarmSettings(); | 195 | void reInitAlarmSettings(); |
193 | 196 | ||
194 | /** Notification function of IncidenceBase::Observer. */ | 197 | /** Notification function of IncidenceBase::Observer. */ |
195 | void incidenceUpdated( IncidenceBase *i ) { update( i ); } | 198 | void incidenceUpdated( IncidenceBase *i ) { update( i ); } |
196 | 199 | ||
197 | /** inserts an event into its "proper place" in the calendar. */ | 200 | /** inserts an event into its "proper place" in the calendar. */ |
198 | void insertEvent( Event *event ); | 201 | void insertEvent( Event *event ); |
199 | 202 | ||
200 | /** Append alarms of incidence in interval to list of alarms. */ | 203 | /** Append alarms of incidence in interval to list of alarms. */ |
201 | void appendAlarms( Alarm::List &alarms, Incidence *incidence, | 204 | void appendAlarms( Alarm::List &alarms, Incidence *incidence, |
202 | const QDateTime &from, const QDateTime &to ); | 205 | const QDateTime &from, const QDateTime &to ); |
203 | 206 | ||
204 | /** Append alarms of recurring events in interval to list of alarms. */ | 207 | /** Append alarms of recurring events in interval to list of alarms. */ |
205 | void appendRecurringAlarms( Alarm::List &alarms, Incidence *incidence, | 208 | void appendRecurringAlarms( Alarm::List &alarms, Incidence *incidence, |
206 | const QDateTime &from, const QDateTime &to ); | 209 | const QDateTime &from, const QDateTime &to ); |