diff options
author | Half-Shot <[email protected]> | 2015-08-20 21:27:38 +0100 |
---|---|---|
committer | Half-Shot <[email protected]> | 2015-08-20 21:29:40 +0100 |
commit | 2a62c5c7fb71fc815663281793ba6a89d2b246ed (patch) | |
tree | 88928911011bf8c1726198a7cbed8e21bb140253 /include/container.h | |
parent | f314d951039031fd7f0bd8772b6916587ebb0846 (diff) |
Basic left right move command implemented.
Diffstat (limited to 'include/container.h')
-rw-r--r-- | include/container.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h index 186ee8b6..63529e44 100644 --- a/include/container.h +++ b/include/container.h @@ -15,6 +15,7 @@ enum swayc_types{ C_TYPES, }; + enum swayc_layouts{ L_NONE, L_HORIZ, @@ -75,6 +76,7 @@ swayc_t *destroy_view(swayc_t *view); swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data); void container_map(swayc_t *, void (*f)(swayc_t *, void *), void *); + // Mappings void set_view_visibility(swayc_t *view, void *data); |