Use TopfieldUSBEcode for received values too.
[MacTF.git] / UKFirstResponder.h
blobab85a3492176779c53b18eda6c1ee84164798c85
1 //
2 // UKFirstResponder.h
3 // Shovel
4 //
5 // Created by Uli Kusterer on 04.10.04.
6 // Copyright 2004 M. Uli Kusterer. All rights reserved.
7 //
9 /*
10 This is a nice little object that lets you send messages up the responder
11 chain as if it was just another object to send messages to.
15 #import <Cocoa/Cocoa.h>
18 @interface UKFirstResponder : NSObject {}
20 +(id) firstResponder;
22 -(BOOL) respondsToSelector: (SEL)itemAction;
23 -(id) performSelector: (SEL)itemAction;
24 -(id) performSelector: (SEL)itemAction withObject: (id)obj;
26 @end