X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/d9649564199a7220e70716aa0999c6fddb0efadc..abdb0712ef9e62ff570497eb0e7072eb92b23722:/ITHotKey.h diff --git a/ITHotKey.h b/ITHotKey.h old mode 100755 new mode 100644 index d654bbc..453886a --- a/ITHotKey.h +++ b/ITHotKey.h @@ -1,35 +1,38 @@ -// -// ITHotKey.h -// -// Created by Quentin Carnicelli on Sat Aug 02 2003. -// Copyright (c) 2003 iThink Software. All rights reserved. -// - -#import - -#import "ITKeyCombo.h" - -@interface ITHotKey : NSObject -{ - NSString* mName; - ITKeyCombo* mKeyCombo; - id mTarget; - SEL mAction; +/* + * ITKit + * ITHotKey.h + * + * Copyright (c) 2005 by iThink Software. + * All Rights Reserved. + * + * $Id$ + * + */ + +#import + +@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