diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-15 22:55:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-09-15 22:55:41 +0800 |
commit | 7d2c28c02c6ecddcf492f385cacbd3d24ac215db (patch) | |
tree | 938e7a0b30062bbf4dbd180fa4363113018fb7e1 /shell/e-shell.h | |
parent | 8f2b4cc6faf5a2fedbe6e11f340d492d4698072a (diff) | |
download | gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar.gz gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar.bz2 gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar.lz gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar.xz gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.tar.zst gsoc2013-evolution-7d2c28c02c6ecddcf492f385cacbd3d24ac215db.zip |
Begin documenting the new shell design.
svn path=/branches/kill-bonobo/; revision=36337
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index 709e4db170..1500c2bcb4 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -24,6 +24,7 @@ #define E_SHELL_H #include <e-shell-common.h> +#include <e-shell-module.h> /* Standard GObject macros */ #define E_TYPE_SHELL \ @@ -70,6 +71,13 @@ enum _EShellLineStatus { GType e_shell_get_type (void); EShell * e_shell_new (gboolean online); +GList * e_shell_list_modules (EShell *shell); +const gchar * e_shell_get_canonical_name (EShell *shell, + const gchar *name); +EShellModule * e_shell_get_module_by_name (EShell *shell, + const gchar *name); +EShellModule * e_shell_get_module_by_scheme (EShell *shell, + const gchar *scheme); GtkWidget * e_shell_create_window (EShell *shell); gboolean e_shell_handle_uri (EShell *shell, const gchar *uri); |