]> git.sur5r.net Git - i3/i3/blob - include/commands.h
updated doxygen docu, added FIXMEs, fixed headers to 80chars width.
[i3/i3] / include / commands.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #ifndef _COMMANDS_H
12 #define _COMMANDS_H
13
14 #include <xcb/xcb.h>
15
16 bool focus_window_in_container(xcb_connection_t *conn, Container *container,
17                                direction_t direction);
18
19 /** Switches to the given workspace */
20 void show_workspace(xcb_connection_t *conn, int workspace);
21
22 /** Parses a command, see file CMDMODE for more information */
23 void parse_command(xcb_connection_t *conn, const char *command);
24
25 #endif