X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=libchimara%2Fwindow.c;h=c0b0a0c84443efe07cfaf557ddaa634424bd950a;hb=476e8909f7b56201452e6c967fc6839a64fa92b0;hp=5b970f5be4bedd4d2e2990189b7ba434cd131bb4;hpb=87b7d67ad1810f6207f58bd13f03c885a808f4e5;p=projects%2Fchimara%2Fchimara.git diff --git a/libchimara/window.c b/libchimara/window.c index 5b970f5..c0b0a0c 100644 --- a/libchimara/window.c +++ b/libchimara/window.c @@ -223,7 +223,8 @@ glk_window_get_root() * @method: Position of the new window and method of size computation. One of * %winmethod_Above, %winmethod_Below, %winmethod_Left, or %winmethod_Right * OR'ed with %winmethod_Fixed or %winmethod_Proportional. If @wintype is - * %wintype_Blank, then %winmethod_Fixed is not allowed. + * %wintype_Blank, then %winmethod_Fixed is not allowed. May also be OR'ed with + * %winmethod_Border or %winmethod_NoBorder. * @size: Size of the new window, in percentage points if @method is * %winmethod_Proportional, otherwise in characters if @wintype is * %wintype_TextBuffer or %wintype_TextGrid, or pixels if @wintype is @@ -239,9 +240,13 @@ glk_window_get_root() * * If any windows exist, new windows must be created by splitting existing * ones. @split is the window you want to split; this must - * not be zero. @method is a mask of constants to specify the - * direction and the split method (see below). @size is the size of the split. - * @wintype is the type of window you're creating, and @rock is the rock. + * not be zero. @method specifies the direction and the split method + * (see below). @size is the size of the split. @wintype is the type of window + * you're creating, and @rock is the rock. + * + * The method argument must be the logical-or of a direction constant + * (%winmethod_Above, %winmethod_Below, %winmethod_Left, %winmethod_Right) and a + * split-method constant (%winmethod_Fixed, %winmethod_Proportional). * * Remember that it is possible that the library will be unable to create a new * window, in which case glk_window_open() will return %NULL. @@ -890,8 +895,9 @@ glk_window_close(winid_t win, stream_result_t *result) * * Text grid * - * This will clear the window, filling all positions with blanks. The window - * cursor is moved to the top left corner (position 0,0). + * This will clear the window, filling all positions with blanks (in the + * normal style). The window cursor is moved to the top left corner (position + * 0,0). * * * @@ -951,9 +957,29 @@ glk_window_clear(winid_t win) gtk_text_buffer_set_text(textbuffer, text, -1); g_free(text); - GtkTextIter begin; - gtk_text_buffer_get_start_iter(textbuffer, &begin); - gtk_text_buffer_move_mark_by_name(textbuffer, "cursor_position", &begin); + GtkTextIter start, end; + gtk_text_buffer_get_start_iter(textbuffer, &start); + gtk_text_buffer_get_end_iter(textbuffer, &end); + + /* Determine default style */ + GtkTextTagTable *tags = gtk_text_buffer_get_tag_table(textbuffer); + GtkTextTag *default_tag = gtk_text_tag_table_lookup(tags, "default"); + GtkTextTag *style_tag = gtk_text_tag_table_lookup(tags, "normal"); + GtkTextTag *glk_style_tag = gtk_text_tag_table_lookup(tags, "normal"); + + // Default style + gtk_text_buffer_apply_tag(textbuffer, default_tag, &start, &end); + + // Player's style overrides + gtk_text_buffer_apply_tag(textbuffer, style_tag, &start, &end); + + // GLK Program's style overrides + gtk_text_buffer_apply_tag(textbuffer, glk_style_tag, &start, &end); + + if(win->zcolor != NULL) + gtk_text_buffer_apply_tag(textbuffer, win->zcolor, &start, &end); + + gtk_text_buffer_move_mark_by_name(textbuffer, "cursor_position", &start); gdk_threads_leave(); } @@ -994,15 +1020,12 @@ glk_window_clear(winid_t win) * glk_set_window: * @win: A window, or %NULL. * - * Sets the current stream to @win's window stream. It is exactly equivalent to - * |[ glk_stream_set_current(glk_window_get_stream(win)) ]| + * Sets the current stream to @win's window stream. If @win is %NULL, it is + * equivalent to + * |[ glk_stream_set_current(NULL); ]| + * If @win is not %NULL, it is equivalent to + * |[ glk_stream_set_current(glk_window_get_stream(win)); ]| * See Streams. - * - * Chimara - * - * Although this is not mentioned in the specification, @win may also be - * %NULL, in which case the current stream is also set to %NULL. - * */ void glk_set_window(winid_t win) @@ -1227,9 +1250,9 @@ glk_window_get_size(winid_t win, glui32 *widthptr, glui32 *heightptr) * Whatever constraint you set, glk_window_get_size() will tell you the actual * window size you got. * - * Note that you can resize windows, but you can't flip or rotate them. You - * can't move A above D, or change O2 to a vertical split where A is left or - * right of D. + * Note that you can resize windows, and alter the Border/NoBorder flag. But you + * can't flip or rotate them. You can't move A above D, or change O2 to a + * vertical split where A is left or right of D. * * To get this effect you could close one of the windows, and re-split the * other one with glk_window_open().