Put NSAutoreleasePool usage around other distributed notification observer methods
[adiumx.git] / Source / EBChatCommandsController.h
blob57af5b468c86b010630810fdc67010c2539b2baa
1 //
2 // EBChatCommandsController.h
3 // Adium
4 //
5 // Created by Chloe Haney on 11/07/07.
6 // Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import <AIAccount.h>
11 #import "AIChat.h"
12 #import "AIWindowController.h"
13 #import "AIUtilities/AICompletingTextfield.h"
14 #import "AIMetaContact.h"
15 @interface EBChatCommandsController : AIWindowController
17 IBOutlet id sheet;
18 IBOutlet id label_target;
19 IBOutlet id label_comment;
20 IBOutlet AICompletingTextField *textField_target;
21 IBOutlet NSTextField *textField_comment;
22 id delegate;
23 NSMutableDictionary *parameters;
25 +(id)init;
26 -(void)verifyCommand:(NSString*)command forChat:(AIChat*)chat;
27 -(id)delegate;
28 -(void)setDelegate:(id)newDelegate;
29 - (AIListContact *)contactFromTextField;
30 - (void)configureTextFieldForAccount:(AIAccount *)account;
33 @end