aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-title-bar.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-07-21 21:59:02 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-07-21 21:59:02 +0800
commite107a85dd6e6e65aca2e165df2ea6acc7cc99aff (patch)
tree1ad3cdf73bcc19e98b8ccb9f732471b3f7a57090 /shell/e-shell-folder-title-bar.h
parent31f6fc71f2b1095f0cb2423358c3da09f0e82121 (diff)
downloadgsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar.gz
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar.bz2
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar.lz
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar.xz
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.tar.zst
gsoc2013-evolution-e107a85dd6e6e65aca2e165df2ea6acc7cc99aff.zip
Improve the title bar pop-up button: use a toggle button instead of a
regular one and allow sticking the pop-up with the close button (we'll need to have it change the icon). svn path=/trunk/; revision=4259
Diffstat (limited to 'shell/e-shell-folder-title-bar.h')
-rw-r--r--shell/e-shell-folder-title-bar.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/shell/e-shell-folder-title-bar.h b/shell/e-shell-folder-title-bar.h
index 80258ad336..86759c8270 100644
--- a/shell/e-shell-folder-title-bar.h
+++ b/shell/e-shell-folder-title-bar.h
@@ -57,18 +57,19 @@ struct _EShellFolderTitleBarClass {
GtkEventBoxClass parent_class;
/* Signals. */
- void (* title_clicked) (EShellFolderTitleBar *folder_title_bar);
+ void (* title_toggled) (EShellFolderTitleBar *folder_title_bar, gboolean pressed);
};
-GtkType e_shell_folder_title_bar_get_type (void);
-void e_shell_folder_title_bar_construct (EShellFolderTitleBar *folder_title_bar);
-GtkWidget *e_shell_folder_title_bar_new (void);
-
-void e_shell_folder_title_bar_set_title (EShellFolderTitleBar *folder_title_bar,
- const char *title);
-void e_shell_folder_title_bar_set_icon (EShellFolderTitleBar *folder_title_bar,
- const GdkPixbuf *icon);
+GtkType e_shell_folder_title_bar_get_type (void);
+void e_shell_folder_title_bar_construct (EShellFolderTitleBar *folder_title_bar);
+GtkWidget *e_shell_folder_title_bar_new (void);
+void e_shell_folder_title_bar_set_title (EShellFolderTitleBar *folder_title_bar,
+ const char *title);
+void e_shell_folder_title_bar_set_icon (EShellFolderTitleBar *folder_title_bar,
+ const GdkPixbuf *icon);
+void e_shell_folder_title_bar_set_toggle_state (EShellFolderTitleBar *folder_title_bar,
+ gboolean state);
#ifdef __cplusplus
}