From 72010e198d1a5841b27a42e50a58a86142eb5cd7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 31 Oct 2020 20:26:52 +0100 Subject: Added label, text input and more events --- apps/window.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'apps') 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); -- cgit v1.2.3