/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License */ #import #import @interface UserChooser : NSObject { SEL selector; id target; NSWindow *window; NSComboBox *userField, *instanceField; } + chooseWithSelector:(SEL)s target:t; - initWithSelector:(SEL)s andTarget:t; - (void)setLogin:(NSString*)str; @end