aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-12-06 19:22:28 +0100
committerMarvin Borner2020-12-06 19:22:28 +0100
commit9d59c47aed2395c16f417477a62156282a584c6c (patch)
tree9ec30a6aecf2fd49b233051cacc05361e2b16cb0 /libgui
parent65e9f58ba4aa3fccceee7b7e71004305eaaa4574 (diff)
Added killing combo
Isn't that dangerous though
Diffstat (limited to 'libgui')
-rw-r--r--libgui/gui.c29
-rw-r--r--libgui/inc/gui.h2
2 files changed, 30 insertions, 1 deletions
diff --git a/libgui/gui.c b/libgui/gui.c
index 8494221..cd5798c 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -110,6 +110,29 @@ static void remove_childs(struct element *elem)
list_destroy(elem->childs);
}
+static void remove_window(struct window *win)
+{
+ if (!win || !win->childs || !win->childs->head)
+ return;
+
+ struct node *iterator = win->childs->head;
+ while (iterator != NULL) {
+ struct element *child = iterator->data;
+ remove_element(child);
+ iterator = iterator->next;
+ }
+
+ free_context(win->ctx);
+ list_destroy(win->childs);
+}
+
+static void remove_all()
+{
+ for (int i = 0; i < MAX_WINDOWS; i++) {
+ remove_window(&windows[i]);
+ }
+}
+
static struct element *element_at(struct element *container, int x, int y)
{
if (!container || !container->childs || !container->childs->head)
@@ -516,6 +539,10 @@ void gui_event_loop(struct element *container)
}
switch (msg->type) {
+ case GUI_KILL: {
+ remove_all();
+ exit(0);
+ }
case GUI_MOUSE: {
struct gui_event_mouse *event = msg->data;
focused = element_at(container, event->x, event->y);
@@ -564,6 +591,8 @@ void gui_event_loop(struct element *container)
}
}
}
+
+ exit(1);
}
struct element *gui_init(const char *title, u32 width, u32 height, u32 color_bg)
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index e44f566..331d8b1 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -13,7 +13,7 @@
#define MAX_INPUT_LENGTH 100
// TODO: Improve event types (maybe as struct header)
-enum window_event_type { GUI_KEYBOARD = GFX_MAX + 1, GUI_MOUSE, GUI_RESIZE, GUI_MAX };
+enum window_event_type { GUI_KILL, GUI_KEYBOARD = GFX_MAX + 1, GUI_MOUSE, GUI_RESIZE, GUI_MAX };
enum element_type {
GUI_TYPE_ROOT,
GUI_TYPE_CONTAINER,