1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/* emacs buffer mode hint -*- objc -*- */
#import "Date.h"
#import "Element.h"
#import "AgendaStore.h"
enum intervalType
{
RI_NONE = 0,
RI_DAILY,
RI_WEEKLY,
RI_MONTHLY,
RI_YEARLY
};
@interface Event : Element
{
NSString *_location;
BOOL _allDay;
Date *startDate;
Date *endDate;
int duration;
enum intervalType interval;
int frequency;
int scheduleLevel;
}
- (id)initWithStartDate:(Date *)start duration:(int)minutes title:(NSString *)aTitle;
- (BOOL)isScheduledForDay:(Date *)day;
- (BOOL)isScheduledBetweenDay:(Date *)start andDay:(Date *)end;
- (NSString *)details;
- (BOOL)contains:(NSString *)text;
- (NSString *)location;
- (BOOL)allDay;
- (int)duration;
- (int)frequency;
- (Date *)startDate;
- (Date *)endDate;
- (int)interval;
- (void)setLocation:(NSString *)aLocation;
- (void)setAllDay:(BOOL)allDay;
- (void)setDuration:(int)duration;
- (void)setFrequency:(int)frequency;
- (void)setStartDate:(Date *)startDate;
- (void)setEndDate:(Date *)endDate;
- (void)setInterval:(int)interval;
@end
@interface Event(iCalendar)
- (id)initWithICalComponent:(icalcomponent *)ic;
- (BOOL)updateICalComponent:(icalcomponent *)ic;
@end
|