summaryrefslogtreecommitdiffstats
path: root/DDHotKeyAppDelegate.h
blob: 4b4cbacf99d7885f3eae76f3d2df2ac607cfabaa (plain)
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
//
//  DDHotKeyAppDelegate.h
//  DDHotKey
//
//  Created by Dave DeLong on 2/24/10.
//  Copyright 2010 Home. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@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