forked from lilyball/NotificationWatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWatcherController.h
More file actions
25 lines (23 loc) · 893 Bytes
/
WatcherController.h
File metadata and controls
25 lines (23 loc) · 893 Bytes
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
/* WatcherController */
#import <Cocoa/Cocoa.h>
@interface WatcherController : NSObject {
IBOutlet NSWindow *prefsWindow;
IBOutlet NSTextField *objectText;
IBOutlet NSTableView *distNotificationList;
IBOutlet NSTableView *wsNotificationList;
IBOutlet NSTableView *userInfoList;
IBOutlet NSSearchField *searchField;
NSMutableArray *distNotifications;
NSMutableArray *wsNotifications;
NSNotification *selectedDistNotification;
NSNotification *selectedWSNotification;
NSMutableArray *savedRowHeights;
}
- (IBAction)clearNotifications:(id)sender;
- (IBAction)showPrefs:(id)sender;
- (IBAction)didChangeFilter:(NSSearchField *)sender;
- (IBAction)selectSearchField:(id)sender;
- (void)selectNotification:(NSNotification*)aNotification;
- (void)distNotificationHook:(NSNotification*)aNotification;
- (void)wsNotificationHook:(NSNotification*)aNotification;
@end