From c9f89174b9ce73ed93bfad14d57b8f1a43db6bf6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 25 Oct 2020 13:20:35 +0100 Subject: Added gui event loop and onclick listener --- apps/window.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'apps/window.c') diff --git a/apps/window.c b/apps/window.c index 601f187..ffd860d 100644 --- a/apps/window.c +++ b/apps/window.c @@ -8,19 +8,22 @@ #include #include +void on_click() +{ + print("CLICK!\n"); +} + int main() { print("[test context loaded]\n"); struct element *container = gui_init("test", 0, 0); - gui_add_button(container, 10, 10, 100, 20, "hallo", COLOR_RED); + struct element_button *button = + gui_add_button(container, 10, 10, 100, 20, "hallo", COLOR_RED); + + button->on_click = on_click; + + gui_event_loop(container); - struct message *msg; - while (1) { - if (!(msg = msg_receive())) { - yield(); - continue; - } - } return 0; } -- cgit v1.2.3