-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLSignboard_AppDelegate.h
57 lines (35 loc) · 1.03 KB
/
XMLSignboard_AppDelegate.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
//
// XMLSignboard_AppDelegate.h
// XMLSignboard
//
// Created by Jason Terhorst on 10/27/08.
// Copyright Jason Terhorst 2008 . All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <CalendarStore/CalendarStore.h>
#import "SignDisplayController.h"
@interface XMLSignboard_AppDelegate : NSObject
{
NSMutableArray * announcements;
NSMutableArray * events;
NSMutableArray * calendarObjects;
SignDisplayController * newDisplay;
NSTimer * xmlUpdateTimer;
NSColor * backgroundColor;
NSImage * logoImage;
IBOutlet NSWindow * window;
IBOutlet NSTextField * xmlSourceField;
IBOutlet NSTableView * calendarTableView;
IBOutlet NSTextField * churchNameField;
IBOutlet NSColorWell * backgroundColorWell;
IBOutlet NSImageView * logoImageView;
}
- (IBAction)changeLogo:(id)sender;
- (IBAction)changeBackgroundColor:(id)sender;
- (IBAction)startShow:(id)sender;
- (IBAction)resetSettings:(id)sender;
- (IBAction)quitNow:(id)sender;
- (NSString *)applicationSupportFolder;
- (void)loadXMLFile;
- (void)loadCalendars;
@end