X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fwindow.h;h=954415e494ecd14fb1f2c7b22ef446ae3b0e352e;hb=4b452ca423971eea8b7f6c1d16b4567c11e71be3;hp=4e705f2d69822bbf14a510b6691974d7e237a151;hpb=65fae93f40acb49a7d18202bbf7fdac05cb12a19;p=projects%2Fchimara%2Fchimara.git diff --git a/src/window.h b/src/window.h index 4e705f2..954415e 100644 --- a/src/window.h +++ b/src/window.h @@ -18,17 +18,20 @@ enum InputRequestType struct glk_window_struct { - GNode *window_node; - glui32 rock; + /* Pointer to the node in the global tree that contains this window */ + GNode *window_node; + /* Window parameters */ glui32 window_type; GtkWidget *widget; strid_t window_stream; strid_t echo_stream; + /* Input request stuff */ enum InputRequestType input_request_type; gchar *line_input_buffer; glui32 *line_input_buffer_unicode; glui32 line_input_buffer_max_len; + gboolean mouse_input_requested; }; #endif