diff options
Diffstat (limited to 'apps/test.c')
-rw-r--r-- | apps/test.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/apps/test.c b/apps/test.c index efc7432..93ee07a 100644 --- a/apps/test.c +++ b/apps/test.c @@ -1,16 +1,26 @@ // MIT License, Copyright (c) 2020 Marvin Borner +#include <conv.h> #include <def.h> #include <gui.h> #include <print.h> +#include <str.h> int main() { print("[test loaded]\n"); struct window *win = gui_new_window(); - u32 color[3] = { 0xff, 0xff, 0xff }; - gui_fill(win, color); + + const u32 background[3] = { 0x28, 0x2c, 0x34 }; + gui_fill(win, background); + const u32 border[3] = { 0xab, 0xb2, 0xbf }; + gui_border(win, border, 2); + const u32 text[3] = { 0xab, 0xb2, 0xbf }; + + gui_init("/font/spleen-12x24.psfu"); + char *hello = "Hello, world!"; + gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, text, hello); while (1) { yield(); |