summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-08-01 07:27:12 -0400
committerLibravatar GitHub <noreply@github.com>2016-08-01 07:27:12 -0400
commit2d907ef1f6f13a7921c295502d7b1047945cc327 (patch)
treef9326301b2dddf573d37612c7926dcb6248c913f /include
parentMerge pull request #812 from zandrmartin/floating-fullscreen-size-fix (diff)
parentUpdate view border when workspace is focused (diff)
downloadsway-2d907ef1f6f13a7921c295502d7b1047945cc327.tar.gz
sway-2d907ef1f6f13a7921c295502d7b1047945cc327.tar.zst
sway-2d907ef1f6f13a7921c295502d7b1047945cc327.zip
Merge pull request #811 from acrisci/feature/focus-container
Implement focus handling for containers
Diffstat (limited to 'include')
-rw-r--r--include/border.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/border.h b/include/border.h
index b629ba46..b72dc5dc 100644
--- a/include/border.h
+++ b/include/border.h
@@ -16,8 +16,12 @@ struct border {
16 */ 16 */
17void border_clear(struct border *border); 17void border_clear(struct border *border);
18 18
19/**
20 * Recursively update all of the borders within a container.
21 */
22void update_container_border(swayc_t *container);
23
19void render_view_borders(wlc_handle view); 24void render_view_borders(wlc_handle view);
20void update_view_border(swayc_t *view);
21void map_update_view_border(swayc_t *view, void *data); 25void map_update_view_border(swayc_t *view, void *data);
22int get_font_text_height(const char *font); 26int get_font_text_height(const char *font);
23bool should_hide_top_border(swayc_t *con, double y); 27bool should_hide_top_border(swayc_t *con, double y);