mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
x11-display: Get _GNOME_WM_KEYBINDINGS from the context
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1861>
This commit is contained in:
parent
7d0aaa14d1
commit
c1beb204c2
@ -47,6 +47,8 @@ struct _MetaContextClass
|
|||||||
|
|
||||||
const char * meta_context_get_name (MetaContext *context);
|
const char * meta_context_get_name (MetaContext *context);
|
||||||
|
|
||||||
|
const char * meta_context_get_gnome_wm_keybindings (MetaContext *context);
|
||||||
|
|
||||||
MetaWaylandCompositor * meta_context_get_wayland_compositor (MetaContext *context);
|
MetaWaylandCompositor * meta_context_get_wayland_compositor (MetaContext *context);
|
||||||
|
|
||||||
#endif /* META_CONTEXT_PRIVATE_H */
|
#endif /* META_CONTEXT_PRIVATE_H */
|
||||||
|
@ -51,6 +51,7 @@ typedef struct _MetaContextPrivate
|
|||||||
char *name;
|
char *name;
|
||||||
char *plugin_name;
|
char *plugin_name;
|
||||||
GType plugin_gtype;
|
GType plugin_gtype;
|
||||||
|
char *gnome_wm_keybindings;
|
||||||
|
|
||||||
GOptionContext *option_context;
|
GOptionContext *option_context;
|
||||||
|
|
||||||
@ -111,6 +112,24 @@ meta_context_set_plugin_name (MetaContext *context,
|
|||||||
priv->plugin_name = g_strdup (plugin_name);
|
priv->plugin_name = g_strdup (plugin_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
meta_context_set_gnome_wm_keybindings (MetaContext *context,
|
||||||
|
const char *wm_keybindings)
|
||||||
|
{
|
||||||
|
MetaContextPrivate *priv = meta_context_get_instance_private (context);
|
||||||
|
|
||||||
|
g_clear_pointer (&priv->gnome_wm_keybindings, g_free);
|
||||||
|
priv->gnome_wm_keybindings = g_strdup (wm_keybindings);
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
meta_context_get_gnome_wm_keybindings (MetaContext *context)
|
||||||
|
{
|
||||||
|
MetaContextPrivate *priv = meta_context_get_instance_private (context);
|
||||||
|
|
||||||
|
return priv->gnome_wm_keybindings;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
meta_context_notify_ready (MetaContext *context)
|
meta_context_notify_ready (MetaContext *context)
|
||||||
{
|
{
|
||||||
@ -462,6 +481,7 @@ meta_context_finalize (GObject *object)
|
|||||||
|
|
||||||
g_clear_pointer (&priv->option_context, g_option_context_free);
|
g_clear_pointer (&priv->option_context, g_option_context_free);
|
||||||
g_clear_pointer (&priv->main_loop, g_main_loop_unref);
|
g_clear_pointer (&priv->main_loop, g_main_loop_unref);
|
||||||
|
g_clear_pointer (&priv->gnome_wm_keybindings, g_free);
|
||||||
g_clear_pointer (&priv->plugin_name, g_free);
|
g_clear_pointer (&priv->plugin_name, g_free);
|
||||||
g_clear_pointer (&priv->name, g_free);
|
g_clear_pointer (&priv->name, g_free);
|
||||||
|
|
||||||
@ -497,6 +517,7 @@ meta_context_init (MetaContext *context)
|
|||||||
MetaContextPrivate *priv = meta_context_get_instance_private (context);
|
MetaContextPrivate *priv = meta_context_get_instance_private (context);
|
||||||
|
|
||||||
priv->plugin_gtype = G_TYPE_NONE;
|
priv->plugin_gtype = G_TYPE_NONE;
|
||||||
|
priv->gnome_wm_keybindings = g_strdup ("Mutter");
|
||||||
|
|
||||||
if (!setlocale (LC_ALL, ""))
|
if (!setlocale (LC_ALL, ""))
|
||||||
g_warning ("Locale not understood by C library");
|
g_warning ("Locale not understood by C library");
|
||||||
|
@ -29,9 +29,6 @@
|
|||||||
META_EXPORT
|
META_EXPORT
|
||||||
gboolean meta_get_replace_current_wm (void); /* Actually defined in util.c */
|
gboolean meta_get_replace_current_wm (void); /* Actually defined in util.c */
|
||||||
|
|
||||||
META_EXPORT
|
|
||||||
void meta_set_gnome_wm_keybindings (const char *wm_keybindings);
|
|
||||||
|
|
||||||
META_EXPORT
|
META_EXPORT
|
||||||
void meta_restart (const char *message);
|
void meta_restart (const char *message);
|
||||||
|
|
||||||
|
@ -51,6 +51,10 @@ META_EXPORT
|
|||||||
void meta_context_set_plugin_name (MetaContext *context,
|
void meta_context_set_plugin_name (MetaContext *context,
|
||||||
const char *plugin_name);
|
const char *plugin_name);
|
||||||
|
|
||||||
|
META_EXPORT
|
||||||
|
void meta_context_set_gnome_wm_keybindings (MetaContext *context,
|
||||||
|
const char *wm_keybindings);
|
||||||
|
|
||||||
META_EXPORT
|
META_EXPORT
|
||||||
gboolean meta_context_configure (MetaContext *context,
|
gboolean meta_context_configure (MetaContext *context,
|
||||||
int *argc,
|
int *argc,
|
||||||
|
@ -82,8 +82,6 @@ typedef struct _MetaX11DisplayLogicalMonitorData
|
|||||||
|
|
||||||
static GdkDisplay *prepared_gdk_display = NULL;
|
static GdkDisplay *prepared_gdk_display = NULL;
|
||||||
|
|
||||||
static const char *gnome_wm_keybindings = "Mutter";
|
|
||||||
|
|
||||||
static char *get_screen_name (Display *xdisplay,
|
static char *get_screen_name (Display *xdisplay,
|
||||||
int number);
|
int number);
|
||||||
|
|
||||||
@ -730,6 +728,7 @@ init_leader_window (MetaX11Display *x11_display,
|
|||||||
guint32 *timestamp)
|
guint32 *timestamp)
|
||||||
{
|
{
|
||||||
MetaContext *context = meta_display_get_context (x11_display->display);
|
MetaContext *context = meta_display_get_context (x11_display->display);
|
||||||
|
const char *gnome_wm_keybindings;
|
||||||
gulong data[1];
|
gulong data[1];
|
||||||
XEvent event;
|
XEvent event;
|
||||||
|
|
||||||
@ -748,6 +747,7 @@ init_leader_window (MetaX11Display *x11_display,
|
|||||||
x11_display->atom__NET_WM_NAME,
|
x11_display->atom__NET_WM_NAME,
|
||||||
meta_context_get_name (context));
|
meta_context_get_name (context));
|
||||||
|
|
||||||
|
gnome_wm_keybindings = meta_context_get_gnome_wm_keybindings (context);
|
||||||
meta_prop_set_utf8_string_hint (x11_display,
|
meta_prop_set_utf8_string_hint (x11_display,
|
||||||
x11_display->leader_window,
|
x11_display->leader_window,
|
||||||
x11_display->atom__GNOME_WM_KEYBINDINGS,
|
x11_display->atom__GNOME_WM_KEYBINDINGS,
|
||||||
@ -1004,21 +1004,6 @@ set_work_area_hint (MetaDisplay *display,
|
|||||||
g_free (data);
|
g_free (data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* meta_set_gnome_wm_keybindings: (skip)
|
|
||||||
* @wm_keybindings: value for _GNOME_WM_KEYBINDINGS
|
|
||||||
*
|
|
||||||
* Set the value to use for the _GNOME_WM_KEYBINDINGS property. To take
|
|
||||||
* effect, it is necessary to call this function before meta_init().
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
meta_set_gnome_wm_keybindings (const char *wm_keybindings)
|
|
||||||
{
|
|
||||||
g_return_if_fail (meta_get_display () == NULL);
|
|
||||||
|
|
||||||
gnome_wm_keybindings = wm_keybindings;
|
|
||||||
}
|
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
meta_x11_get_display_name (void)
|
meta_x11_get_display_name (void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user