diff options
author | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 07:40:42 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 07:40:42 +0800 |
commit | 9964204c9c080650f79863a483a4c42886d55239 (patch) | |
tree | 3c0693385a73461319ab94b63fb15cbe80ae88e5 /shell/e-shell.h | |
parent | 5678a57e33c55ab2622a3fbb823b42e4f80c31cc (diff) | |
download | gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.gz gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.zst gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.zip |
The Commit from hell that breaks all UI related stuff;
Anything UI related that breaks is now my fault; apologies in advance.
svn path=/trunk/; revision=5415
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index ca63c4776d..b3a5d80c98 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -30,14 +30,19 @@ #include <bonobo/bonobo-object.h> -#include "Evolution.h" -#include "e-shortcuts.h" - #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus */ +typedef struct _EShell EShell; +typedef struct _EShellPrivate EShellPrivate; +typedef struct _EShellClass EShellClass; + +#include "Evolution.h" +#include "e-shortcuts.h" +#include "e-shell-view.h" + #define E_TYPE_SHELL (e_shell_get_type ()) #define E_SHELL(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SHELL, EShell)) #define E_SHELL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SHELL, EShellClass)) @@ -45,9 +50,6 @@ extern "C" { #define E_IS_SHELL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_SHELL)) -typedef struct _EShell EShell; -typedef struct _EShellPrivate EShellPrivate; -typedef struct _EShellClass EShellClass; struct _EShell { BonoboObject parent; @@ -68,7 +70,7 @@ void e_shell_construct (EShell *shell, const char *local_directory); EShell *e_shell_new (const char *local_directory); -GtkWidget *e_shell_new_view (EShell *shell, +EShellView *e_shell_new_view (EShell *shell, const char *uri); const char *e_shell_get_local_directory (EShell *shell); |