-rw-r--r-- | libkcal/calendarlocal.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libkcal/calendarlocal.h b/libkcal/calendarlocal.h index b25fcbe..65f6aa7 100644 --- a/libkcal/calendarlocal.h +++ b/libkcal/calendarlocal.h | |||
@@ -22,49 +22,50 @@ | |||
22 | #ifndef KCAL_CALENDARLOCAL_H | 22 | #ifndef KCAL_CALENDARLOCAL_H |
23 | #define KCAL_CALENDARLOCAL_H | 23 | #define KCAL_CALENDARLOCAL_H |
24 | 24 | ||
25 | #include "calendar.h" | 25 | #include "calendar.h" |
26 | 26 | ||
27 | namespace KCal { | 27 | namespace KCal { |
28 | 28 | ||
29 | class CalFormat; | 29 | class CalFormat; |
30 | 30 | ||
31 | /** | 31 | /** |
32 | This class provides a calendar stored as a local file. | 32 | This class provides a calendar stored as a local file. |
33 | */ | 33 | */ |
34 | class CalendarLocal : public Calendar | 34 | class CalendarLocal : public Calendar |
35 | { | 35 | { |
36 | public: | 36 | public: |
37 | /** | 37 | /** |
38 | Constructs a new calendar, with variables initialized to sane values. | 38 | Constructs a new calendar, with variables initialized to sane values. |
39 | */ | 39 | */ |
40 | CalendarLocal(); | 40 | CalendarLocal(); |
41 | /** | 41 | /** |
42 | Constructs a new calendar, with variables initialized to sane values. | 42 | Constructs a new calendar, with variables initialized to sane values. |
43 | */ | 43 | */ |
44 | CalendarLocal( const QString &timeZoneId ); | 44 | CalendarLocal( const QString &timeZoneId ); |
45 | ~CalendarLocal(); | 45 | ~CalendarLocal(); |
46 | 46 | void addCalendar( Calendar* ); | |
47 | bool addCalendarFile( QString name, int id ); | ||
47 | /** | 48 | /** |
48 | Loads a calendar on disk in vCalendar or iCalendar format into the current | 49 | Loads a calendar on disk in vCalendar or iCalendar format into the current |
49 | calendar. Any information already present is lost. | 50 | calendar. Any information already present is lost. |
50 | @return true, if successfull, false on error. | 51 | @return true, if successfull, false on error. |
51 | @param fileName the name of the calendar on disk. | 52 | @param fileName the name of the calendar on disk. |
52 | */ | 53 | */ |
53 | bool load( const QString &fileName ); | 54 | bool load( const QString &fileName ); |
54 | /** | 55 | /** |
55 | Writes out the calendar to disk in the specified \a format. | 56 | Writes out the calendar to disk in the specified \a format. |
56 | CalendarLocal takes ownership of the CalFormat object. | 57 | CalendarLocal takes ownership of the CalFormat object. |
57 | @return true, if successfull, false on error. | 58 | @return true, if successfull, false on error. |
58 | @param fileName the name of the file | 59 | @param fileName the name of the file |
59 | */ | 60 | */ |
60 | bool save( const QString &fileName, CalFormat *format = 0 ); | 61 | bool save( const QString &fileName, CalFormat *format = 0 ); |
61 | 62 | ||
62 | /** | 63 | /** |
63 | Clears out the current calendar, freeing all used memory etc. etc. | 64 | Clears out the current calendar, freeing all used memory etc. etc. |
64 | */ | 65 | */ |
65 | void close(); | 66 | void close(); |
66 | 67 | ||
67 | void save() {} | 68 | void save() {} |
68 | 69 | ||
69 | /** | 70 | /** |
70 | Add Event to calendar. | 71 | Add Event to calendar. |
@@ -158,51 +159,52 @@ class CalendarLocal : public Calendar | |||
158 | This method should be called whenever a Event is modified directly | 159 | This method should be called whenever a Event is modified directly |
159 | via it's pointer. It makes sure that the calendar is internally | 160 | via it's pointer. It makes sure that the calendar is internally |
160 | consistent. | 161 | consistent. |
161 | */ | 162 | */ |
162 | void update( IncidenceBase *incidence ); | 163 | void update( IncidenceBase *incidence ); |
163 | 164 | ||
164 | /** | 165 | /** |
165 | Builds and then returns a list of all events that match for the | 166 | Builds and then returns a list of all events that match for the |
166 | date specified. useful for dayView, etc. etc. | 167 | date specified. useful for dayView, etc. etc. |
167 | */ | 168 | */ |
168 | QPtrList<Event> rawEventsForDate( const QDate &date, bool sorted = false ); | 169 | QPtrList<Event> rawEventsForDate( const QDate &date, bool sorted = false ); |
169 | /** | 170 | /** |
170 | Get unfiltered events for date \a qdt. | 171 | Get unfiltered events for date \a qdt. |
171 | */ | 172 | */ |
172 | QPtrList<Event> rawEventsForDate( const QDateTime &qdt ); | 173 | QPtrList<Event> rawEventsForDate( const QDateTime &qdt ); |
173 | /** | 174 | /** |
174 | Get unfiltered events in a range of dates. If inclusive is set to true, | 175 | 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. | 176 | only events are returned, which are completely included in the range. |
176 | */ | 177 | */ |
177 | QPtrList<Event> rawEvents( const QDate &start, const QDate &end, | 178 | QPtrList<Event> rawEvents( const QDate &start, const QDate &end, |
178 | bool inclusive = false ); | 179 | bool inclusive = false ); |
179 | Todo *todo( QString, QString ); | 180 | Todo *todo( QString, QString ); |
180 | Event *event( QString, QString ); | 181 | Event *event( QString, QString ); |
181 | 182 | ||
182 | 183 | public slots: | |
183 | void setCalendarEnabled( int id, bool enable ); | 184 | void setCalendarEnabled( int id, bool enable ); |
184 | void setAlarmEnabled( int id, bool enable ); | 185 | void setAlarmEnabled( int id, bool enable ); |
186 | void setReadOnly( int id, bool enable ); | ||
185 | void setDefaultCalendarEnabledOnly(); | 187 | void setDefaultCalendarEnabledOnly(); |
186 | 188 | ||
187 | protected: | 189 | protected: |
188 | 190 | ||
189 | // Event* mNextAlarmEvent; | 191 | // Event* mNextAlarmEvent; |
190 | QString mNextSummary; | 192 | QString mNextSummary; |
191 | QString mNextAlarmEventDateTimeString; | 193 | QString mNextAlarmEventDateTimeString; |
192 | QString mLastAlarmNotificationString; | 194 | QString mLastAlarmNotificationString; |
193 | QDateTime mNextAlarmEventDateTime; | 195 | QDateTime mNextAlarmEventDateTime; |
194 | QDateTime mNextAlarmDateTime; | 196 | QDateTime mNextAlarmDateTime; |
195 | void reInitAlarmSettings(); | 197 | void reInitAlarmSettings(); |
196 | 198 | ||
197 | /** Notification function of IncidenceBase::Observer. */ | 199 | /** Notification function of IncidenceBase::Observer. */ |
198 | void incidenceUpdated( IncidenceBase *i ) { update( i ); } | 200 | void incidenceUpdated( IncidenceBase *i ) { update( i ); } |
199 | 201 | ||
200 | /** inserts an event into its "proper place" in the calendar. */ | 202 | /** inserts an event into its "proper place" in the calendar. */ |
201 | void insertEvent( Event *event ); | 203 | void insertEvent( Event *event ); |
202 | 204 | ||
203 | /** Append alarms of incidence in interval to list of alarms. */ | 205 | /** Append alarms of incidence in interval to list of alarms. */ |
204 | void appendAlarms( Alarm::List &alarms, Incidence *incidence, | 206 | void appendAlarms( Alarm::List &alarms, Incidence *incidence, |
205 | const QDateTime &from, const QDateTime &to ); | 207 | const QDateTime &from, const QDateTime &to ); |
206 | 208 | ||
207 | /** Append alarms of recurring events in interval to list of alarms. */ | 209 | /** Append alarms of recurring events in interval to list of alarms. */ |
208 | void appendRecurringAlarms( Alarm::List &alarms, Incidence *incidence, | 210 | void appendRecurringAlarms( Alarm::List &alarms, Incidence *incidence, |