/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * "Set Away Message" window. */ #import @interface SetAwayMessage : NSObject { NSWindow *window; NSComboBox *titleComboBox, *loginComboBox; NSTextView *messageTextView; } - init; - (void)gotTitle; - (BOOL)validate; - (NSString*)saveMessage; - (void)setLogin:(NSString*)login; @end