From a80021fa96b07d4ae26d9f85099f4bce09a8f5b3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 29 Nov 2020 22:17:41 +0100 Subject: Big steps towards working window resizing Found some other bugs too --- libgui/inc/gui.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'libgui/inc') diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h index cf0020d..e44f566 100644 --- a/libgui/inc/gui.h +++ b/libgui/inc/gui.h @@ -32,6 +32,8 @@ struct element_event { }; struct element_container { + int x; + int y; u32 width; u32 height; u32 color_bg; @@ -39,6 +41,8 @@ struct element_container { }; struct element_button { + int x; + int y; char *text; u32 color_fg; u32 color_bg; @@ -46,6 +50,8 @@ struct element_button { }; struct element_label { + int x; + int y; char *text; u32 color_fg; u32 color_bg; @@ -53,6 +59,8 @@ struct element_label { }; struct element_text_box { + int x; + int y; char *text; u32 width; u32 height; @@ -62,8 +70,10 @@ struct element_text_box { }; struct element_text_input { - char text[MAX_INPUT_LENGTH]; + int x; + int y; u32 width; + char text[MAX_INPUT_LENGTH]; u32 color_fg; u32 color_bg; enum font_type font_type; @@ -118,7 +128,7 @@ struct element *gui_add_text_input(struct element *container, int x, int y, u32 enum font_type font_type, u32 color_bg, u32 color_fg); struct element *gui_add_container(struct element *container, int x, int y, u32 width, u32 height, u32 color_bg); -void gui_sync(struct element *container, struct element *elem); +void gui_sync(struct element *elem); void gui_remove_childs(struct element *elem); void gui_remove_element(struct element *elem); -- cgit v1.2.3