From d525526f52c76156c4b9ee5ee4f14ed0d06547bc Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 2 Dec 2020 22:30:31 +0100 Subject: More window resizing.. Almost kinda works now --- libgui/gui.c | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) (limited to 'libgui/gui.c') diff --git a/libgui/gui.c b/libgui/gui.c index a38dd85..8494221 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -284,7 +284,7 @@ void gui_sync_container(struct element *elem) // TODO: Handle container flags } -void gui_sync(struct element *elem) +void gui_only_sync(struct element *elem) { switch (elem->type) { case GUI_TYPE_BUTTON: @@ -305,11 +305,46 @@ void gui_sync(struct element *elem) default: break; } +} +void gui_sync(struct element *elem) +{ + gui_only_sync(elem); merge_elements(get_root(elem->window_id)); gfx_redraw_focused(); } +void gui_sync_recursive(struct element *container) +{ + if (!container || !container->childs || !container->childs->head) + return; + + struct node *iterator = container->childs->head; + while (iterator != NULL) { + gui_only_sync(iterator->data); + gui_sync_recursive(iterator->data); + iterator = iterator->next; + } +} + +void gui_sync_window(u32 window_id) +{ + struct element *root = get_root(window_id); + + if (!root || !root->childs || !root->childs->head) + return; + + struct node *iterator = root->childs->head; + while (iterator != NULL) { + gui_only_sync(iterator->data); + gui_sync_recursive(iterator->data); + iterator = iterator->next; + } + + merge_elements(root); + gfx_redraw_focused(); +} + struct element *gui_add_button(struct element *container, int x, int y, enum font_type font_type, const char *text, u32 color_bg, u32 color_fg) { @@ -524,9 +559,7 @@ void gui_event_loop(struct element *container) struct gui_event_resize *event = msg->data; struct element *root = get_root(container->window_id); root->ctx = event->new_ctx; - gui_sync_container(container); - merge_elements(root); - gfx_redraw_focused(); + gui_sync_window(container->window_id); break; } } -- cgit v1.2.3