mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
2139001c9f
This was done by hand, so I might have missed things. If anyone knows of a good C style enforcement tool, let me know.
30 lines
770 B
C
30 lines
770 B
C
#ifndef _SWAY_LAYOUT_H
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
#include <wlc/wlc.h>
|
|
#include "list.h"
|
|
#include "container.h"
|
|
|
|
extern swayc_t root_container;
|
|
|
|
void init_layout(void);
|
|
|
|
void add_child(swayc_t *parent, 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);
|
|
swayc_t *remove_child(swayc_t *child);
|
|
|
|
// Layout
|
|
void arrange_windows(swayc_t *container, int width, int height);
|
|
|
|
// Focus
|
|
void unfocus_all(swayc_t *container);
|
|
void focus_view(swayc_t *view);
|
|
void focus_view_for(swayc_t *ancestor, swayc_t *container);
|
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
|
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
|
|
|
|
#endif
|