Codebase list agenda.app / run/2c754deb-3d9c-4526-b671-90a56e5dfe16/main AppointmentEditor.h
run/2c754deb-3d9c-4526-b671-90a56e5dfe16/main

Tree @run/2c754deb-3d9c-4526-b671-90a56e5dfe16/main (Download .tar.gz)

AppointmentEditor.h @run/2c754deb-3d9c-4526-b671-90a56e5dfe16/mainraw · history · blame

/* emacs buffer mode hint -*- objc -*- */

#import "Event.h"
#import "StoreManager.h"

@interface AppointmentEditor : NSObject
{
  id window;
  id description;
  id title;
  id duration;
  id durationText;
  id repeat;
  id endDate;
  id location;
  id store;
  id allDay;
  id ok;
  id until;
  id time;
  id timeText;
  Date *startDate;
  Event *_event;
  NSArray *_modifiedAlarms;
}

+ (AppointmentEditor *)editorForEvent:(Event *)event;
- (void)validate:(id)sender;
- (void)cancel:(id)sender;
- (void)selectFrequency:(id)sender;
- (void)toggleUntil:(id)sender;
- (void)toggleAllDay:(id)sender;
- (void)editAlarms:(id)sender;
@end