summaryrefslogtreecommitdiff
path: root/include/gui/group.h
diff options
context:
space:
mode:
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