From f312a007fd4b8aaf36a74aa6f40b30ab5bce5a04 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 6 Aug 2002 16:27:48 +0000 Subject: New callback for the show_folder_properties signal. * evolution-test-component.c (storage_show_folder_properties_callback): New callback for the show_folder_properties signal. (setup_custom_storage): Add two property items, and connect the callback to the signal. * e-storage-set-view.c: Renamed private member container into ui_container; new member ui_component. (init): Initialize ui_component to NULL. (impl_destroy): Unref if not NULL. (e_storage_set_view_construct): If @ui_container is not NULL, weakref it and create a new ui_component that uses it as its container. (ui_container_destroy_notify): New, weakref destroy callback for priv->ui_container. (remove_property_items): New helper function. (setup_folder_properties_items_if_corba_storage_clicked): New helper function. (folder_property_item_verb_callback): New callback for the verbs associated to the folder property items. (popup_folder_menu): Set up the per-storage folder property items using setup_folder_properties_items_if_corba_storage_clicked() and remove them with remove_property_items() after the menu has been popped down. Don't invoke populate_folder_context_menu if there is no handler for this node [this avoids a spurious warning]. * e-corba-storage.c (e_corba_storage_show_folder_properties): New. (e_corba_storage_get_folder_property_items): New. (e_corba_storage_free_property_items_list): New. * evolution-storage.c: New private member folder_property_items. (init): Init to NULL. (destroy): Free. (impl_showFolderProperties): New, implementation for the Storage::showFolderProperties CORBA method. (class_init): Set up the "show_folder_properties" signal here. (impl_Storage__get_propertyItems): New, getter for the Storage::propertyItems property. (corba_class_init): Install the new methods. (evolution_storage_add_property_item): New function to add property items to the storage. * evolution-storage.h: New signal show_folder_properties. * e-storage-set.c (e_storage_set_create_new_view): Renamed from e_storage_set_new_view(). * Evolution-Storage.idl: Added attribute folderPropertyItems and method ::showFolderProperties. svn path=/trunk/; revision=17714 --- shell/evolution-test-component.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'shell/evolution-test-component.c') diff --git a/shell/evolution-test-component.c b/shell/evolution-test-component.c index eb9b670c02..bdc59073b8 100644 --- a/shell/evolution-test-component.c +++ b/shell/evolution-test-component.c @@ -308,6 +308,16 @@ storage_discover_shared_folder_callback (EvolutionStorage *storage, g_timeout_add (1000, shared_folder_discovery_timeout_callback, listener_copy); } +static void +storage_show_folder_properties_callback (EvolutionStorage *storage, + const char *path, + unsigned int itemNumber, + unsigned long parentWindowId, + void *data) +{ + g_print ("Show properties #%d -- %s\n", itemNumber, path); +} + static void setup_custom_storage (EvolutionShellClient *shell_client) { @@ -319,6 +329,15 @@ setup_custom_storage (EvolutionShellClient *shell_client) gtk_signal_connect (GTK_OBJECT (the_storage), "discover_shared_folder", GTK_SIGNAL_FUNC (storage_discover_shared_folder_callback), shell_client); + /* Add some custom "Properties" items. */ + evolution_storage_add_property_item (the_storage, "Sharing...", + "Change sharing properties for this folder", NULL); + evolution_storage_add_property_item (the_storage, "Permissions...", + "Change permissions for this folder", NULL); + + gtk_signal_connect (GTK_OBJECT (the_storage), "show_folder_properties", + GTK_SIGNAL_FUNC (storage_show_folder_properties_callback), NULL); + result = evolution_storage_register_on_shell (the_storage, BONOBO_OBJREF (shell_client)); if (result != EVOLUTION_STORAGE_OK) { g_warning ("Cannot register storage on the shell."); -- cgit v1.2.3