diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-05 03:58:45 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-05 03:58:45 +0800 |
commit | 8541e321f0d39295b315f057516f12a1fb4289f6 (patch) | |
tree | 051d0a87ec08bf575513879e014a43546b89ddb2 /shell/e-sidebar.h | |
parent | 097c33e75eb2e2d06d643e467285310676d1fe62 (diff) | |
download | gsoc2013-evolution-8541e321f0d39295b315f057516f12a1fb4289f6.tar.gz gsoc2013-evolution-8541e321f0d39295b315f057516f12a1fb4289f6.tar.zst gsoc2013-evolution-8541e321f0d39295b315f057516f12a1fb4289f6.zip |
new protos, modes
2005-01-04 JP Rosevear <jpr@novell.com>
* e-sidebar.h: new protos, modes
* e-sidebar.c: handle 2 more modes, text only and toolbar style;
allow visibility to be set for the buttons
* e-shell-window.h: new proto
* e-shell-window.c (setup_widgets): set the sidebar setting and
visibility based on stored gconf settings
(e_shell_window_save_defaults): save the current sidebar setting
visibility
(e_shell_window_peek_sidebar): return the sidebar
* e-shell-window-commands.c (e_shell_window_commands_setup): add
listeners for each of the component button radio items and for the
hide toggle
(view_buttons_icontext_item_toggled_handler): listener callback,
set mode
(view_buttons_icon_item_toggled_handler): ditto
(view_buttons_text_item_toggled_handler): ditto
(view_buttons_toolbar_item_toggled_handler): ditto
(view_buttons_hide_item_toggled_handler): listener callback, set
visibility
* apps_evolution_shell.schemas.in.in: add component button style
and visibility defaults
svn path=/trunk/; revision=28239
Diffstat (limited to 'shell/e-sidebar.h')
-rw-r--r-- | shell/e-sidebar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shell/e-sidebar.h b/shell/e-sidebar.h index fc4b782c96..873d366b38 100644 --- a/shell/e-sidebar.h +++ b/shell/e-sidebar.h @@ -38,7 +38,9 @@ typedef struct _ESidebarClass ESidebarClass; typedef enum { E_SIDEBAR_MODE_TEXT, - E_SIDEBAR_MODE_ICON + E_SIDEBAR_MODE_ICON, + E_SIDEBAR_MODE_BOTH, + E_SIDEBAR_MODE_TOOLBAR } ESidebarMode; struct _ESidebar { @@ -71,5 +73,8 @@ void e_sidebar_select_button (ESidebar *sidebar, ESidebarMode e_sidebar_get_mode (ESidebar *sidebar); void e_sidebar_set_mode (ESidebar *sidebar, ESidebarMode mode); +void e_sidebar_set_show_buttons (ESidebar *sidebar, gboolean show); +gboolean e_sidebar_get_show_buttons (ESidebar *sidebar); + #endif /* _E_SIDEBAR_H_ */ |