diff options
Diffstat (limited to 'DDHotKeyAppDelegate.h')
| -rw-r--r-- | DDHotKeyAppDelegate.h | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/DDHotKeyAppDelegate.h b/DDHotKeyAppDelegate.h index ab448a1..4b4cbac 100644 --- a/DDHotKeyAppDelegate.h +++ b/DDHotKeyAppDelegate.h @@ -10,8 +10,20 @@  @interface DDHotKeyAppDelegate : NSObject <NSApplicationDelegate> {      NSWindow *window; +	NSTextView *output;  }  @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 | 
