aboutsummaryrefslogtreecommitdiff
path: root/example/shared.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-22 11:15:59 -0400
committerDrew DeVault <sir@cmpwn.com>2017-06-22 11:15:59 -0400
commitf5423a51b559a0fc0d51f7a11cdaf82789a058c9 (patch)
treebdf287b0571044e94fb59d38daf999f67472c276 /example/shared.c
parent8ce9237c928a7dc6afb889291237465daf4d6b43 (diff)
Use wl_display_run and refactor example keyboards
Diffstat (limited to 'example/shared.c')
-rw-r--r--example/shared.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/example/shared.c b/example/shared.c
index b9689f1c..c4ec4ffe 100644
--- a/example/shared.c
+++ b/example/shared.c
@@ -42,6 +42,11 @@ static void keyboard_key_notify(struct wl_listener *listener, void *data) {
if (kbstate->compositor->keyboard_key_cb) {
kbstate->compositor->keyboard_key_cb(kbstate, sym, key_state);
}
+ if (sym == XKB_KEY_Escape) {
+ wl_display_terminate(kbstate->compositor->display);
+ } else if (key_state == WLR_KEY_PRESSED && sym >= XKB_KEY_F1 && sym <= XKB_KEY_F12) {
+ wlr_session_change_vt(kbstate->compositor->session, sym - XKB_KEY_F1 + 1);
+ }
}
xkb_state_update_key(kbstate->xkb_state, keycode,
event->state == WLR_KEY_PRESSED ? XKB_KEY_DOWN : XKB_KEY_UP);
@@ -470,10 +475,7 @@ void compositor_init(struct compositor_state *state) {
}
void compositor_run(struct compositor_state *state) {
- while (!state->exit) {
- wl_event_loop_dispatch(state->event_loop, 0);
- }
-
+ wl_display_run(state->display);
wlr_backend_destroy(state->backend);
wlr_session_finish(state->session);
wl_display_destroy(state->display);