diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-21 07:24:17 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-21 07:24:17 -0400 |
commit | a436fc17ffe3b8c7a98e8b0f4ae7ec765635d4aa (patch) | |
tree | 100d217f50e6116fbc7823fcb474b1060fde06e6 /include/container.h | |
parent | 0266b0666a837db946bc9bbb599136da0b569320 (diff) | |
parent | 68213d57c5c758d05582ef8a9f0db226ddbaefc7 (diff) |
Merge pull request #105 from Half-Shot/master
Basic 'move' functionality.
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 3598067c..4e21461c 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, @@ -86,6 +87,7 @@ swayc_t *swayc_parent_by_layout(swayc_t *container, enum swayc_layouts); 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); void reset_gaps(swayc_t *view, void *data); |