aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-06-12 00:31:04 +0800
committerJacob Leach <jleach@src.gnome.org>2001-06-12 00:31:04 +0800
commit7d4569259e0582598d979491721371aa49e41ead (patch)
tree476833542af2b6f9cf4ad93dc9e25740619d03ca
parentc772a898f30726758049feff11cac2ac37d0d105 (diff)
downloadgsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar.gz
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar.bz2
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar.lz
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar.xz
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.tar.zst
gsoc2013-evolution-7d4569259e0582598d979491721371aa49e41ead.zip
Fixed folder creation on IMAP storages (by notifying bonobo listener with
2001-06-11 Jason Leach <jleach@ximian.com> * evolution-storage.c (impl_Storage_async_create_folder): Fixed folder creation on IMAP storages (by notifying bonobo listener with the result). * evolution-storage-listener.c: Some cleaning. svn path=/trunk/; revision=10186
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/evolution-storage-listener.c24
-rw-r--r--shell/evolution-storage.c58
3 files changed, 46 insertions, 44 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index eea4620c6e..1dc690863f 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2001-06-11 Jason Leach <jleach@ximian.com>
+
+ * evolution-storage.c (impl_Storage_async_create_folder): Fixed
+ folder creation on IMAP storages (by notifying bonobo listener
+ with the result).
+
+ * evolution-storage-listener.c: Some cleaning.
+
2001-06-08 Iain Holmes <iain@ximian.com>
* e-setup.c (check_dir_recur): Don't copy the old Executive-Summary dir.
diff --git a/shell/evolution-storage-listener.c b/shell/evolution-storage-listener.c
index 0da33fda2a..ff54cdcfd7 100644
--- a/shell/evolution-storage-listener.c
+++ b/shell/evolution-storage-listener.c
@@ -66,7 +66,7 @@ gtk_object_from_servant (PortableServer_Servant servant)
static void
impl_GNOME_Evolution_StorageListener_notifyDestroyed (PortableServer_Servant servant,
- CORBA_Environment *ev)
+ CORBA_Environment *ev)
{
EvolutionStorageListener *listener;
EvolutionStorageListenerPrivate *priv;
@@ -79,9 +79,9 @@ impl_GNOME_Evolution_StorageListener_notifyDestroyed (PortableServer_Servant ser
static void
impl_GNOME_Evolution_StorageListener_notifyFolderCreated (PortableServer_Servant servant,
- const CORBA_char *path,
- const GNOME_Evolution_Folder *folder,
- CORBA_Environment *ev)
+ const CORBA_char *path,
+ const GNOME_Evolution_Folder *folder,
+ CORBA_Environment *ev)
{
EvolutionStorageListener *listener;
EvolutionStorageListenerPrivate *priv;
@@ -94,10 +94,10 @@ impl_GNOME_Evolution_StorageListener_notifyFolderCreated (PortableServer_Servant
static void
impl_GNOME_Evolution_StorageListener_notifyFolderUpdated (PortableServer_Servant servant,
- const CORBA_char *path,
- const CORBA_char *display_name,
- CORBA_boolean highlighted,
- CORBA_Environment *ev)
+ const CORBA_char *path,
+ const CORBA_char *display_name,
+ CORBA_boolean highlighted,
+ CORBA_Environment *ev)
{
EvolutionStorageListener *listener;
EvolutionStorageListenerPrivate *priv;
@@ -110,9 +110,9 @@ impl_GNOME_Evolution_StorageListener_notifyFolderUpdated (PortableServer_Servant
}
static void
-impl_GNOME_Evolution_StorageListener_removed_folder (PortableServer_Servant servant,
- const CORBA_char *path,
- CORBA_Environment *ev)
+impl_GNOME_Evolution_StorageListener_notifyFolderRemoved (PortableServer_Servant servant,
+ const CORBA_char *path,
+ CORBA_Environment *ev)
{
EvolutionStorageListener *listener;
EvolutionStorageListenerPrivate *priv;
@@ -225,7 +225,7 @@ corba_class_init (void)
epv->notifyDestroyed = impl_GNOME_Evolution_StorageListener_notifyDestroyed;
epv->notifyFolderCreated = impl_GNOME_Evolution_StorageListener_notifyFolderCreated;
epv->notifyFolderUpdated = impl_GNOME_Evolution_StorageListener_notifyFolderUpdated;
- epv->notifyFolderRemoved = impl_GNOME_Evolution_StorageListener_removed_folder;
+ epv->notifyFolderRemoved = impl_GNOME_Evolution_StorageListener_notifyFolderRemoved;
vepv = & my_GNOME_Evolution_StorageListener_vepv;
vepv->_base_epv = base_epv;
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c
index 0686d7c0bf..517993fa79 100644
--- a/shell/evolution-storage.c
+++ b/shell/evolution-storage.c
@@ -65,6 +65,7 @@ struct _EvolutionStoragePrivate {
enum {
CREATE_FOLDER,
REMOVE_FOLDER,
+
LAST_SIGNAL
};
@@ -286,6 +287,23 @@ storage_gtk_to_corba_result (EvolutionStorageResult result)
}
static void
+notify_bonobo_listener (const Bonobo_Listener listener,
+ EvolutionStorageResult result,
+ const char *physical_path,
+ CORBA_Environment *ev)
+{
+ CORBA_any any;
+ GNOME_Evolution_Storage_FolderResult folder_result;
+
+ folder_result.result = storage_gtk_to_corba_result (result);
+ folder_result.path = CORBA_string_dup (physical_path ? physical_path : "");
+ any._type = TC_GNOME_Evolution_Storage_FolderResult;
+ any._value = &folder_result;
+
+ Bonobo_Listener_event (listener, "result", &any, ev);
+}
+
+static void
impl_Storage_async_create_folder (PortableServer_Servant servant,
const CORBA_char *path,
const CORBA_char *type,
@@ -296,14 +314,19 @@ impl_Storage_async_create_folder (PortableServer_Servant servant,
{
BonoboObject *bonobo_object;
EvolutionStorage *storage;
+ int int_result;
bonobo_object = bonobo_object_from_servant (servant);
storage = EVOLUTION_STORAGE (bonobo_object);
+ int_result = GNOME_Evolution_Storage_UNSUPPORTED_OPERATION;
gtk_signal_emit (GTK_OBJECT (storage), signals[CREATE_FOLDER],
- listener, path, type, description, parent_physical_uri);
+ path, type, description, parent_physical_uri, &int_result);
+
+ notify_bonobo_listener (listener, int_result, path, ev);
}
+
static void
impl_Storage_async_remove_folder (PortableServer_Servant servant,
const CORBA_char *path,
@@ -314,8 +337,6 @@ impl_Storage_async_remove_folder (PortableServer_Servant servant,
BonoboObject *bonobo_object;
EvolutionStorage *storage;
int int_result;
- CORBA_any any;
- GNOME_Evolution_Storage_Result corba_result;
bonobo_object = bonobo_object_from_servant (servant);
storage = EVOLUTION_STORAGE (bonobo_object);
@@ -324,11 +345,7 @@ impl_Storage_async_remove_folder (PortableServer_Servant servant,
gtk_signal_emit (GTK_OBJECT (storage), signals[REMOVE_FOLDER],
path, physical_uri, &int_result);
- corba_result = storage_gtk_to_corba_result (int_result);
- any._type = TC_GNOME_Evolution_Storage_Result;
- any._value = &corba_result;
-
- Bonobo_Listener_event (listener, "result", &any, ev);
+ notify_bonobo_listener (listener, int_result, path, ev);
}
static void
@@ -444,29 +461,6 @@ corba_class_init (void)
vepv->GNOME_Evolution_Storage_epv = evolution_storage_get_epv ();
}
-/* The worst signal marshaller in Scotland */
-typedef void (*GtkSignal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER) (GtkObject *,
- gpointer, gpointer, gpointer, gpointer, gpointer,
- gpointer user_data);
-
-static void
-e_marshal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER (GtkObject *object,
- GtkSignalFunc func,
- gpointer func_data,
- GtkArg *args)
-{
- GtkSignal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER rfunc;
-
- rfunc = (GtkSignal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER) func;
- (*rfunc) (object,
- GTK_VALUE_POINTER (args[0]),
- GTK_VALUE_POINTER (args[1]),
- GTK_VALUE_POINTER (args[2]),
- GTK_VALUE_POINTER (args[3]),
- GTK_VALUE_POINTER (args[4]),
- func_data);
-}
-
static void
class_init (EvolutionStorageClass *klass)
{
@@ -482,7 +476,7 @@ class_init (EvolutionStorageClass *klass)
object_class->type,
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
create_folder),
- e_marshal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER,
+ e_marshal_INT__POINTER_POINTER_POINTER_POINTER,
GTK_TYPE_INT, 4,
GTK_TYPE_STRING,
GTK_TYPE_STRING,