summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam NAILI2017-12-09 02:38:36 +0100
committerAdam NAILI2017-12-09 02:38:36 +0100
commit16b67f89eccc78ed6d04f889cae8c2e5c2a3b49d (patch)
treedfaeecc1a47e1a72713e453ef2e4be8f893614d3 /include
parentc9f0cce6b9e6c50fdda1cb94a6ac1831264ab020 (diff)
downloadmorpher-16b67f89eccc78ed6d04f889cae8c2e5c2a3b49d.tar.gz
Rework of the structure Window
Diffstat (limited to 'include')
-rw-r--r--include/gui/window.h5
1 files changed, 4 insertions, 1 deletions
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 @@
9 * The famous OS 9 * The famous OS
10 */ 10 */
11 11
12#include "group.h"
13
12/** 14/**
13 * Type: ClickHandler 15 * Type: ClickHandler
14 * Type of functions that handle mouse's clicks. 16 * Type of functions that handle mouse's clicks.
@@ -37,7 +39,8 @@ typedef struct {
37 */ 39 */
38typedef struct { 40typedef struct {
39 int width, height; 41 int width, height;
40 Component *components; 42 Group *group_buttons;
43 Group *group_images;
41} Window; 44} Window;
42 45
43/** 46/**