/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License */ #import @class NSWindow, NSTextView, NSTextField; @class ClientInstance; @interface AwayMessageWindow : NSObject { NSWindow *window; NSTextField *label; NSTextView *message; ClientInstance *cli; } + windowWithMessage:(NSString*)msg forInstance:(ClientInstance*)c; - initWithMessage:(NSString*)msg forInstance:(ClientInstance*)c; - (void)closeWindow; @end