mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
[MetaWindow] Accessor for the instance part of WM_CLASS property
https://bugzilla.gnome.org/show_bug.cgi?id=613128
This commit is contained in:
@ -8923,8 +8923,8 @@ meta_window_get_description (MetaWindow *window)
|
||||
/**
|
||||
* meta_window_get_wm_class:
|
||||
* @window: a #MetaWindow
|
||||
*
|
||||
* Return the current value of the WM_CLASS X property.
|
||||
*
|
||||
* Return the current value of the name part of WM_CLASS X property.
|
||||
*/
|
||||
const char *
|
||||
meta_window_get_wm_class (MetaWindow *window)
|
||||
@ -8935,6 +8935,21 @@ meta_window_get_wm_class (MetaWindow *window)
|
||||
return window->res_class;
|
||||
}
|
||||
|
||||
/**
|
||||
* meta_window_get_wm_class_instance:
|
||||
* @window: a #MetaWindow
|
||||
*
|
||||
* Return the current value of the instance part of WM_CLASS X property.
|
||||
*/
|
||||
const char *
|
||||
meta_window_get_wm_class_instance (MetaWindow *window)
|
||||
{
|
||||
if (!window)
|
||||
return NULL;
|
||||
|
||||
return window->res_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* meta_window_get_compositor_private:
|
||||
* @window: a #MetaWindow
|
||||
|
Reference in New Issue
Block a user