Adding quick fix get-the-fuck-out-of-the-way positioning
[ITKit.git] / ITHotKey.h
1 //
2 //  ITHotKey.h
3 //
4 //  Created by Quentin Carnicelli on Sat Aug 02 2003.
5 //  Copyright (c) 2003 iThink Software. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 #import "ITKeyCombo.h"
11
12 @interface ITHotKey : NSObject
13 {
14         NSString*               mName;
15         ITKeyCombo*             mKeyCombo;
16         id                              mTarget;
17         SEL                             mAction;
18 }
19
20 - (id)init;
21
22 - (void)setName: (NSString*)name;
23 - (NSString*)name;
24
25 - (void)setKeyCombo: (ITKeyCombo*)combo;
26 - (ITKeyCombo*)keyCombo;
27
28 - (void)setTarget: (id)target;
29 - (id)target;
30 - (void)setAction: (SEL)action;
31 - (SEL)action;
32
33 - (void)invoke;
34
35 @end