Fix up copyright notices.
[enjoyable.git] / KeyInputTextView.h
1 //
2 // KeyInputTextView.h
3 // Enjoy
4 //
5 // Created by Sam McCall on 5/05/09.
6 // Copyright 2009 University of Otago. All rights reserved.
7 //
8
9 @class TargetController;
10
11 @interface KeyInputTextView : NSTextField {
12 IBOutlet NSWindow *window;
13 IBOutlet TargetController *targetController;
14 }
15
16 @property (assign) int vk;
17 @property (readonly) BOOL hasKey;
18 @property (assign) BOOL enabled;
19
20 + (NSString *)stringForKeyCode:(int)keycode;
21
22 - (void)clear;
23
24 @end