/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * Add buddy/group window. */ #import @class NSString; @class NSWindow, NSMatrix, NSTextField, NSComboBox; @class NSArray; @class ClientInstance, User; @interface AddWindow : NSObject { ClientInstance *cli; NSWindow *window; NSMatrix *operation; NSTextField *name; NSComboBox *group; } + windowWithInstance:(ClientInstance*)cli; - initWithInstance:(ClientInstance*)cli; - (void)setUser:(User*)u; @end