Implemented date/time Glk functions
[projects/chimara/chimara.git] / libchimara / window.h
index 571d02a16e4d4bd548984e13b1af391e2d545f15..1fecb5e92944339c5afa243fc447c3093284fddc 100644 (file)
@@ -77,13 +77,22 @@ struct glk_window_struct
        gulong shutdown_keypress_handler;
        gulong button_press_event_handler;
        gulong size_allocate_handler;
+       gulong pager_expose_handler;
+       gulong pager_keypress_handler;
+       gulong pager_adjustment_handler;
        /* Window buffer */
        GString *buffer;
+       GtkTextTag *zcolor;
+       GtkTextTag *zcolor_reversed;
        /* Hyperlinks */
        GHashTable *hyperlinks;
        struct hyperlink *current_hyperlink;
+       gboolean hyperlink_event_requested;
        /* Graphics */
        glui32 background_color;
+       /* Pager (textbuffer only) */
+       gboolean currently_paging;
+       PangoLayout *pager_layout;
 };
 
 #endif