diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-03 10:36:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 10:36:16 -0400 |
commit | 5f3c56de2805f11e84e0bb17edc30f455f0a3aaf (patch) | |
tree | 598f2b661eb02e78f78d6cd3f56a9877c23fc2d9 /include/rootston | |
parent | ddba002d2ac8060863db622c5391dc4b10f40760 (diff) | |
parent | eadda29e841383c6649e8f85494516aff00b493f (diff) | |
download | wlroots-5f3c56de2805f11e84e0bb17edc30f455f0a3aaf.tar.xz |
Merge pull request #184 from emersion/rootston-keys
Keyboard modifiers
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/config.h | 9 | ||||
-rw-r--r-- | include/rootston/input.h | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h index 0832d88d..ece11829 100644 --- a/include/rootston/config.h +++ b/include/rootston/config.h @@ -18,6 +18,14 @@ struct device_config { struct wl_list link; }; +struct binding_config { + uint32_t modifiers; + xkb_keysym_t *keysyms; + size_t keysyms_len; + char *command; + struct wl_list link; +}; + struct roots_config { // TODO: Multiple cursors, multiseat struct { @@ -27,6 +35,7 @@ struct roots_config { struct wl_list outputs; struct wl_list devices; + struct wl_list bindings; char *config_path; }; diff --git a/include/rootston/input.h b/include/rootston/input.h index ecd53f3b..6161eb7a 100644 --- a/include/rootston/input.h +++ b/include/rootston/input.h @@ -10,11 +10,15 @@ #include "rootston/view.h" #include "rootston/server.h" +#define ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP 32 + struct roots_keyboard { struct roots_input *input; struct wlr_input_device *device; struct wl_listener key; struct wl_list link; + + xkb_keysym_t pressed_keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP]; }; struct roots_pointer { |