adium: add chat room list UI
[siplcs.git] / src / adium / DCPurpleSIPEJoinChatViewController.h
blobdaa3c8b3de0a4550f56a17431741f8158969622e
1 //
2 // DCPurpleSIPEJoinChatViewController.h
3 // SIPEAdiumPlugin
4 //
5 // Created by Michael Lamb on 02/10/12.
6 // Copyright 2012 Michael Lamb. All rights reserved.
7 //
9 #import <Adium/DCJoinChatViewController.h>
10 #import <AIUtilities/AITextFieldWithDraggingDelegate.h>
13 @class AICompletingTextField;
15 @interface DCPurpleSIPEJoinChatViewController : DCJoinChatViewController <NSComboBoxDataSource> {
17 IBOutlet NSComboBox *combo_rooms;
18 IBOutlet NSProgressIndicator *progress_fetch;
20 NSTimer *timer;
21 NSMutableDictionary *room_dict;
22 struct _PurpleRoomlist *room_list;
25 @end