diff options
author | Marvin Borner | 2020-12-06 19:22:28 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-06 19:22:28 +0100 |
commit | 9d59c47aed2395c16f417477a62156282a584c6c (patch) | |
tree | 9ec30a6aecf2fd49b233051cacc05361e2b16cb0 /apps | |
parent | 65e9f58ba4aa3fccceee7b7e71004305eaaa4574 (diff) |
Added killing combo
Isn't that dangerous though
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -65,8 +65,6 @@ static void remove_context(struct context *ctx) ctx->fb = NULL; free(ctx); ctx = NULL; - free(ctx); - ctx = NULL; } static struct context *context_at(int x, int y) @@ -132,14 +130,24 @@ static void handle_keyboard(struct event_keyboard *event) if (!focused) return; - struct gui_event_keyboard *msg = malloc(sizeof(*msg)); + // Special key combos + char ch = keymap->map[event->scancode]; + if (event->press && special_keys_pressed & ALT_PRESSED && ch == 'q') { + msg_send(focused->pid, GUI_KILL, NULL); + remove_context(focused); + focused = NULL; + redraw_all(); + return; + } + // Key maps + struct gui_event_keyboard *msg = malloc(sizeof(*msg)); if (special_keys_pressed & SHIFT_PRESSED) msg->ch = keymap->shift_map[event->scancode]; else if (special_keys_pressed & ALT_PRESSED) msg->ch = keymap->alt_map[event->scancode]; else - msg->ch = keymap->map[event->scancode]; + msg->ch = ch; msg->press = event->press; msg->scancode = event->scancode; |