X-Git-Url: https://git.yukkurigames.com/?a=blobdiff_plain;f=KeyInputTextView.h;h=9927385ed13c90542598fc6708ab2c0193f77627;hb=20ccd38576bb48caf8e4129a8c86fe04819d83bc;hp=e327c7851ba19602595f21af851932bcbd7627e3;hpb=5a79f9f05829ca1aecc70aeadb8c980ec4f3556d;p=enjoyable.git 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