File: AlarmEditor.h

package info (click to toggle)
agenda.app 0.47-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,008 kB
  • sloc: objc: 8,103; makefile: 16; sh: 5
file content (34 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (3)
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