mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 09:46:08 -05:00
Added meta_window_is_modal()
Queries whether the window is in a modal state, as per the _NET_WM_STATE protocol.
This commit is contained in:
parent
2c8df7d12e
commit
f3e6913d57
@ -8793,3 +8793,19 @@ meta_window_get_client_machine (MetaWindow *window)
|
||||
return window->wm_client_machine;
|
||||
}
|
||||
|
||||
/**
|
||||
* meta_window_is_modal:
|
||||
* @window: a #MetaWindow
|
||||
*
|
||||
* Queries whether the window is in a modal state as described by the
|
||||
* _NET_WM_STATE protocol.
|
||||
*
|
||||
* Return value: (transfer none): TRUE if the window is in modal state.
|
||||
*/
|
||||
gboolean
|
||||
meta_window_is_modal (MetaWindow *window)
|
||||
{
|
||||
g_return_val_if_fail (META_IS_WINDOW (window), FALSE);
|
||||
|
||||
return window->wm_state_modal;
|
||||
}
|
||||
|
@ -116,4 +116,5 @@ void meta_window_delete (MetaWindow *window,
|
||||
guint32 timestamp);
|
||||
int meta_window_get_pid (MetaWindow *window);
|
||||
const char *meta_window_get_client_machine (MetaWindow *window);
|
||||
gboolean meta_window_is_modal (MetaWindow *window);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user