git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some more code cleanup, converting spaces to tabs. Redid ITKit.h framework
[ITKit.git]
/
ITHotKey.h
diff --git
a/ITHotKey.h
b/ITHotKey.h
old mode 100755
(executable)
new mode 100644
(file)
index
7910081
..
453886a
--- a/
ITHotKey.h
+++ b/
ITHotKey.h
@@
-1,42
+1,38
@@
/*
* ITKit
/*
* ITKit
- *
ITHotKey
+ *
ITHotKey.h
*
*
- * Original Author : Quentin Carnicelli <...>
- * Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
- * Responsibility : Matthew Judy <mjudy@ithinksw.com>
+ * Copyright (c) 2005 by iThink Software.
+ * All Rights Reserved.
*
*
- * Copyright (c) 2002 - 2003 iThink Software.
- * All Rights Reserved
+ * $Id$
*
*/
*
*/
+#import <Cocoa/Cocoa.h>
-#import <Foundation/Foundation.h>
-#import "ITKeyCombo.h"
+@class ITKeyCombo;
-
-@interface ITHotKey : NSObject
-{
- NSString* mName;
- ITKeyCombo* mKeyCombo;
- id mTarget;
- SEL mAction;
+@interface ITHotKey : NSObject {
+ NSString *mName;
+ ITKeyCombo *mKeyCombo;
+ id mTarget;
+ SEL mAction;
}
- (id)init;
}
- (id)init;
-- (void)setName:
(NSString
*)name;
-- (NSString*)name;
+- (void)setName:
(NSString
*)name;
+- (NSString
*)name;
-- (void)setKeyCombo:
(ITKeyCombo
*)combo;
-- (ITKeyCombo*)keyCombo;
+- (void)setKeyCombo:
(ITKeyCombo
*)combo;
+- (ITKeyCombo
*)keyCombo;
-- (void)setTarget:
(id)target;
+- (void)setTarget:(id)target;
- (id)target;
- (id)target;
-- (void)setAction:
(SEL)action;
+- (void)setAction:(SEL)action;
- (SEL)action;
- (void)invoke;
- (SEL)action;
- (void)invoke;
-@end
+@end
\ No newline at end of file