diff options
author | Marvin Borner | 2020-10-31 21:50:43 +0100 |
---|---|---|
committer | Marvin Borner | 2020-10-31 21:50:43 +0100 |
commit | c35a83655707c9aae8f728eb850255ad0f115d11 (patch) | |
tree | 4f507c4cf9f7542d7fe32320fcf106a8660f828a /apps | |
parent | 66779122ad298b27315b435339ca83960c6c2d41 (diff) |
Added 'exec' demo program
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Makefile | 2 | ||||
-rw-r--r-- | apps/exec.c | 29 | ||||
-rw-r--r-- | apps/init.c | 5 | ||||
-rw-r--r-- | apps/window.c | 3 | ||||
-rw-r--r-- | apps/wm.c | 9 |
5 files changed, 37 insertions, 11 deletions
diff --git a/apps/Makefile b/apps/Makefile index 3e4aaa0..99d60e9 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,6 +1,6 @@ # MIT License, Copyright (c) 2020 Marvin Borner -COBJS = init.o wm.o mandelbrot.o window.o test.o +COBJS = init.o wm.o mandelbrot.o window.o exec.o test.o CC = ccache ../cross/opt/bin/i686-elf-gcc LD = ccache ../cross/opt/bin/i686-elf-ld OC = ccache ../cross/opt/bin/i686-elf-objcopy diff --git a/apps/exec.c b/apps/exec.c new file mode 100644 index 0000000..038d2ce --- /dev/null +++ b/apps/exec.c @@ -0,0 +1,29 @@ +#include <gui.h> +#include <print.h> +#include <sys.h> + +#define HEIGHT 32 +#define WIDTH 300 +#define BORDER 2 + +void on_submit(struct gui_event_keyboard *event, struct element *elem) +{ + (void)event; + char *inp = ((struct element_text_input *)elem->data)->text; + exec(inp, inp, NULL); +} + +int main() +{ + struct element *root = + gui_init("Exec", WIDTH + BORDER * 2, HEIGHT + BORDER * 2, COLOR_BLACK); + struct element *input = + gui_add_text_input(root, BORDER, BORDER, WIDTH, FONT_32, COLOR_WHITE, COLOR_BLACK); + + input->event.on_submit = on_submit; + + gfx_redraw_focused(); // TODO: Remove once partial redrawing is finished + gui_event_loop(root); + + return 0; +} diff --git a/apps/init.c b/apps/init.c index 23f0773..73ea745 100644 --- a/apps/init.c +++ b/apps/init.c @@ -11,8 +11,7 @@ int main(int argc, char **argv) /* printf("[%s loaded]\n", argv[0]); */ int wm = exec("/wm", "wm", argv[1], NULL); - int test = exec("/window", "test", NULL); - int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL); + int exec = exec("/exec", "test", NULL); - return wm + mandelbrot + test; + return wm + exec; } diff --git a/apps/window.c b/apps/window.c index 9342009..4f2aec7 100644 --- a/apps/window.c +++ b/apps/window.c @@ -17,13 +17,14 @@ int main() { /* print("[test context loaded]\n"); */ - struct element *root = gui_init("test", 600, 400); + struct element *root = gui_init("test", 600, 400, COLOR_BG); struct element *container = 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); + (void)text_input; button->event.on_click = on_click; @@ -226,14 +226,11 @@ int main(int argc, char **argv) direct.fb = vbe.fb; list_add(contexts, &root); - //gfx_fill(&direct, COLOR_BG); - //gfx_write(&direct, 0, 0, FONT_32, COLOR_FG, "Welcome to Melvix!"); - //gfx_write(&direct, 0, 32, FONT_32, COLOR_FG, "Loading resources..."); - + /* gfx_write(&direct, 0, 0, FONT_32, COLOR_FG, "Welcome to Melvix!"); */ + /* gfx_write(&direct, 0, 32, FONT_32, COLOR_FG, "Loading resources..."); */ gfx_fill(&root, COLOR_FG); - //gfx_border(&root, COLOR_FG, 2); + /* gfx_load_wallpaper(&root, "/res/wall.bmp"); */ gfx_load_image(&cursor, "/res/cursor.bmp", 0, 0); - //gfx_load_wallpaper(&root, "/res/wall.bmp"); redraw_all(); event_register(EVENT_MOUSE); |