diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-19 17:37:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 17:37:58 -0400 |
commit | 6ec362622841a3efe336daf9e74edca16e4bf984 (patch) | |
tree | cc5389a07ff451e7ad3c0b9ab8479723623e21b0 /include | |
parent | f0fb27aba6b6e4d14fe0ce6e6e7d3dfa3fdf91fa (diff) | |
parent | 81f3fda6fa9b0789c8b40582a4b85b2e9501c185 (diff) |
Merge pull request #2676 from ianyfan/ipc
ipc: add pid information for views in layout tree
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/tree/view.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index 439dc1bf..d10251dd 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -61,6 +61,8 @@ struct sway_view { struct sway_container *container; // NULL if unmapped and transactions finished struct wlr_surface *surface; // NULL for unmapped views + pid_t pid; + // Geometry of the view itself (excludes borders) in layout coordinates double x, y; int width, height; |