]> git.sur5r.net Git - i3/i3/blob - include/bindings.h
Merge branch 'master' into next
[i3/i3] / include / bindings.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * bindings.h: Functions for configuring, finding, and running bindings.
8  *
9  */
10 #pragma once
11
12 extern pid_t command_error_nagbar_pid;
13
14 /**
15  * The name of the default mode.
16  *
17  */
18 const char *DEFAULT_BINDING_MODE;
19
20 /**
21  * Adds a binding from config parameters given as strings and returns a
22  * pointer to the binding structure. Returns NULL if the input code could not
23  * be parsed.
24  *
25  */
26 Binding *configure_binding(const char *bindtype, const char *modifiers, const char *input_code,
27                            const char *release, const char *border, const char *whole_window,
28                            const char *command, const char *mode);
29
30 /**
31  * Grab the bound keys (tell X to send us keypress events for those keycodes)
32  *
33  */
34 void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch);
35
36 /**
37  * Returns a pointer to the Binding that matches the given xcb event or NULL if
38  * no such binding exists.
39  *
40  */
41 Binding *get_binding_from_xcb_event(xcb_generic_event_t *event);
42
43 /**
44  * Translates keysymbols to keycodes for all bindings which use keysyms.
45  *
46  */
47 void translate_keysyms(void);
48
49 /**
50  * Switches the key bindings to the given mode, if the mode exists
51  *
52  */
53 void switch_mode(const char *new_mode);
54
55 /**
56  * Checks for duplicate key bindings (the same keycode or keysym is configured
57  * more than once). If a duplicate binding is found, a message is printed to
58  * stderr and the has_errors variable is set to true, which will start
59  * i3-nagbar.
60  *
61  */
62 void check_for_duplicate_bindings(struct context *context);
63
64 /**
65  * Frees the binding. If bind is null, it simply returns.
66  */
67 void binding_free(Binding *bind);
68
69 /**
70  * Runs the given binding and handles parse errors. If con is passed, it will
71  * execute the command binding with that container selected by criteria.
72  * Returns a CommandResult for running the binding's command. Caller should
73  * render tree if needs_tree_render is true. Free with command_result_free().
74  *
75  */
76 CommandResult *run_binding(Binding *bind, Con *con);