aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-08-01 07:27:12 -0400
committerGitHub <noreply@github.com>2016-08-01 07:27:12 -0400
commit2d907ef1f6f13a7921c295502d7b1047945cc327 (patch)
treef9326301b2dddf573d37612c7926dcb6248c913f /include
parentc6f9767487282cb68c0496ca7115a3acc4a4d6e2 (diff)
parentfe608c80ae66d77f826ca077bd1c6a4fa7db3dd6 (diff)
downloadsway-2d907ef1f6f13a7921c295502d7b1047945cc327.tar.xz
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 {
*/
void border_clear(struct border *border);
+/**
+ * Recursively update all of the borders within a container.
+ */
+void update_container_border(swayc_t *container);
+
void render_view_borders(wlc_handle view);
-void update_view_border(swayc_t *view);
void map_update_view_border(swayc_t *view, void *data);
int get_font_text_height(const char *font);
bool should_hide_top_border(swayc_t *con, double y);