Gooey GUI Library
Loading...
Searching...
No Matches
gooey_layout.h
Go to the documentation of this file.
1
12 #ifndef GOOEY_LAYOUT_H
13 #define GOOEY_LAYOUT_H
14
15 #include "common/gooey_common.h"
16
29 GooeyLayout *GooeyLayout_Create(GooeyLayoutType layout_type,
30 int x, int y, int width, int height);
31
41 void GooeyLayout_AddChild(GooeyLayout *layout, void *widget);
42
51 void GooeyLayout_Build(GooeyLayout *layout);
52
53 #endif // GOOEY_LAYOUT_H
54
GooeyLayout * GooeyLayout_Create(GooeyLayoutType layout_type, int x, int y, int width, int height)
Creates a layout.
void GooeyLayout_AddChild(GooeyLayout *layout, void *widget)
Adds a child widget to the specified layout.
void GooeyLayout_Build(GooeyLayout *layout)
Arranges all child widgets within the layout.