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/exec.c | |
parent | 66779122ad298b27315b435339ca83960c6c2d41 (diff) |
Added 'exec' demo program
Diffstat (limited to 'apps/exec.c')
-rw-r--r-- | apps/exec.c | 29 |
1 files changed, 29 insertions, 0 deletions
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; +} |