forked from davedelong/DDHotKey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDDHotKeyAppDelegate.h
More file actions
28 lines (18 loc) · 1.18 KB
/
DDHotKeyAppDelegate.h
File metadata and controls
28 lines (18 loc) · 1.18 KB
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
/*
DDHotKey -- DDHotKeyAppDelegate.h
Copyright (c) Dave DeLong <http://www.davedelong.com>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
The software is provided "as is", without warranty of any kind, including all implied warranties of merchantability and fitness. In no event shall the author(s) or copyright holder(s) be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
*/
#import <Cocoa/Cocoa.h>
@interface DDHotKeyAppDelegate : NSObject /*<NSApplicationDelegate>*/
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSTextView *output;
- (void) addOutput:(NSString *)newOutput;
- (IBAction) registerExample1:(id)sender;
- (IBAction) registerExample2:(id)sender;
- (IBAction) registerExample3:(id)sender;
- (IBAction) unregisterExample1:(id)sender;
- (IBAction) unregisterExample2:(id)sender;
- (IBAction) unregisterExample3:(id)sender;
@end