* Fixed the objectSpecifier of `AIStatusItem`s to be based on the unique ID rather...
[adiumx.git] / Source / ESAuthorizationRequestWindowController.h
blob004651fe3c0233a513dfea0a2ae3d029a937e9e7
1 //
2 // ESAuthorizationRequestWindowController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 5/18/05.
6 // Copyright 2006 The Adium Team. All rights reserved.
7 //
9 #import <Adium/AIWindowController.h>
11 @class AIAccount;
13 @interface ESAuthorizationRequestWindowController : AIWindowController {
14 IBOutlet NSTextField *textField_header;
15 IBOutlet NSTextView *textView_message;
17 IBOutlet NSButton *button_authorize;
18 IBOutlet NSButton *button_deny;
19 IBOutlet NSButton *checkBox_addToList;
21 NSDictionary *infoDict;
23 AIAccount *account;
25 BOOL windowIsClosing;
28 + (ESAuthorizationRequestWindowController *)showAuthorizationRequestWithDict:(NSDictionary *)inInfoDict forAccount:(AIAccount *)inAccount;
29 - (IBAction)authorize:(id)sender;
30 - (IBAction)deny:(id)sender;
32 @end