2011-02-14 23:05:20 +01:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2011-10-25 22:19:38 +02:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
|
|
|
|
*
|
|
|
|
* move.c: Moving containers into some direction.
|
|
|
|
*
|
2011-02-14 23:05:20 +01:00
|
|
|
*/
|
|
|
|
#ifndef _MOVE_H
|
|
|
|
#define _MOVE_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moves the current container in the given direction (TOK_LEFT, TOK_RIGHT,
|
|
|
|
* TOK_UP, TOK_DOWN from cmdparse.l)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void tree_move(int direction);
|
|
|
|
|
|
|
|
#endif
|