]> 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-2014 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 *command, const char *mode);
28
29 /**
30  * Grab the bound keys (tell X to send us keypress events for those keycodes)
31  *
32  */
33 void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch);
34
35 /**
36  * Returns a pointer to the Binding that matches the given xcb event or NULL if
37  * no such binding exists.
38  *
39  */
40 Binding *get_binding_from_xcb_event(xcb_generic_event_t *event);
41
42 /**
43  * Translates keysymbols to keycodes for all bindings which use keysyms.
44  *
45  */
46 void translate_keysyms(void);
47
48 /**
49  * Switches the key bindings to the given mode, if the mode exists
50  *
51  */
52 void switch_mode(const char *new_mode);
53
54 /**
55  * Checks for duplicate key bindings (the same keycode or keysym is configured
56  * more than once). If a duplicate binding is found, a message is printed to
57  * stderr and the has_errors variable is set to true, which will start
58  * i3-nagbar.
59  *
60  */
61 void check_for_duplicate_bindings(struct context *context);
62
63 /**
64  * Runs the given binding and handles parse errors. If con is passed, it will
65  * execute the command binding with that container selected by criteria.
66  * Returns a CommandResult for running the binding's command. Caller should
67  * render tree if needs_tree_render is true. Free with command_result_free().
68  *
69  */
70 CommandResult *run_binding(Binding *bind, Con *con);