diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-20 12:48:59 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-20 12:48:59 +0800 |
commit | 68a731e0a02290edf039d419bc36582023624726 (patch) | |
tree | 21907355e0da0d784dd9791a460178992388bfd6 /mail/folder-browser.c | |
parent | 262ee8128d564206d60c93e479200d1c977fd10d (diff) | |
download | gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar.gz gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar.bz2 gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar.lz gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar.xz gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.tar.zst gsoc2013-evolution-68a731e0a02290edf039d419bc36582023624726.zip |
Bumped gal requirement to 0.5.99.8.
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* configure.in: Bumped gal requirement to 0.5.99.8.
From addressbook/ChangeLog:
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* Merged branch:
2001-03-14 Christopher James Lahey <clahey@ximian.com>
* gui/widgets/e-minicard-view.c: Call
e_selection_model_simple_insert_rows and
e_selection_model_simple_delete_rows instead of
e_selection_model_simple_insert_row and
e_selection_model_simple_delete_row.
End of branch
From mail/ChangeLog:
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* Merged e-tree-rework-branch:
2001-03-18 Christopher James Lahey <clahey@ximian.com>
* message-list.c: Added has_save_id and get_save_id methods.
* subscribe-dialog.c: Added arguments for
e_tree_memory_callbacks_new of get_save_id and has_save_id to
NULL.
2001-03-16 Christopher James Lahey <clahey@ximian.com>
* message-list.c: Added a call to
e_tree_memory_set_expanded_default to TRUE. Removed all calls to
set_expanded on nodes while the tree is frozen since this fails
miserably now.
2001-03-13 Christopher James Lahey <clahey@ximian.com>
* message-list.c (message_list_get_layout): Turned off draw-grid.
2001-03-09 Christopher James Lahey <clahey@ximian.com>
* folder-browser-factory.c, folder-browser.c, message-list.c,
message-list.h, subscribe-dialog.c, subscribe-dialog.h,
mail-callbacks.c: Converted these all to use ETree instead of
ETable.
End of branch
From shell/ChangeLog:
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* Merged e-tree-rework-branch:
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* e-storage-set-view.c (etree_get_save_id): Made "root" detection
deal properly with removed nodes.
2001-03-18 Christopher James Lahey <clahey@ximian.com>
* e-shell-view.c (e_shell_view_save_settings): Added some unused
code to implement saving of the expanded state.
* e-storage-set-view.c: Added has_save_id and get_save_id methods.
2001-03-13 Christopher James Lahey <clahey@ximian.com>
* e-storage-set-view.c (ETREE_SPEC): Set draw-grid here to false.
2001-03-09 Christopher James Lahey <clahey@ximian.com>
* e-storage-set-view.c, e-storage-set-view.h: Chaned this to use
ETree instead of ETable.
End of branch
svn path=/trunk/; revision=8839
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 6473df58a6..7fa59c3bd6 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -596,7 +596,7 @@ static EPopupMenu menu[] = { /* handle context menu over message-list */ static gint -on_right_click (ETable *table, gint row, gint col, GdkEvent *event, FolderBrowser *fb) +on_right_click (ETree *tree, gint row, ETreePath path, gint col, GdkEvent *event, FolderBrowser *fb) { extern CamelFolder *sent_folder; CamelMessageInfo *info; @@ -723,7 +723,7 @@ display_menu: } static int -etable_key (ETable *table, int row, int col, GdkEvent *ev, FolderBrowser *fb) +etree_key (ETree *tree, int row, ETreePath path, int col, GdkEvent *ev, FolderBrowser *fb) { if ((ev->key.state & !(GDK_SHIFT_MASK | GDK_LOCK_MASK)) != 0) return FALSE; @@ -777,7 +777,7 @@ etable_key (ETable *table, int row, int col, GdkEvent *ev, FolderBrowser *fb) return TRUE; case GDK_Menu: - on_right_click (table, row, col, ev, fb); + on_right_click (tree, row, path, col, ev, fb); return TRUE; default: @@ -788,7 +788,7 @@ etable_key (ETable *table, int row, int col, GdkEvent *ev, FolderBrowser *fb) } static void -on_double_click (ETable *table, gint row, gint col, GdkEvent *event, FolderBrowser *fb) +on_double_click (ETree *tree, gint row, ETreePath path, gint col, GdkEvent *event, FolderBrowser *fb) { /* Ignore double-clicks on columns where single-click doesn't * just select. @@ -985,13 +985,13 @@ my_folder_browser_init (GtkObject *object) GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); - gtk_signal_connect (GTK_OBJECT (fb->message_list->table), - "key_press", GTK_SIGNAL_FUNC (etable_key), fb); + gtk_signal_connect (GTK_OBJECT (fb->message_list->tree), + "key_press", GTK_SIGNAL_FUNC (etree_key), fb); - gtk_signal_connect (GTK_OBJECT (fb->message_list->table), + gtk_signal_connect (GTK_OBJECT (fb->message_list->tree), "right_click", GTK_SIGNAL_FUNC (on_right_click), fb); - gtk_signal_connect (GTK_OBJECT (fb->message_list->table), + gtk_signal_connect (GTK_OBJECT (fb->message_list->tree), "double_click", GTK_SIGNAL_FUNC (on_double_click), fb); gtk_signal_connect (GTK_OBJECT(fb->message_list), "message_selected", |