forked from robbiehanson/AlarmClock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditorController.h
69 lines (59 loc) · 1.59 KB
/
EditorController.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* EditorController */
#import <Cocoa/Cocoa.h>
@class Alarm;
@class ITunesTable;
@class ITunesPlayer;
@interface EditorController : NSWindowController
{
// Alarm reference and alarm copy
Alarm *alarmReference;
Alarm *alarm;
// iTunes Data reference
ITunesTable *data;
// For previewing songs with quicktime
NSImage *playImage;
NSImage *stopImage;
ITunesPlayer *player;
// Lock for threads
NSLock *lock;
// For displaying the correct track/playlist
BOOL hasSelectedTrackOrPlaylist;
IBOutlet id calMonths;
IBOutlet id calPanel;
IBOutlet id calView;
IBOutlet id calYears;
IBOutlet id dateButton;
IBOutlet id dateField;
IBOutlet id deleteButton;
IBOutlet id easyWakeButton;
IBOutlet id playlists;
IBOutlet id previewButton;
IBOutlet id repeatSchedule;
IBOutlet id repeatType;
IBOutlet id searchField;
IBOutlet id searchLabel;
IBOutlet id shuffleButton;
IBOutlet id songLabel;
IBOutlet id statusButton;
IBOutlet id sunMoonImage;
IBOutlet id table;
IBOutlet id tabView;
IBOutlet id timeField;
}
- (IBAction)cancel:(id)sender;
- (IBAction)changeCal:(id)sender;
- (IBAction)closeCalPanel:(id)sender;
- (IBAction)delete:(id)sender;
- (IBAction)ok:(id)sender;
- (IBAction)preview:(id)sender;
- (IBAction)search:(id)sender;
- (IBAction)selectDate:(id)sender;
- (IBAction)switchSource:(id)sender;
- (IBAction)toggleDateTime:(id)sender;
- (IBAction)toggleEasyWake:(id)sender;
- (IBAction)toggleShuffle:(id)sender;
- (IBAction)toggleStatus:(id)sender;
- (id)init;
- (id)initWithIndex:(int)index;
- (Alarm *)alarmReference;
@end