2009-02-13 20:33:31 -05:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
*/
|
2009-02-13 13:04:45 -05:00
|
|
|
#ifndef _COMMANDS_H
|
|
|
|
#define _COMMANDS_H
|
|
|
|
|
2009-05-09 11:48:35 -04:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2009-06-29 15:54:51 -04:00
|
|
|
bool focus_window_in_container(xcb_connection_t *conn, Container *container,
|
|
|
|
direction_t direction);
|
2009-04-07 13:02:07 -04:00
|
|
|
|
|
|
|
/** Switches to the given workspace */
|
2009-03-15 12:49:25 -04:00
|
|
|
void show_workspace(xcb_connection_t *conn, int workspace);
|
2009-04-07 13:02:07 -04:00
|
|
|
|
|
|
|
/** Parses a command, see file CMDMODE for more information */
|
2009-02-13 13:04:45 -05:00
|
|
|
void parse_command(xcb_connection_t *conn, const char *command);
|
|
|
|
|
|
|
|
#endif
|