File: AppointmentEditor.h

package info (click to toggle)
agenda.app 0.44-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,012 kB
  • sloc: objc: 7,820; makefile: 18
file content (34 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (4)
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
/* 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