/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * A subclass of NSTextView that traps the return key and performs an * action. */ #import @interface ImTextView : NSTextView { NSObject *_target; SEL _action; } - (void)setTarget:t; - target; - (void)setAction:(SEL)action; - (SEL)action; - (void)keyDown:(NSEvent*)e; @end