X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fbindings.h;h=19345f8c82ad6c6144d8c7bbde53f849bceb86eb;hb=dd5be77d1dcc7e7eb40ce1c33f985816fc0b8f79;hp=d309790278b8af3f1240e79d10952c203f80757c;hpb=702906d0cf4cce5b850a0f7cc669b78e205ad9aa;p=i3%2Fi3 diff --git a/include/bindings.h b/include/bindings.h index d3097902..19345f8c 100644 --- a/include/bindings.h +++ b/include/bindings.h @@ -9,6 +9,8 @@ */ #pragma once +extern pid_t command_error_nagbar_pid; + /** * The name of the default mode. * @@ -22,7 +24,7 @@ const char *DEFAULT_BINDING_MODE; * */ Binding *configure_binding(const char *bindtype, const char *modifiers, const char *input_code, - const char *release, const char *command, const char *mode); + const char *release, const char *whole_window, const char *command, const char *mode); /** * Grab the bound keys (tell X to send us keypress events for those keycodes) @@ -31,11 +33,11 @@ Binding *configure_binding(const char *bindtype, const char *modifiers, const ch void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch); /** - * Returns a pointer to the keyboard Binding with the specified modifiers and - * keycode or NULL if no such binding exists. + * Returns a pointer to the Binding that matches the given xcb event or NULL if + * no such binding exists. * */ -Binding *get_keyboard_binding(uint16_t modifiers, bool key_release, xcb_keycode_t keycode); +Binding *get_binding_from_xcb_event(xcb_generic_event_t *event); /** * Translates keysymbols to keycodes for all bindings which use keysyms. @@ -48,3 +50,26 @@ void translate_keysyms(void); * */ void switch_mode(const char *new_mode); + +/** + * Checks for duplicate key bindings (the same keycode or keysym is configured + * more than once). If a duplicate binding is found, a message is printed to + * stderr and the has_errors variable is set to true, which will start + * i3-nagbar. + * + */ +void check_for_duplicate_bindings(struct context *context); + +/** + * Frees the binding. If bind is null, it simply returns. + */ +void binding_free(Binding *bind); + +/** + * Runs the given binding and handles parse errors. If con is passed, it will + * execute the command binding with that container selected by criteria. + * Returns a CommandResult for running the binding's command. Caller should + * render tree if needs_tree_render is true. Free with command_result_free(). + * + */ +CommandResult *run_binding(Binding *bind, Con *con);