1 #import <ObjFW/ObjFW.h>
2 #import <ObjXMPP/ObjXMPP.h>
5 typedef void (^jub_send_block_t)(OFString *);
7 @interface JubGtkChatUI: OFObject
9 GtkWidget *chat_window;
10 GtkTextBuffer *chat_buffer;
11 jub_send_block_t sendBlock;
15 - initWithTitle: (OFString*)title
16 sendBlock: (jub_send_block_t)sendBlock_;
18 - (void)addMessage: (OFString*)text
19 sender: (OFString*)sender;