]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/gui/gtk/JubGtkRosterUI.h
Prefix ivars with an underscore
[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