mirror of
https://github.com/swaywm/sway.git
synced 2026-04-30 06:46:24 -04:00
Merge 60b3b87edd into 2e755cf13f
This commit is contained in:
commit
09de1359fc
6 changed files with 181 additions and 82 deletions
|
|
@ -11,6 +11,8 @@ extern swayc_t root_container;
|
|||
extern int min_sane_w;
|
||||
extern int min_sane_h;
|
||||
|
||||
extern swayc_t *scratchpad;
|
||||
|
||||
void init_layout(void);
|
||||
|
||||
void add_child(swayc_t *parent, swayc_t *child);
|
||||
|
|
@ -21,7 +23,8 @@ swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
|||
swayc_t *remove_child(swayc_t *child);
|
||||
void swap_container(swayc_t *a, swayc_t *b);
|
||||
|
||||
void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction);
|
||||
void move_container_to_direction(swayc_t* container,swayc_t* root,enum movement_direction direction);
|
||||
void move_container_to(swayc_t* container, swayc_t* destination);
|
||||
|
||||
// Layout
|
||||
void update_geometry(swayc_t *view);
|
||||
|
|
@ -33,4 +36,6 @@ swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_directio
|
|||
|
||||
void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge);
|
||||
|
||||
void view_set_floating(swayc_t *view, bool floating);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue