summaryrefslogtreecommitdiffstats
path: root/DDHotKeyAppDelegate.h
diff options
context:
space:
mode:
authorDave DeLong2010-02-24 14:52:09 -0600
committerDave DeLong2010-02-24 14:52:09 -0600
commit3db4cacf07383d3d30822d180695d78e9d6ad145 (patch)
tree363f6d7e31c1bae5e2c1538ee183e566468aeb5d /DDHotKeyAppDelegate.h
parentd12d318af02d8f21909781a8cd63e0fbc86261dc (diff)
downloadDDHotKey-3db4cacf07383d3d30822d180695d78e9d6ad145.tar.bz2
Added demo UI
Diffstat (limited to 'DDHotKeyAppDelegate.h')
-rw-r--r--DDHotKeyAppDelegate.h12
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