]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/gui/gtk/JubGtkChatUI.h
Prefix ivars with an underscore
[jubjub.git] / src / gui / gtk / JubGtkChatUI.h
1 #import <ObjFW/ObjFW.h>
2 #import <ObjXMPP/ObjXMPP.h>
3 #include <gtk/gtk.h>
4
5 #import "JubChatUI.h"
6
7 @interface JubGtkChatUI: OFObject <JubChatUI>
8 {
9         GtkWidget *_chat_window;
10         GtkTextView *_chat_view;
11         GtkTextBuffer *_chat_buffer;
12         jub_send_block_t _sendBlock;
13         jub_close_block_t _closeBlock;
14         BOOL _bufferEmpty;
15 }
16 @end