Implemented output buffering.
[rodin/chimara.git] / libchimara / window.h
index fd61ca310cf64131726861fcdc173eede3bfbe56..71bbb7436168cbbe368ae5827920e05f58d7c422 100644 (file)
@@ -7,6 +7,7 @@
 #include "stream.h"
 #include "input.h"
 #include "style.h"
+#include "hyperlink.h"
 
 
 enum InputRequestType
@@ -65,6 +66,10 @@ struct glk_window_struct
        /* Signal handlers */
        gulong keypress_handler;
        gulong insert_text_handler;
+       gulong mouse_click_handler;
+       gulong mouse_move_handler;
+       /* Window buffer */
+       GString *buffer;
 };
 
 #endif