aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-10-31 20:26:52 +0100
committerMarvin Borner2020-10-31 20:26:52 +0100
commit72010e198d1a5841b27a42e50a58a86142eb5cd7 (patch)
tree203fe702d9e9be99bf7d19a5e09d353b8ea169d4 /apps
parent05901d834ec72ac753ba5d16057f907a5aa38fbc (diff)
Added label, text input and more events
Diffstat (limited to 'apps')
-rw-r--r--apps/window.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/window.c b/apps/window.c
index a69b6db..9342009 100644
--- a/apps/window.c
+++ b/apps/window.c
@@ -19,11 +19,13 @@ int main()
struct element *root = gui_init("test", 600, 400);
struct element *container =
- gui_add_container(root, 100, 0, root->ctx->width / 2, root->ctx->height, COLOR_RED);
- struct element_button *button =
- gui_add_button(container, 10, 10, FONT_24, "Baum!", COLOR_WHITE, COLOR_BLACK)->data;
+ gui_add_container(root, 0, 0, root->ctx->width / 2, root->ctx->height, COLOR_RED);
+ struct element *button =
+ gui_add_button(container, 10, 10, FONT_24, "Button", COLOR_WHITE, COLOR_BLACK);
+ struct element *text_input =
+ gui_add_text_input(container, 10, 50, 200, FONT_24, COLOR_WHITE, COLOR_BLACK);
- button->on_click = on_click;
+ button->event.on_click = on_click;
gui_event_loop(root);