diff options
author | Marvin Borner | 2020-11-01 12:35:00 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-01 12:35:00 +0100 |
commit | f40be8b5b6227775901a99946779661d0b4439e6 (patch) | |
tree | 34c28f138f4167de258ee18db44707aa4637a68d /libgui/inc | |
parent | e0d3b1671b3f94657d70223b51285ed287c882df (diff) |
Added files demo and needed functions
Diffstat (limited to 'libgui/inc')
-rw-r--r-- | libgui/inc/gui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h index 8ed8f4e..90e07ae 100644 --- a/libgui/inc/gui.h +++ b/libgui/inc/gui.h @@ -61,6 +61,7 @@ struct element { u32 window_id; struct context *ctx; // Coordinates are relative to container struct element_event event; + void *attributes; struct list *childs; void *data; // Who needs static types anyways :) }; @@ -96,5 +97,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_remove_childs(struct element *elem); +void gui_remove_element(struct element *elem); #endif |