diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-24 21:17:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-24 21:17:11 +0800 |
commit | 2ef1b5bf42b5d429e00f94710458f237d18315b2 (patch) | |
tree | fbeb4821b6190841688e5e52aa0a964d8db6b7ab /shell/e-shell.h | |
parent | fd6cd9e3a6dc06f9b8e44ec13ac881ebd6793e6e (diff) | |
download | gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar.gz gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar.bz2 gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar.lz gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar.xz gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.tar.zst gsoc2013-evolution-2ef1b5bf42b5d429e00f94710458f237d18315b2.zip |
Progress update:
- Get the "New" button and menu working.
- Add a GtkMenuToolButton subclass called EMenuToolButton, which does
some behind-the-scenes stuff to make the "New" button work properly.
- Kill EComboButton and its associated a11y widget.
svn path=/branches/kill-bonobo/; revision=36045
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index fd0e26e11b..a0f037ea98 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -49,7 +49,6 @@ typedef struct _EShellClass EShellClass; typedef struct _EShellPrivate EShellPrivate; typedef enum _EShellLineStatus EShellLineStatus; -typedef enum _EShellStartupLineMode EShellStartupLineMode; struct _EShell { GObject parent; @@ -67,12 +66,6 @@ enum _EShellLineStatus { E_SHELL_LINE_STATUS_FORCED_OFFLINE }; -enum _EShellStartupLineMode { - E_SHELL_STARTUP_LINE_MODE_CONFIG, - E_SHELL_STARTUP_LINE_MODE_ONLINE, - E_SHELL_STARTUP_LINE_MODE_OFFLINE -}; - GType e_shell_get_type (void); EShell * e_shell_new (gboolean online); GtkWidget * e_shell_create_window (EShell *shell); @@ -80,9 +73,9 @@ gboolean e_shell_handle_uri (EShell *shell, const gchar *uri); void e_shell_send_receive (EShell *shell, GtkWindow *parent); -gboolean e_shell_get_online (EShell *shell); -void e_shell_set_online (EShell *shell, - gboolean online); +gboolean e_shell_get_online_mode (EShell *shell); +void e_shell_set_online_mode (EShell *shell, + gboolean online_mode); EShellLineStatus e_shell_get_line_status (EShell *shell); void e_shell_set_line_status (EShell *shell, |