aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts-view.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-07-09 04:45:49 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-07-09 04:45:49 +0800
commit82c99d625bf2d763adf0b812dd59b92a4aaa4735 (patch)
treebbd0e022c15bf6e947f47bcb2bb1950444785d9b /shell/e-shortcuts-view.h
parentb749cf077233687b34a5ae0aed1ee33d23b76471 (diff)
downloadgsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar.gz
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar.bz2
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar.lz
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar.xz
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.tar.zst
gsoc2013-evolution-82c99d625bf2d763adf0b812dd59b92a4aaa4735.zip
Change the group icon size using e_shortcuts_set_group_uses_small_icons()
* e-shortcuts-view.c (toggle_large_icons_cb): Change the group icon size using e_shortcuts_set_group_uses_small_icons() instead of changing it on the widget directly. (toggle_small_icons_cb): Likewise. (group_change_icon_size_callback): New, callback for the "group_change_icon_size" signal on the EShortcuts object. (e_shortcuts_view_construct): Connect. Also, initialize the icon sizes in the icon bars from the EShortcuts object. * e-shell-view.c (e_shell_view_load_settings): Don't set the shortcut group icon modes here anymore. * e-shortcuts.c: New member use_small_icons in struct ShortcutGroup. (shortcut_group_new): Init to FALSE. (e_shortcuts_set_group_uses_small_icons): New. (e_shortcuts_get_group_uses_small_icons): New. (class_init): Install "group_change_icon_size" signal. (save_shortcuts): Save the icon size per-group here, i.e. <group title="foo" icon_size="small">. (load_shortcuts): Set the icon size from the group's definition here. * e-shortcuts.h: New signal "group_change_icon_size" in EShortcutsClass. svn path=/trunk/; revision=17386
Diffstat (limited to 'shell/e-shortcuts-view.h')
-rw-r--r--shell/e-shortcuts-view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shortcuts-view.h b/shell/e-shortcuts-view.h
index 531718283a..e905fabdc8 100644
--- a/shell/e-shortcuts-view.h
+++ b/shell/e-shortcuts-view.h
@@ -36,8 +36,8 @@ extern "C" {
#define E_TYPE_SHORTCUTS_VIEW (e_shortcuts_view_get_type ())
#define E_SHORTCUTS_VIEW(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SHORTCUTS_VIEW, EShortcutsView))
#define E_SHORTCUTS_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SHORTCUTS_VIEW, EShortcutsViewClass))
-#define E_IS_SHORTCUTS_VIEW(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SHORTCUTS_VIEW))
-#define E_IS_SHORTCUTS_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_SHORTCUTS_VIEW))
+#define E_IS_SHORTCUTS_VIEW(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SHORTCUTS_VIEW))
+#define E_IS_SHORTCUTS_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_SHORTCUTS_VIEW))
typedef struct _EShortcutsView EShortcutsView;