sway/include/layout.h

33 lines
919 B
C
Raw Normal View History

#ifndef _SWAY_LAYOUT_H
#define _SWAY_LAYOUT_H
#include <wlc/wlc.h>
#include "list.h"
#include "container.h"
#include "focus.h"
2015-08-08 21:44:51 +00:00
extern swayc_t root_container;
2015-08-06 12:40:16 +00:00
void init_layout(void);
2015-08-08 22:17:08 +00:00
void add_child(swayc_t *parent, swayc_t *child);
2015-08-19 07:28:53 +00:00
void add_floating(swayc_t *ws, swayc_t *child);
// Returns parent container which needs to be rearranged.
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
2015-08-18 09:46:14 +00:00
swayc_t *remove_child(swayc_t *child);
// Layout
2015-08-17 00:28:06 +00:00
void arrange_windows(swayc_t *container, int width, int height);
// Focus
2015-08-10 00:10:26 +00:00
void unfocus_all(swayc_t *container);
2015-08-08 21:44:51 +00:00
void focus_view(swayc_t *view);
2015-08-17 00:28:06 +00:00
void focus_view_for(swayc_t *ancestor, swayc_t *container);
2015-08-17 02:06:31 +00:00
2015-08-09 13:23:10 +00:00
swayc_t *get_focused_container(swayc_t *parent);
2015-08-08 21:44:51 +00:00
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
#endif