X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fbindings.h;h=df3c32a5a88c8edea7048a39fb7b8d40aefb1883;hb=eedb25765590460d328f42364cc2396a6fcd9f0e;hp=e9e5dac922f40e5d80602d6cab756d83efc547ad;hpb=82dc747396e5a6814c3bcd66f065c04e68253448;p=i3%2Fi3 diff --git a/include/bindings.h b/include/bindings.h index e9e5dac9..df3c32a5 100644 --- a/include/bindings.h +++ b/include/bindings.h @@ -9,13 +9,15 @@ */ #pragma once +#include + extern pid_t command_error_nagbar_pid; /** * The name of the default mode. * */ -const char *DEFAULT_BINDING_MODE; +extern const char *DEFAULT_BINDING_MODE; /** * Adds a binding from config parameters given as strings and returns a @@ -25,7 +27,8 @@ const char *DEFAULT_BINDING_MODE; */ Binding *configure_binding(const char *bindtype, const char *modifiers, const char *input_code, const char *release, const char *border, const char *whole_window, - const char *command, const char *mode, bool pango_markup); + const char *exclude_titlebar, const char *command, const char *mode, + bool pango_markup); /** * Grab the bound keys (tell X to send us keypress events for those keycodes) @@ -33,6 +36,13 @@ Binding *configure_binding(const char *bindtype, const char *modifiers, const ch */ void grab_all_keys(xcb_connection_t *conn); +/** + * Release the button grabs on all managed windows and regrab them, + * reevaluating which buttons need to be grabbed. + * + */ +void regrab_all_buttons(xcb_connection_t *conn); + /** * Returns a pointer to the Binding that matches the given xcb event or NULL if * no such binding exists. @@ -95,3 +105,12 @@ CommandResult *run_binding(Binding *bind, Con *con); * */ bool load_keymap(void); + +/** + * Returns a list of buttons that should be grabbed on a window. + * This list will always contain 1–3, all higher buttons will only be returned + * if there is a whole-window binding for it on some window in the current + * config. + * The list is terminated by a 0. + */ +int *bindings_get_buttons_to_grab(void);