X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=KeyInputTextView.h;fp=KeyInputTextView.h;h=69d8f10f2d82591e984fdfdc743b53e02e21bd19;hp=0000000000000000000000000000000000000000;hb=530009447c5bbd360ac5023979cffc6d32a28df3;hpb=5f07baa8cb03a2f6aa06338bfeb31dad3c3ca29f diff --git a/KeyInputTextView.h b/KeyInputTextView.h new file mode 100644 index 0000000..69d8f10 --- /dev/null +++ b/KeyInputTextView.h @@ -0,0 +1,28 @@ +// +// KeyInputTextField.h +// Enjoy +// +// Created by Sam McCall on 5/05/09. +// Copyright 2009 University of Otago. All rights reserved. +// + +#import +@class TargetController; + +@interface KeyInputTextView: NSTextView { + IBOutlet NSWindow* window; + IBOutlet TargetController* targetController; + BOOL hasKey; + int vk; + NSString* descr; + BOOL enabled; +} + +@property(readonly) BOOL hasKey; +@property(readwrite) int vk; +@property(readonly) NSString* descr; +@property(readwrite) BOOL enabled; + +-(void) clear; + +@end