diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-07-21 14:59:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-21 14:59:57 -0400 |
commit | 464239f7ac11d32a6f10b8517b8410a2eb9b493a (patch) | |
tree | 96929d8f1b16ad0b5773b1776484caba858c77a5 /sway/handlers.c | |
parent | 095353d91db1467cb0366cfe68773d679d029370 (diff) | |
parent | f022628a2ef56ea296232b8e7bd7b73a6ce0df63 (diff) | |
download | sway-464239f7ac11d32a6f10b8517b8410a2eb9b493a.tar.xz |
Merge pull request #776 from Hummer12007/window-events
[RFC] Implement window events
Diffstat (limited to 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index b95a6e65..abed8cd7 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -369,6 +369,7 @@ static bool handle_view_created(wlc_handle handle) { suspend_workspace_cleanup = true; if (newview) { + ipc_event_window(newview, "new"); set_focused_container(newview); swayc_t *output = swayc_parent_by_type(newview, C_OUTPUT); arrange_windows(output, -1, -1); @@ -461,6 +462,7 @@ static void handle_view_destroyed(wlc_handle handle) { } arrange_windows(parent, -1, -1); + ipc_event_window(parent, "close"); } else { // Is it unmanaged? int i; @@ -555,6 +557,7 @@ static void handle_view_properties_updated(wlc_handle view, uint32_t mask) { } else if (c->border_type == B_NORMAL) { update_view_border(c); } + ipc_event_window(c, "title"); } } } |