summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Mykyta Holubakha <hilobakho@gmail.com>2016-07-12 13:58:24 +0000
committerLibravatar Mykyta Holubakha <hilobakho@gmail.com>2016-07-21 21:51:20 +0300
commit976e48d79f46fbab02d7af0ae1b6804018774a63 (patch)
treef230178d62aff86bd83181b588e055aa7963d2a6 /include
parentRemove arrange_windows from post-render (diff)
downloadsway-976e48d79f46fbab02d7af0ae1b6804018774a63.tar.gz
sway-976e48d79f46fbab02d7af0ae1b6804018774a63.tar.zst
sway-976e48d79f46fbab02d7af0ae1b6804018774a63.zip
Initial work on window events
Diffstat (limited to 'include')
-rw-r--r--include/ipc-server.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ipc-server.h b/include/ipc-server.h
index aef3aa07..1d199134 100644
--- a/include/ipc-server.h
+++ b/include/ipc-server.h
@@ -18,6 +18,10 @@ void ipc_event_barconfig_update(struct bar_config *bar);
18 */ 18 */
19void ipc_event_mode(const char *mode); 19void ipc_event_mode(const char *mode);
20/** 20/**
21 * Send IPC window change event
22 */
23void ipc_event_window(swayc_t *window, const char *change);
24/**
21 * Sends an IPC modifier event to all listening clients. The modifier event 25 * Sends an IPC modifier event to all listening clients. The modifier event
22 * includes a key 'change' with the value of state and a key 'modifier' with 26 * includes a key 'change' with the value of state and a key 'modifier' with
23 * the name of that modifier. 27 * the name of that modifier.