diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-03-03 18:36:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-14 09:53:16 +0800 |
commit | 19eea41c74154855cb68ee3a1fb41e2ec136b764 (patch) | |
tree | 4c638c63b1bdca7a2352795c1da0e30fc5b14e7e /e-util/e-util.h | |
parent | 3d95369f38b22dea1fc22bb3f2cf306ae82aed9d (diff) | |
download | gsoc2013-evolution-19eea41c74154855cb68ee3a1fb41e2ec136b764.tar.gz gsoc2013-evolution-19eea41c74154855cb68ee3a1fb41e2ec136b764.tar.zst gsoc2013-evolution-19eea41c74154855cb68ee3a1fb41e2ec136b764.zip |
clean up the 'express' mode hooks for UI Managers and start to
extend them to plugins - use a simple one-off boolean on the UI Manager
instead of exhaustively trying to propagate this information everywhere.
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index 5d369595bb..34c02a2507 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -65,9 +65,14 @@ GtkActionGroup *e_lookup_action_group (GtkUIManager *ui_manager, const gchar *group_name); void e_load_ui_builder_definition (GtkBuilder *builder, const gchar *basename); +void e_load_ui_manager_set_express (GtkUIManager *ui_manager, + gboolean express); guint e_load_ui_manager_definition (GtkUIManager *ui_manager, - const gchar *basename, - gboolean express); + const gchar *basename); +guint e_load_ui_manager_definition_from_string + (GtkUIManager *ui_manager, + const gchar *ui_string, + GError **error); gint e_action_compare_by_label (GtkAction *action1, GtkAction *action2); void e_action_group_remove_all_actions |