summaryrefslogtreecommitdiff
path: root/include/gui/group.h
diff options
context:
space:
mode:
authorpacien2017-12-04 16:21:26 +0100
committerpacien2017-12-04 16:21:26 +0100
commitcc1f6d08e843a2d80e7d536ff71535aaca15f318 (patch)
tree5291adbec612109da3a3641050dd9dc492093bb1 /include/gui/group.h
parentc202e46b001238de48b500c55f7392c53655d140 (diff)
downloadmorpher-cc1f6d08e843a2d80e7d536ff71535aaca15f318.tar.gz
Add GUI spec draft
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'include/gui/group.h')
-rw-r--r--include/gui/group.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/gui/group.h b/include/gui/group.h
new file mode 100644
index 0000000..6914d55
--- /dev/null
+++ b/include/gui/group.h
@@ -0,0 +1,19 @@
1#ifndef UPEM_MORPHING_GROUP
2#define UPEM_MORPHING_GROUP
3
4/**
5 * File: group.h
6 */
7
8typedef struct {
9 Component component;
10 Component *sub_components;
11} Group;
12
13void group_init(Group *group, int padding);
14
15void group_free(Group *group);
16
17void group_add_component(Group *group, Component *component);
18
19#endif