aboutsummaryrefslogtreecommitdiff
path: root/apps/exec.c
diff options
context:
space:
mode:
authorMarvin Borner2020-10-31 21:50:43 +0100
committerMarvin Borner2020-10-31 21:50:43 +0100
commitc35a83655707c9aae8f728eb850255ad0f115d11 (patch)
tree4f507c4cf9f7542d7fe32320fcf106a8660f828a /apps/exec.c
parent66779122ad298b27315b435339ca83960c6c2d41 (diff)
Added 'exec' demo program
Diffstat (limited to 'apps/exec.c')
-rw-r--r--apps/exec.c29
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;
+}