application: new 'insert action group' private api

Add a new private API to GtkApplication akin to
gtk_widget_insert_action_group().

We'll use this to insert a few extra actions at the app level with a
separate namespace for the special items in the Mac OS application menu.

https://bugzilla.gnome.org/show_bug.cgi?id=720552
This commit is contained in:
Ryan Lortie
2014-01-15 01:21:29 -05:00
parent 5d63ee8e0e
commit 6da7b11ff6
2 changed files with 12 additions and 0 deletions

View File

@ -1545,6 +1545,14 @@ gtk_application_get_action_muxer (GtkApplication *application)
return application->priv->muxer;
}
void
gtk_application_insert_action_group (GtkApplication *application,
const gchar *name,
GActionGroup *action_group)
{
gtk_action_muxer_insert (application->priv->muxer, name, action_group);
}
void
gtk_application_handle_window_realize (GtkApplication *application,
GtkWindow *window)

View File

@ -53,6 +53,10 @@ void gtk_application_foreach_accel_keys (GtkAppl
gpointer user_data);
G_GNUC_INTERNAL
GtkActionMuxer * gtk_application_get_action_muxer (GtkApplication *application);
G_GNUC_INTERNAL
void gtk_application_insert_action_group (GtkApplication *application,
const gchar *name,
GActionGroup *action_group);
#define GTK_TYPE_APPLICATION_IMPL (gtk_application_impl_get_type ())