2009-02-14 02:33:31 +01: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 19:04:45 +01:00
|
|
|
#ifndef _COMMANDS_H
|
|
|
|
#define _COMMANDS_H
|
|
|
|
|
2009-05-09 17:48:35 +02:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2009-06-29 21:54:51 +02:00
|
|
|
bool focus_window_in_container(xcb_connection_t *conn, Container *container,
|
|
|
|
direction_t direction);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
/** Switches to the given workspace */
|
2009-03-15 17:49:25 +01:00
|
|
|
void show_workspace(xcb_connection_t *conn, int workspace);
|
2009-04-07 19:02:07 +02:00
|
|
|
|
|
|
|
/** Parses a command, see file CMDMODE for more information */
|
2009-02-13 19:04:45 +01:00
|
|
|
void parse_command(xcb_connection_t *conn, const char *command);
|
|
|
|
|
|
|
|
#endif
|