mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-07 12:21:17 +00:00
ximagesink: set WM_CLASS of window
Set WM_CLASS of the ximagesink window so window managers can apply rules based on xprop filtering.
This commit is contained in:
parent
c3a19f7851
commit
fc01b3f13f
1 changed files with 8 additions and 0 deletions
|
@ -378,6 +378,7 @@ gst_ximagesink_xwindow_set_title (GstXImageSink * ximagesink,
|
|||
/* we have a window */
|
||||
if (xwindow->internal) {
|
||||
XTextProperty xproperty;
|
||||
XClassHint *hint = XAllocClassHint ();
|
||||
const gchar *app_name;
|
||||
const gchar *title = NULL;
|
||||
gchar *title_mem = NULL;
|
||||
|
@ -403,6 +404,13 @@ gst_ximagesink_xwindow_set_title (GstXImageSink * ximagesink,
|
|||
|
||||
g_free (title_mem);
|
||||
}
|
||||
|
||||
if (hint) {
|
||||
hint->res_name = g_strdup (app_name);
|
||||
hint->res_class = g_strdup ("GStreamer");
|
||||
XSetClassHint (ximagesink->xcontext->disp, xwindow->win, hint);
|
||||
}
|
||||
XFree (hint);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue