diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-12 03:28:00 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-12 03:28:00 +0800 |
commit | 88c6bf4d473d73c03000621f69a16c9c8617cd5b (patch) | |
tree | 626dda8d19f42d3e20ef7ba9aa87821e78d62cf4 /shell/e-shell-folder-title-bar.h | |
parent | 96d94fc6708215dc1a7d3fa3d1c8324446e0d95c (diff) | |
download | gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar.gz gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar.bz2 gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar.lz gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar.xz gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.tar.zst gsoc2013-evolution-88c6bf4d473d73c03000621f69a16c9c8617cd5b.zip |
Remove some `#if 0'ed broken code. New members title_icon and
* e-shell-folder-title-bar.c: Remove some `#if 0'ed broken code.
New members title_icon and title_button_icon in struct
EShellFolderTitleBarPrivate. Remove member icon_widget. New
static global variable empty_pixbuf.
(init): Initialize these new members to NULL. Don't initialize
icon_widget anymore since it's gone.
(e_shell_folder_title_bar_construct): Create the title_button_icon
and pack it into the title_button_hbox. Also, create the
title_icon and pack that one as well. Retouched some of the
hardcoded padding values.
(size_allocate_icon): Rewritten to use the title_icon and return
the allocated space like size_allocate_navigation_buttons.
(e_shell_folder_title_bar_set_icon): Remove bogus const from the
@icon arg. Ref the pixbuf, and update the two pixmap widgets from
it. If @icon is NULL, use the empty_pixbuf.
(impl_destroy): Renamed from destroy().
(realize): Removed.
(unrealize): Removed.
(impl_size_allocate): Renamed from size_allocate().
(class_init): Call it.
(add_icon_widget): Removed.
(new_empty_pixbuf): New.
(new_empty_pixmap_widget): New.
(size_allocate_navigation_buttons_and_title_icon): Renamed from
size_allocate_navigation_buttons; set up the title_icon too.
* e-shell-view.c (update_folder_title_bar): Unref the folder_icon
after using it.
* e-icon-factory.c (e_icon_factory_get_icon): Ref the returned pixbuf.
svn path=/trunk/; revision=17419
Diffstat (limited to 'shell/e-shell-folder-title-bar.h')
-rw-r--r-- | shell/e-shell-folder-title-bar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-folder-title-bar.h b/shell/e-shell-folder-title-bar.h index fcebeca966..274e590ef7 100644 --- a/shell/e-shell-folder-title-bar.h +++ b/shell/e-shell-folder-title-bar.h @@ -67,7 +67,7 @@ void e_shell_folder_title_bar_set_title (EShellFolderTitleBar *fold void e_shell_folder_title_bar_set_folder_bar_label (EShellFolderTitleBar *folder_title_bar, const char *folder_bar_label); void e_shell_folder_title_bar_set_icon (EShellFolderTitleBar *folder_title_bar, - const GdkPixbuf *icon); + GdkPixbuf *icon); void e_shell_folder_title_bar_set_toggle_state (EShellFolderTitleBar *folder_title_bar, gboolean state); void e_shell_folder_title_bar_set_title_clickable (EShellFolderTitleBar *folder_title_bar, |