diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-27 04:22:32 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-27 04:22:32 +0800 |
commit | cf3b01017162cbba568ee4317eee2efe5f6fdc10 (patch) | |
tree | 448dc3adee36e401a6aea2ebc1c27a586b14a644 /shell/e-shell-view.h | |
parent | 2ef1b5bf42b5d429e00f94710458f237d18315b2 (diff) | |
download | gsoc2013-evolution-cf3b01017162cbba568ee4317eee2efe5f6fdc10.tar.gz gsoc2013-evolution-cf3b01017162cbba568ee4317eee2efe5f6fdc10.tar.zst gsoc2013-evolution-cf3b01017162cbba568ee4317eee2efe5f6fdc10.zip |
Progress update:
- Further refinements of the shell API.
- Kill ESMenu and EUserCreatableItemsHandler.
- Start ripping apart the addressbook component.
svn path=/branches/kill-bonobo/; revision=36093
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r-- | shell/e-shell-view.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h index 433c02f01a..ed123773fe 100644 --- a/shell/e-shell-view.h +++ b/shell/e-shell-view.h @@ -21,7 +21,8 @@ #ifndef E_SHELL_VIEW_H #define E_SHELL_VIEW_H -#include "e-shell-common.h" +#include <e-shell-common.h> +#include <e-shell-window.h> /* Standard GObject macros */ #define E_TYPE_SHELL_VIEW \ @@ -62,7 +63,7 @@ struct _EShellViewClass { /* Subclasses should set this via the "class_data" field in * the GTypeInfo they pass to g_type_module_register_type(). */ - GTypeModule *module; + GTypeModule *type_module; GtkWidget * (*get_content_widget) (EShellView *shell_view); GtkWidget * (*get_sidebar_widget) (EShellView *shell_view); @@ -74,7 +75,8 @@ const gchar * e_shell_view_get_name (EShellView *shell_view); const gchar * e_shell_view_get_title (EShellView *shell_view); void e_shell_view_set_title (EShellView *shell_view, const gchar *title); -GtkWidget * e_shell_view_get_window (EShellView *shell_view); +EShellWindow * e_shell_view_get_window (EShellView *shell_view); +gboolean e_shell_view_is_selected (EShellView *shell_view); GtkWidget * e_shell_view_get_content_widget (EShellView *shell_view); GtkWidget * e_shell_view_get_sidebar_widget (EShellView *shell_view); GtkWidget * e_shell_view_get_status_widget (EShellView *shell_view); |