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 <Foundation/Foundation.h>
@class Element;
@class Alarm;
@interface AlarmEditor : NSObject
{
id window;
id panel;
id type;
id action;
id table;
id add;
id remove;
id relativeSlider;
id relativeText;
id radio;
id date;
id time;
NSMutableArray *_alarms;
Alarm *_current;
Alarm *_simple;
}
+ (NSArray *)editAlarms:(NSArray *)alarms;
- (void)addAlarm:(id)sender;
- (void)removeAlarm:(id)sender;
- (void)changeDelay:(id)sender;
- (void)selectType:(id)sender;
- (void)switchBeforeAfter:(id)sender;
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification;
@end
|