/* * Grouch Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License */ #import @interface LoginWindow : NSObject { NSWindow *window; NSTextField *hostField, *portField; NSComboBox *protoComboBox, *accountComboBox; NSTextField *loginField, *passwordField; NSButton *saveCheckBox; } - init; - (void)gotAccount; - (void)gotLogin; @end