Remove unused *_menu_for_rect functions
Unused since 84785951fd0c ("x11: Remove MetaX11WindowControl"). v2: * Leave struct _MetaPluginClass::show_window_menu_for_rect, still used by gnome-shell. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3154>
This commit is contained in:
parent
63a7313a1b
commit
bdad097af1
@ -159,11 +159,6 @@ void meta_compositor_show_window_menu (MetaCompositor *compositor,
|
|||||||
int x,
|
int x,
|
||||||
int y);
|
int y);
|
||||||
|
|
||||||
void meta_compositor_show_window_menu_for_rect (MetaCompositor *compositor,
|
|
||||||
MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This function takes a 64 bit time stamp from the monotonic clock, and clamps
|
* This function takes a 64 bit time stamp from the monotonic clock, and clamps
|
||||||
* it to the scope of the X server clock, without losing the granularity.
|
* it to the scope of the X server clock, without losing the granularity.
|
||||||
|
@ -1529,18 +1529,6 @@ meta_compositor_show_window_menu (MetaCompositor *compositor,
|
|||||||
meta_plugin_manager_show_window_menu (priv->plugin_mgr, window, menu, x, y);
|
meta_plugin_manager_show_window_menu (priv->plugin_mgr, window, menu, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
meta_compositor_show_window_menu_for_rect (MetaCompositor *compositor,
|
|
||||||
MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect)
|
|
||||||
{
|
|
||||||
MetaCompositorPrivate *priv =
|
|
||||||
meta_compositor_get_instance_private (compositor);
|
|
||||||
|
|
||||||
meta_plugin_manager_show_window_menu_for_rect (priv->plugin_mgr, window, menu, rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
MetaCloseDialog *
|
MetaCloseDialog *
|
||||||
meta_compositor_create_close_dialog (MetaCompositor *compositor,
|
meta_compositor_create_close_dialog (MetaCompositor *compositor,
|
||||||
MetaWindow *window)
|
MetaWindow *window)
|
||||||
|
@ -410,22 +410,6 @@ meta_plugin_manager_show_window_menu (MetaPluginManager *plugin_mgr,
|
|||||||
klass->show_window_menu (plugin, window, menu, x, y);
|
klass->show_window_menu (plugin, window, menu, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
meta_plugin_manager_show_window_menu_for_rect (MetaPluginManager *plugin_mgr,
|
|
||||||
MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect)
|
|
||||||
{
|
|
||||||
MetaPlugin *plugin = plugin_mgr->plugin;
|
|
||||||
MetaPluginClass *klass = META_PLUGIN_GET_CLASS (plugin);
|
|
||||||
|
|
||||||
if (!should_start_effect (plugin_mgr))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (klass->show_window_menu_for_rect)
|
|
||||||
klass->show_window_menu_for_rect (plugin, window, menu, rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
MetaCloseDialog *
|
MetaCloseDialog *
|
||||||
meta_plugin_manager_create_close_dialog (MetaPluginManager *plugin_mgr,
|
meta_plugin_manager_create_close_dialog (MetaPluginManager *plugin_mgr,
|
||||||
MetaWindow *window)
|
MetaWindow *window)
|
||||||
|
@ -89,11 +89,6 @@ void meta_plugin_manager_show_window_menu (MetaPluginManager *mgr,
|
|||||||
int x,
|
int x,
|
||||||
int y);
|
int y);
|
||||||
|
|
||||||
void meta_plugin_manager_show_window_menu_for_rect (MetaPluginManager *mgr,
|
|
||||||
MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect);
|
|
||||||
|
|
||||||
MetaCloseDialog * meta_plugin_manager_create_close_dialog (MetaPluginManager *plugin_mgr,
|
MetaCloseDialog * meta_plugin_manager_create_close_dialog (MetaPluginManager *plugin_mgr,
|
||||||
MetaWindow *window);
|
MetaWindow *window);
|
||||||
|
|
||||||
|
@ -720,10 +720,6 @@ void meta_window_show_menu (MetaWindow *window,
|
|||||||
int x,
|
int x,
|
||||||
int y);
|
int y);
|
||||||
|
|
||||||
void meta_window_show_menu_for_rect (MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect);
|
|
||||||
|
|
||||||
GList* meta_window_get_workspaces (MetaWindow *window);
|
GList* meta_window_get_workspaces (MetaWindow *window);
|
||||||
|
|
||||||
void meta_window_get_work_area_for_logical_monitor (MetaWindow *window,
|
void meta_window_get_work_area_for_logical_monitor (MetaWindow *window,
|
||||||
|
@ -5615,15 +5615,6 @@ meta_window_show_menu (MetaWindow *window,
|
|||||||
meta_compositor_show_window_menu (window->display->compositor, window, menu, x, y);
|
meta_compositor_show_window_menu (window->display->compositor, window, menu, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
meta_window_show_menu_for_rect (MetaWindow *window,
|
|
||||||
MetaWindowMenuType menu,
|
|
||||||
MetaRectangle *rect)
|
|
||||||
{
|
|
||||||
g_return_if_fail (!window->override_redirect);
|
|
||||||
meta_compositor_show_window_menu_for_rect (window->display->compositor, window, menu, rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
meta_window_shove_titlebar_onscreen (MetaWindow *window)
|
meta_window_shove_titlebar_onscreen (MetaWindow *window)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user