From 16b67f89eccc78ed6d04f889cae8c2e5c2a3b49d Mon Sep 17 00:00:00 2001 From: Adam NAILI Date: Sat, 9 Dec 2017 02:38:36 +0100 Subject: Rework of the structure Window --- include/gui/window.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/gui/window.h b/include/gui/window.h index c7e12cf..6ccf00a 100644 --- a/include/gui/window.h +++ b/include/gui/window.h @@ -9,6 +9,8 @@ * The famous OS */ +#include "group.h" + /** * Type: ClickHandler * Type of functions that handle mouse's clicks. @@ -37,7 +39,8 @@ typedef struct { */ typedef struct { int width, height; - Component *components; + Group *group_buttons; + Group *group_images; } Window; /** -- cgit v1.2.3