diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-08-17 00:38:34 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-08-17 00:38:34 -0500 |
| commit | a2c46e0094d78c9476ffaba5b3f364d8c8f24a4b (patch) | |
| tree | 3f31fc1f7f4d7c31620f012adfcb2e629b2d2042 /include | |
| parent | b0f8f18ba6efa34988091995a51e8e522847b493 (diff) | |
Added in basic floating toggling
Diffstat (limited to 'include')
| -rw-r--r-- | include/container.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h index dd934be6..7560ddb8 100644 --- a/include/container.h +++ b/include/container.h @@ -40,12 +40,17 @@ struct sway_container { bool visible; + bool is_floating; + int weight; char *name; list_t *children; + // Special list for floating windows in workspaces + list_t *floating; + struct sway_container *parent; struct sway_container *focused; }; |
