From e55f8e9039b5be5f3750639dad0ae5058adc8449 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 13 Sep 2020 11:12:20 +0200 Subject: Less malloc in wm --- apps/window.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'apps/window.c') diff --git a/apps/window.c b/apps/window.c index a1311a0..0d503de 100644 --- a/apps/window.c +++ b/apps/window.c @@ -11,14 +11,15 @@ int main() { print("[test window loaded]\n"); - struct window *win = gui_new_window(WF_DEFAULT); + struct window win = { 0 }; + gui_new_window(&win); - gui_fill(win, BG_COLOR); - gui_border(win, FG_COLOR, 2); + gui_fill(&win, BG_COLOR); + gui_border(&win, FG_COLOR, 2); gui_init("/font/spleen-12x24.psfu"); char *hello = "Hello, world!"; - gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, FG_COLOR, hello); + gui_write(&win, win.width / 2 - (strlen(hello) * 12) / 2, 5, FG_COLOR, hello); event_register(EVENT_KEYBOARD); struct message *msg; @@ -44,7 +45,7 @@ int main() char_x = 0; char_y++; } else if (KEY_ALPHABETIC(key)) { - gui_write_char(win, 12 * char_x++, 24 * char_y + 5, FG_COLOR, 'a'); + gui_write_char(&win, 12 * char_x++, 24 * char_y + 5, FG_COLOR, 'a'); } break; -- cgit v1.2.3