mirror of
https://github.com/swaywm/sway.git
synced 2025-11-26 06:59:59 -05:00
xwayland: populate window_properties in json for views
window_properties is documented to contain a subset of the X11 properties of a window (its title, class, instance, role, and transient ID). This commit adds the missing json object from the get_tree output for xwayland windows only. This is a follow-up of #2911. Signed-off-by: Franklin "Snaipe" Mathieu <me@snai.pe>
This commit is contained in:
parent
429787510e
commit
8fc9328334
4 changed files with 38 additions and 0 deletions
|
|
@ -116,6 +116,13 @@ uint32_t view_get_x11_window_id(struct sway_view *view) {
|
|||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint32_t view_get_x11_parent_id(struct sway_view *view) {
|
||||
if (view->impl->get_int_prop) {
|
||||
return view->impl->get_int_prop(view, VIEW_PROP_X11_PARENT_ID);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
const char *view_get_window_role(struct sway_view *view) {
|
||||
if (view->impl->get_string_prop) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue