Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITHotKey.h
old mode 100755 (executable)
new mode 100644 (file)
index d654bbc..dca6c76
@@ -1,35 +1,35 @@
-//
-//  ITHotKey.h
-//
-//  Created by Quentin Carnicelli on Sat Aug 02 2003.
-//  Copyright (c) 2003 iThink Software. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-#import "ITKeyCombo.h"
-
-@interface ITHotKey : NSObject
-{
-       NSString*               mName;
-       ITKeyCombo*             mKeyCombo;
-       id                              mTarget;
-       SEL                             mAction;
+/*
+ *     ITKit
+ *     ITHotKey.h
+ *
+ *     Copyright (c) 2005 iThink Software
+ *
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@class ITKeyCombo;
+
+@interface ITHotKey : NSObject {
+       NSString *mName;
+       ITKeyCombo *mKeyCombo;
+       id mTarget;
+       SEL mAction;
 }
 
 - (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;
-- (void)setAction: (SEL)action;
+- (void)setAction:(SEL)action;
 - (SEL)action;
 
 - (void)invoke;
 
-@end
+@end
\ No newline at end of file