#include #include #include #include #include #define PATH "/bin/" #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; u8 l = strlen(PATH) + strlen(inp) + 1; char *final = malloc(l); strcat(final, PATH); strcat(final, inp); exec(final, 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; gui_event_loop(root); return 0; }