Put NSAutoreleasePool usage around other distributed notification observer methods
[adiumx.git] / Source / AIGuestAccountWindowController.h
blobdb78a2566117bbe7f5ca5565a9f0e22e198f682b
1 //
2 // AIGuestAccountWindowController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 4/9/06.
6 //
8 #import <Adium/AIWindowController.h>
10 @class AIAccount;
12 @interface AIGuestAccountWindowController : AIWindowController {
13 IBOutlet NSPopUpButton *popUp_service;
14 IBOutlet NSTextField *label_service;
16 IBOutlet NSTextField *textField_name;
17 IBOutlet NSTextField *label_name;
19 IBOutlet NSTextField *textField_password;
20 IBOutlet NSTextField *label_password;
22 IBOutlet NSButton *button_okay;
23 IBOutlet NSButton *button_cancel;
24 IBOutlet NSButton *button_advanced;
26 AIAccount *account;
29 + (void)showGuestAccountWindow;
31 - (IBAction)okay:(id)sender;
32 - (IBAction)displayAdvanced:(id)sender;
34 @end