aboutsummaryrefslogtreecommitdiff
path: root/include/move.h
blob: 830488b03344c716f9a015b7ae2e2acedc467205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * vim:ts=4:sw=4:expandtab
 *
 * i3 - an improved dynamic tiling window manager
 * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
 *
 * move.c: Moving containers into some direction.
 *
 */
#pragma once

#include <config.h>

/**
 * Moves the given container in the given direction
 *
 */
void tree_move(Con *con, direction_t direction);

/**
 * This function detaches 'con' from its parent and inserts it either before or
 * after 'target'.
 *
 */
void insert_con_into(Con *con, Con *target, position_t position);