5 #include "chimara-glk-private.h"
11 #include "hyperlink.h"
19 INPUT_REQUEST_CHARACTER,
20 INPUT_REQUEST_CHARACTER_UNICODE,
22 INPUT_REQUEST_LINE_UNICODE
28 * This is an opaque structure (see <link linkend="chimara-Opaque-Structures">
29 * Opaque Structures</link> and should not be accessed directly.
31 struct glk_window_struct
35 gidispatch_rock_t disprock;
36 /* Pointer to the node in the global tree that contains this window */
38 /* Window parameters */
40 /* "widget" is the actual widget with the window's functionality */
42 /* "frame" is the widget that is the child of the ChimaraGlk container, such
43 as a scroll window. It may be the same as "widget". */
45 /* Width and height of the window's size units, in pixels */
48 /* Streams associated with the window */
49 strid_t window_stream;
51 /* Width and height of the window, in characters (text grids only) */
54 /* Window split data (pair windows only) */
57 glui32 constraint_size;
58 /* Input request stuff */
59 enum InputRequestType input_request_type;
60 gchar *line_input_buffer;
61 glui32 *line_input_buffer_unicode;
62 glui32 line_input_buffer_max_len;
63 gidispatch_rock_t buffer_rock;
64 gboolean mouse_input_requested;
67 /* Line input field (text grids only) */
69 GtkTextChildAnchor *input_anchor;
70 GtkWidget *input_entry;
71 gulong line_input_entry_changed;
73 gulong char_input_keypress_handler;
74 gulong line_input_keypress_handler;
75 gulong insert_text_handler;
76 gulong tag_event_handler;
77 gulong shutdown_keypress_handler;
78 gulong button_press_event_handler;
79 gulong size_allocate_handler;
80 gulong pager_expose_handler;
81 gulong pager_keypress_handler;
85 GHashTable *hyperlinks;
86 struct hyperlink *current_hyperlink;
88 glui32 background_color;
89 /* Pager (textbuffer only) */
90 gboolean currently_paging;
91 PangoLayout *pager_layout;