diff options
author | Marvin Borner | 2020-11-27 12:46:45 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-27 12:46:45 +0100 |
commit | a1dbc858d40b2394e23511aa111ec6590b5fb8c7 (patch) | |
tree | 7ad9a63a67a0fca0b879cb7053eb702407a64174 /libgui/gui.c | |
parent | 3288fc6ad2119828c028846ebfdd9cdc8c94af83 (diff) |
Started window resize support
Diffstat (limited to 'libgui/gui.c')
-rw-r--r-- | libgui/gui.c | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/libgui/gui.c b/libgui/gui.c index 943c5d7..4b28114 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -406,14 +406,10 @@ void gui_event_loop(struct element *container) continue; s[l] = event->ch; s[l + 1] = '\0'; - gui_sync_text_input(focused); - merge_elements(get_root(focused->window_id)); - gfx_redraw_focused(); + gui_sync(get_root(focused->window_id), focused); } else if (event->scancode == KEY_BACKSPACE && l > 0) { s[l - 1] = '\0'; - gui_sync_text_input(focused); - merge_elements(get_root(focused->window_id)); - gfx_redraw_focused(); + gui_sync(get_root(focused->window_id), focused); } } @@ -423,9 +419,7 @@ void gui_event_loop(struct element *container) // Clear! char *t = ((struct element_text_input *)focused->data)->text; memset(t, 0, strlen(t)); - gui_sync_text_input(focused); - merge_elements(get_root(focused->window_id)); - gfx_redraw_focused(); + gui_sync(get_root(focused->window_id), focused); } if (focused && focused->event.on_key && event->press && event->ch) @@ -433,6 +427,17 @@ void gui_event_loop(struct element *container) break; } + case GUI_RESIZE: { + struct gui_event_resize *event = msg->data; + struct element *root = get_root(container->window_id); + printf("RESIZE: %d->%d %d->%d\n", root->ctx->width, event->new_ctx->width, + root->ctx->height, event->new_ctx->height); + root->ctx = event->new_ctx; + gui_sync_container(root); + merge_elements(root); + gfx_redraw_focused(); + break; + } } } } |