aboutsummaryrefslogtreecommitdiff
path: root/apps/window.c
blob: 835a978720e2822f8b46b267e3d74c4d442cd1fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// MIT License, Copyright (c) 2020 Marvin Borner

#include <conv.h>
#include <def.h>
#include <gfx.h>
#include <gui.h>
#include <input.h>
#include <print.h>
#include <str.h>

void on_click()
{
	print("CLICK!\n");
}

int main()
{
	struct element *root = gui_init("test", 600, 400, COLOR_BG);
	struct element *container = gui_add_container(root, 0, 0, 50, 100, COLOR_RED);
	struct element *button = gui_add_button(container, 10, 10, FONT_24, strdup("Button"),
						COLOR_WHITE, COLOR_BLACK);
	struct element *text_input =
		gui_add_text_input(container, 10, 50, 70, FONT_24, COLOR_WHITE, COLOR_BLACK);
	(void)text_input;

	button->event.on_click = on_click;

	gui_event_loop(root);

	return 0;
}