diff options
author | Dan Winship <danw@src.gnome.org> | 2000-11-02 08:11:53 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-11-02 08:11:53 +0800 |
commit | 0fa29927fc5a0913388dc8fbc4a9b816c0a11119 (patch) | |
tree | f03f91bc99dfb77e3601f5c3506dde1eb025b059 /shell/e-local-storage.c | |
parent | f62d997329216c7e47bb8e78724edec4dd7e72ef (diff) | |
download | gsoc2013-evolution-0fa29927fc5a0913388dc8fbc4a9b816c0a11119.tar.gz gsoc2013-evolution-0fa29927fc5a0913388dc8fbc4a9b816c0a11119.tar.zst gsoc2013-evolution-0fa29927fc5a0913388dc8fbc4a9b816c0a11119.zip |
Add "highligted" field to Folder. Add update_folder method to
* Evolution-Storage.idl: Add "highligted" field to Folder. Add
update_folder method to StorageListener to change display_name and
highlight status.
* e-folder.c: Add "highlighted" to EFolder to match the
Evolution::Folder type.
(e_folder_get_highlighted, e_folder_set_highlighted): Added
* evolution-storage-listener.c
(impl_Evolution_StorageListener_update_folder, etc):
* e-storage.c (e_storage_updated_folder, etc):
* e-corba-storage.c (impl_StorageListener_update_folder, etc):
Implement update_folder.
* e-storage-set.c (storage_updated_folder_cb, etc): Re-emit
updated_folder signals received from EStorage.
* e-storage-set-view.c (various): Add another model column to the
ETable and set it up as a bold_column based on
e_folder_get_highligted.
(updated_folder_cb, etc): Listen to EStorageSet update_folder
signal and emit ETree node_changed signals.
* evolution-storage.c (evolution_storage_update_folder): Client
function to update a folder's display_name and highlighted status.
* Evolution-LocalStorage.idl:
* evolution-local-storage.c:
* e-local-storage.c: Change set_display_name to update_folder to
match Evolution::StorageListener
svn path=/trunk/; revision=6328
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 173bdf2991..25db4ab988 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -530,24 +530,23 @@ impl_async_remove_folder (EStorage *storage, /* Callbacks for the `Evolution::LocalStorage' interface we are exposing to the outside world. */ static void -bonobo_interface_set_display_name_cb (EvolutionLocalStorage *bonobo_local_storage, - const char *path, - const char *display_name, - void *data) +bonobo_interface_update_folder_cb (EvolutionLocalStorage *bonobo_local_storage, + const char *path, + const char *display_name, + gboolean highlighted, + void *data) { ELocalStorage *local_storage; EFolder *folder; local_storage = E_LOCAL_STORAGE (data); - g_print ("%s -- %s %s\n", __FUNCTION__, path, display_name); - folder = e_storage_get_folder (E_STORAGE (local_storage), path); if (folder == NULL) return; e_folder_set_name (folder, display_name); - + e_folder_set_highlighted (folder, highlighted); } @@ -613,8 +612,8 @@ construct (ELocalStorage *local_storage, g_assert (priv->bonobo_interface == NULL); priv->bonobo_interface = evolution_local_storage_new (E_LOCAL_STORAGE_NAME); - gtk_signal_connect (GTK_OBJECT (priv->bonobo_interface), "set_display_name", - GTK_SIGNAL_FUNC (bonobo_interface_set_display_name_cb), + gtk_signal_connect (GTK_OBJECT (priv->bonobo_interface), "update_folder", + GTK_SIGNAL_FUNC (bonobo_interface_update_folder_cb), local_storage); return load_all_folders (local_storage); |