Merge pull request #735 from Consolatis/feature/clear_action

Allow clearing key/mouse bindings
This commit is contained in:
Johan Malm 2023-02-04 18:59:38 +00:00 committed by GitHub
commit f829a78918
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 115 additions and 18 deletions

View file

@ -28,4 +28,6 @@ struct keybind *keybind_create(const char *keybind);
*/
uint32_t parse_modifier(const char *symname);
bool keybind_the_same(struct keybind *a, struct keybind *b);
#endif /* __LABWC_KEYBIND_H */

View file

@ -48,5 +48,6 @@ enum mouse_event mousebind_event_from_str(const char *str);
uint32_t mousebind_button_from_str(const char *str, uint32_t *modifiers);
enum direction mousebind_direction_from_str(const char *str, uint32_t *modifiers);
struct mousebind *mousebind_create(const char *context);
bool mousebind_the_same(struct mousebind *a, struct mousebind *b);
#endif /* __LABWC_MOUSEBIND_H */