summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Nicolas Cornu <ncornu@aldebaran.com>2016-10-06 20:23:46 +0200
committerLibravatar Nicolas Cornu <ncornu@aldebaran.com>2016-10-06 20:23:46 +0200
commit37065cd0c4faa6757f1f53bfd5c2bf8b521edc7c (patch)
tree3f70c9beb4f0ed4e588652969e9e9bcbdaa53adc /include
parentMerge pull request #928 from wasamasa/bugfix-swaylock-font (diff)
downloadsway-37065cd0c4faa6757f1f53bfd5c2bf8b521edc7c.tar.gz
sway-37065cd0c4faa6757f1f53bfd5c2bf8b521edc7c.tar.zst
sway-37065cd0c4faa6757f1f53bfd5c2bf8b521edc7c.zip
add click on title_bar to focus a container
Diffstat (limited to 'include')
-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);
243 * Finds the container currently underneath the pointer. 243 * Finds the container currently underneath the pointer.
244 */ 244 */
245swayc_t *container_under_pointer(void); 245swayc_t *container_under_pointer(void);
246/**
247 * Finds the first container following a callback.
248 */
249swayc_t *container_find(swayc_t *container, bool (*f)(swayc_t *, const void *), const void *data);
246 250
247/** 251/**
248 * Returns true if a container is fullscreen. 252 * Returns true if a container is fullscreen.