X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=KeyInputTextView.h;h=9927385ed13c90542598fc6708ab2c0193f77627;hp=e327c7851ba19602595f21af851932bcbd7627e3;hb=561317beecbe4dd445b0c3cb067326828ea5566a;hpb=e68c19b5923618b763543c74bf8dd6f85d4d323e diff --git a/KeyInputTextView.h b/KeyInputTextView.h index e327c78..9927385 100644 --- a/KeyInputTextView.h +++ b/KeyInputTextView.h @@ -1,5 +1,5 @@ // -// KeyInputTextField.h +// KeyInputTextView.h // Enjoy // // Created by Sam McCall on 5/05/09. @@ -7,22 +7,17 @@ // #import -@class TargetController; -@interface KeyInputTextView: NSTextView { - IBOutlet NSWindow* window; - IBOutlet TargetController* targetController; - BOOL hasKey; - int vk; - NSString* descr; - BOOL enabled; +@interface KeyInputTextView : NSTextField { + IBOutlet NSWindow *window; + IBOutlet TargetController *targetController; } -@property(readonly) BOOL hasKey; -@property(readwrite) int vk; -@property(copy) NSString* descr; -@property(readwrite) BOOL enabled; +@property (copy) NSString* descr; +@property (assign) int vk; +@property (readonly) BOOL hasKey; +@property (assign) BOOL enabled; --(void) clear; +- (void)clear; @end