X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fbindings.h;h=da81de248df085ba63509b9bb5eb978e64d8fef3;hb=a2b20c8d9a57c636e4bffcfc206402c678abf4ce;hp=e2acc313485a805898a90ccac2ba922e858db2fb;hpb=ee7582169944e601b54a24ee30b634a8824b6571;p=i3%2Fi3 diff --git a/include/bindings.h b/include/bindings.h index e2acc313..da81de24 100644 --- a/include/bindings.h +++ b/include/bindings.h @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2014 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * bindings.h: Functions for configuring, finding, and running bindings. * @@ -24,13 +24,21 @@ 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 *border, const char *whole_window, + const char *command, const char *mode, bool pango_markup); /** * Grab the bound keys (tell X to send us keypress events for those keycodes) * */ -void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch); +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 @@ -51,6 +59,21 @@ void translate_keysyms(void); */ void switch_mode(const char *new_mode); +/** + * Reorders bindings by event_state_mask descendingly so that get_binding() + * correctly matches more specific bindings before more generic bindings. Take + * the following binding configuration as an example: + * + * bindsym n nop lower-case n pressed + * bindsym Shift+n nop upper-case n pressed + * + * Without reordering, the first binding’s event_state_mask of 0x0 would match + * the actual event_stat_mask of 0x1 and hence trigger instead of the second + * keybinding. + * + */ +void reorder_bindings(void); + /** * 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 @@ -60,6 +83,11 @@ void switch_mode(const char *new_mode); */ 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. @@ -68,3 +96,18 @@ void check_for_duplicate_bindings(struct context *context); * */ CommandResult *run_binding(Binding *bind, Con *con); + +/** + * Loads the XKB keymap from the X11 server and feeds it to xkbcommon. + * + */ +bool load_keymap(void); + +/** + * Returns true if the current config has any binding to a scroll wheel button + * (4 or 5) which is a whole-window binding. + * We need this to figure out whether we should grab all buttons or just 1-3 + * when managing a window. See #2049. + * + */ +bool bindings_should_grab_scrollwheel_buttons(void);