X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/676d1feebedb6b04b4da4bb58b3ca1282d7740f5..7a218424c6a92eb4979564a7260f862edd46052d:/ITHotKey.h diff --git a/ITHotKey.h b/ITHotKey.h old mode 100755 new mode 100644 index 7910081..453886a --- a/ITHotKey.h +++ b/ITHotKey.h @@ -1,42 +1,38 @@ /* * ITKit - * ITHotKey + * ITHotKey.h * - * Original Author : Quentin Carnicelli <...> - * Responsibility : Kent Sutherland - * Responsibility : Matthew Judy + * Copyright (c) 2005 by iThink Software. + * All Rights Reserved. * - * Copyright (c) 2002 - 2003 iThink Software. - * All Rights Reserved + * $Id$ * */ +#import -#import -#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; -- (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