Updating svn:mergeinfo
[adiumx.git] / Source / ESAuthorizationRequestWindowController.h
blob447a7c51f04ecaf9c949030bf40a1c0fa891c321
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;
26 + (ESAuthorizationRequestWindowController *)showAuthorizationRequestWithDict:(NSDictionary *)inInfoDict forAccount:(AIAccount *)inAccount;
27 - (IBAction)authorize:(id)sender;
28 - (IBAction)deny:(id)sender;
30 @end