aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 7d921e0e..ca84d82e 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -79,6 +79,13 @@ uint32_t view_get_x11_window_id(struct sway_view *view) {
return 0;
}
+const char *view_get_window_role(struct sway_view *view) {
+ if (view->impl->get_string_prop) {
+ return view->impl->get_string_prop(view, VIEW_PROP_WINDOW_ROLE);
+ }
+ return NULL;
+}
+
uint32_t view_get_window_type(struct sway_view *view) {
if (view->impl->get_int_prop) {
return view->impl->get_int_prop(view, VIEW_PROP_WINDOW_TYPE);