diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2017-01-07 17:41:15 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2017-01-07 17:41:15 +0100 |
| commit | c8d7158294fa77a03a81e616772058358cb80e03 (patch) | |
| tree | c10ce0c530bc0900bd2b9744afcede424a763077 /include | |
| parent | 2d4d1a4cdb01449a854adc6488e2ef3824e632d4 (diff) | |
Moved auto_* layout functions from resize.c to layout.c
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/layout.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/layout.h b/include/sway/layout.h index d7fe748d..c51fece9 100644 --- a/include/sway/layout.h +++ b/include/sway/layout.h @@ -76,5 +76,9 @@ void swayc_log(log_importance_t verbosity, swayc_t *cont, const char* format, .. enum swayc_layouts default_layout(swayc_t *output); bool is_auto_layout(enum swayc_layouts layout); +int auto_group_start_index(swayc_t *container, int index); +int auto_group_end_index(swayc_t *container, int index); +size_t auto_group_count(swayc_t *container); +size_t auto_group_index(swayc_t *container, int index); #endif |
