The accounts menu now distinguishes accounts which are on a service compatible with...
[adiumx.git] / Source / ESAwayStatusWindowController.h
blobcedc3683ab9fb1afca2fad31ffa4a1257f9e1536
1 //
2 // ESAwayStatusWindowController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 4/12/05.
6 // Copyright 2006 The Adium Team. All rights reserved.
7 //
9 #import <Adium/AIWindowController.h>
11 @class AIAlternatingRowTableView;
13 @interface ESAwayStatusWindowController : AIWindowController {
14 IBOutlet NSButton *button_return;
15 IBOutlet NSTabView *tabView_configuration;
17 //Single status tab
18 IBOutlet NSTextView *textView_singleStatus;
20 //Multiple statuses tab
21 IBOutlet AIAlternatingRowTableView *tableView_multiStatus;
23 NSMutableArray *_awayAccounts;
26 + (void)updateStatusWindowWithVisibility:(BOOL)shouldBeVisibile;
27 + (void)setAlwaysOnTop:(BOOL)flag;
28 + (void)setHideInBackground:(BOOL)flag;
30 - (IBAction)returnFromAway:(id)sender;
32 @end