aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-10-06 14:53:26 -0400
committerGitHub <noreply@github.com>2016-10-06 14:53:26 -0400
commit6fb7d0e30cf7134cc69d6ce0cc116471d6a4f74d (patch)
tree3f70c9beb4f0ed4e588652969e9e9bcbdaa53adc /include/sway
parent0fe23860145af688459e11acfd96ba81cffb2184 (diff)
parent37065cd0c4faa6757f1f53bfd5c2bf8b521edc7c (diff)
Merge pull request #933 from alkino/click_title_bar
add click on title_bar to focus a container
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/container.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/container.h b/include/sway/container.h
index 67b747a0..5e251885 100644
--- a/include/sway/container.h
+++ b/include/sway/container.h
@@ -243,6 +243,10 @@ swayc_t *swayc_active_workspace_for(swayc_t *view);
* Finds the container currently underneath the pointer.
*/
swayc_t *container_under_pointer(void);
+/**
+ * Finds the first container following a callback.
+ */
+swayc_t *container_find(swayc_t *container, bool (*f)(swayc_t *, const void *), const void *data);
/**
* Returns true if a container is fullscreen.