]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/gui/gtk/JubGtkRosterUI.h
4f3d7ac826a4735bcba4a84027242cf15c9f8fdc
[jubjub.git] / src / gui / gtk / JubGtkRosterUI.h
1 #import <ObjFW/ObjFW.h>
2 #import <ObjXMPP/ObjXMPP.h>
3 #include <gtk/gtk.h>
4
5 #import "JubChatClient.h"
6
7 @class JubGtkChatUI;
8
9 @interface JubGtkRosterUI: OFObject <XMPPContactManagerDelegate>
10 {
11         GtkWidget *roster_window;
12         GtkTreeStore *roster_model;
13         GtkTreeModelFilter *roster_filter;
14         GtkComboBox *presence_combo;
15         gulong presence_combo_changed_handler_id;
16         OFMapTable *groupMap;
17         OFMutableDictionary *contactMap;
18         JubChatClient *client;
19 }
20
21 - initWithClient: (JubChatClient*)client;
22 -      (void)client: (JubChatClient*)client
23   didChangePresence: (XMPPPresence*)presence;
24 @end