aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-12-06 19:22:28 +0100
committerMarvin Borner2020-12-06 19:22:28 +0100
commit9d59c47aed2395c16f417477a62156282a584c6c (patch)
tree9ec30a6aecf2fd49b233051cacc05361e2b16cb0 /apps
parent65e9f58ba4aa3fccceee7b7e71004305eaaa4574 (diff)
Added killing combo
Isn't that dangerous though
Diffstat (limited to 'apps')
-rw-r--r--apps/wm.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 04947a4..de34c67 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -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;