aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-05-03 06:23:16 +0800
committerChris Toshok <toshok@src.gnome.org>2001-05-03 06:23:16 +0800
commit0ac06ee5b0cf27803e037b8bb5f3998898200bd1 (patch)
treecca801bbaf99e4790e79b4bdcdbcb6b7ba580b74
parentaf8abf4f2dc7055756265744319dd7354f0310ce (diff)
downloadgsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar.gz
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar.bz2
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar.lz
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar.xz
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.tar.zst
gsoc2013-evolution-0ac06ee5b0cf27803e037b8bb5f3998898200bd1.zip
new file.
2001-05-02 Chris Toshok <toshok@ximian.com> * evolution-shell-component-dnd.c: new file. * evolution-shell-component-dnd.h: new file. * Makefile.am (libeshell_a_SOURCES): add evolution-shell-component-dnd.[ch]. svn path=/trunk/; revision=9652
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/Makefile.am2
-rw-r--r--shell/evolution-shell-component-dnd.c443
-rw-r--r--shell/evolution-shell-component-dnd.h127
4 files changed, 581 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index df31e7d133..7caa04b1f4 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,12 @@
+2001-05-02 Chris Toshok <toshok@ximian.com>
+
+ * evolution-shell-component-dnd.c: new file.
+
+ * evolution-shell-component-dnd.h: new file.
+
+ * Makefile.am (libeshell_a_SOURCES): add
+ evolution-shell-component-dnd.[ch].
+
2001-04-25 Dan Winship <danw@ximian.com>
* Makefile.am (evolution_LDADD): Remove $(UNICODE_LIBS).
diff --git a/shell/Makefile.am b/shell/Makefile.am
index d8256b5e10..c5c55b6d62 100644
--- a/shell/Makefile.am
+++ b/shell/Makefile.am
@@ -63,6 +63,8 @@ libeshell_a_SOURCES = \
evolution-shell-component-client.h \
evolution-shell-component.c \
evolution-shell-component.h \
+ evolution-shell-component-dnd.c \
+ evolution-shell-component-dnd.h \
evolution-shell-view.c \
evolution-shell-view.h \
evolution-storage-listener.c \
diff --git a/shell/evolution-shell-component-dnd.c b/shell/evolution-shell-component-dnd.c
new file mode 100644
index 0000000000..e8963406fe
--- /dev/null
+++ b/shell/evolution-shell-component-dnd.c
@@ -0,0 +1,443 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* evolution-shell-component-dnd.c
+ *
+ * Copyright (C) 2000, 2001 Ximian, Inc.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Chris Toshok
+ */
+
+#include <gal/util/e-util.h>
+
+#include "Evolution.h"
+#include "evolution-shell-component-dnd.h"
+
+
+#define PARENT_TYPE (bonobo_object_get_type ())
+
+static BonoboObjectClass *parent_class;
+
+/* Source Folder stuff */
+
+struct _DndSourceFolderPrivate {
+ DndSourceFolderBeginDragFn begin_drag;
+ DndSourceFolderGetDataFn get_data;
+ DndSourceFolderDeleteDataFn delete_data;
+ DndSourceFolderEndDragFn end_drag;
+ gpointer user_data;
+};
+
+/* GtkObject methods */
+static void
+dnd_source_destroy (GtkObject *object)
+{
+ EvolutionShellComponentDndSourceFolder *folder;
+ DndSourceFolderPrivate *priv;
+
+ folder = EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (object);
+ priv = folder->priv;
+
+ g_return_if_fail (priv != NULL);
+
+ g_free (priv);
+
+ GTK_OBJECT_CLASS (parent_class)->destroy (object);
+}
+
+static void
+impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_beginDrag (PortableServer_Servant servant, const CORBA_char * physical_uri,
+ const CORBA_char * folder_type, GNOME_Evolution_ShellComponentDnd_ActionSet * possible_actions,
+ GNOME_Evolution_ShellComponentDnd_Action * suggested_action, CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndSourceFolder *folder;
+ DndSourceFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ priv->begin_drag (folder, physical_uri, folder_type, possible_actions, suggested_action, priv->user_data);
+}
+
+static void
+impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_getData (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context * source_context,
+ const GNOME_Evolution_ShellComponentDnd_Action action, const CORBA_char * dnd_type,
+ GNOME_Evolution_ShellComponentDnd_Data ** data, CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndSourceFolder *folder;
+ DndSourceFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ priv->get_data (folder, source_context, action, dnd_type, data, ev, priv->user_data);
+}
+
+static void
+impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_deleteData (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context * source_context,
+ CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndSourceFolder *folder;
+ DndSourceFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ priv->delete_data (folder, source_context, priv->user_data);
+}
+
+static void
+impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_endDrag (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context * source_context,
+ CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndSourceFolder *folder;
+ DndSourceFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ priv->end_drag (folder, source_context, priv->user_data);
+}
+
+static POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__vepv SourceFolder_vepv;
+
+static POA_GNOME_Evolution_ShellComponentDnd_SourceFolder *
+create_dnd_source_servant (void)
+{
+ POA_GNOME_Evolution_ShellComponentDnd_SourceFolder *servant;
+ CORBA_Environment ev;
+
+ servant = (POA_GNOME_Evolution_ShellComponentDnd_SourceFolder *)g_new0 (BonoboObjectServant, 1);
+ servant->vepv = &SourceFolder_vepv;
+
+ CORBA_exception_init (&ev);
+ POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__init ((PortableServer_Servant) servant, &ev);
+ if (ev._major != CORBA_NO_EXCEPTION) {
+ g_free (servant);
+ CORBA_exception_free (&ev);
+ return NULL;
+ }
+
+ CORBA_exception_free (&ev);
+
+ return servant;
+}
+
+static void
+source_corba_class_init (void)
+{
+ POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__vepv *vepv;
+ POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__epv *epv;
+ PortableServer_ServantBase__epv *base_epv;
+
+ base_epv = g_new0 (PortableServer_ServantBase__epv, 1);
+ base_epv->_private = NULL;
+ base_epv->finalize = NULL;
+ base_epv->default_POA = NULL;
+
+ epv = g_new0 (POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__epv, 1);
+ epv->beginDrag = impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_beginDrag;
+ epv->getData = impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_getData;
+ epv->deleteData = impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_deleteData;
+ epv->endDrag = impl_GNOME_Evolution_ShellComponentDnd_SourceFolder_endDrag;
+
+ vepv = &SourceFolder_vepv;
+ vepv->_base_epv = base_epv;
+ vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
+ vepv->GNOME_Evolution_ShellComponentDnd_SourceFolder_epv = epv;
+}
+
+static void
+evolution_shell_component_dnd_source_folder_class_init (EvolutionShellComponentDndSourceFolderClass *klass)
+{
+ GtkObjectClass *object_class;
+
+ object_class = GTK_OBJECT_CLASS (klass);
+ object_class->destroy = dnd_source_destroy;
+
+ parent_class = gtk_type_class (PARENT_TYPE);
+
+ source_corba_class_init ();
+}
+
+static void
+evolution_shell_component_dnd_source_folder_init (EvolutionShellComponentDndSourceFolder *folder)
+{
+ DndSourceFolderPrivate *priv;
+
+ priv = g_new (DndSourceFolderPrivate, 1);
+
+ folder->priv = priv;
+}
+
+
+E_MAKE_TYPE (evolution_shell_component_dnd_source_folder, "EvolutionShellComponentDndSourceFolder",
+ EvolutionShellComponentDndSourceFolder, evolution_shell_component_dnd_source_folder_class_init,
+ evolution_shell_component_dnd_source_folder_init, PARENT_TYPE);
+
+static void
+evolution_shell_component_dnd_source_folder_construct (EvolutionShellComponentDndSourceFolder *dnd_source,
+ DndSourceFolderBeginDragFn begin_drag,
+ DndSourceFolderGetDataFn get_data,
+ DndSourceFolderDeleteDataFn delete_data,
+ DndSourceFolderEndDragFn end_drag,
+ gpointer user_data,
+ GNOME_Evolution_ShellComponentDnd_SourceFolder corba_object)
+{
+ DndSourceFolderPrivate *priv;
+
+ g_return_if_fail (dnd_source != NULL);
+ g_return_if_fail (IS_EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER (dnd_source));
+ g_return_if_fail (corba_object != CORBA_OBJECT_NIL);
+
+ priv = dnd_source->priv;
+
+ priv->begin_drag = begin_drag;
+ priv->get_data = get_data;
+ priv->delete_data = delete_data;
+ priv->end_drag = end_drag;
+ priv->user_data = user_data;
+
+ bonobo_object_construct (BONOBO_OBJECT (dnd_source), corba_object);
+}
+
+EvolutionShellComponentDndSourceFolder*
+evolution_shell_component_dnd_source_folder_new (DndSourceFolderBeginDragFn begin_drag,
+ DndSourceFolderGetDataFn get_data,
+ DndSourceFolderDeleteDataFn delete_data,
+ DndSourceFolderEndDragFn end_drag,
+ gpointer user_data)
+{
+ EvolutionShellComponentDndSourceFolder *dnd_source;
+ POA_GNOME_Evolution_ShellComponentDnd_SourceFolder *servant;
+ GNOME_Evolution_ShellComponentDnd_SourceFolder corba_object;
+
+ g_return_val_if_fail (begin_drag != NULL, NULL);
+ g_return_val_if_fail (get_data != NULL, NULL);
+ g_return_val_if_fail (delete_data != NULL, NULL);
+ g_return_val_if_fail (end_drag != NULL, NULL);
+
+ servant = create_dnd_source_servant();
+ if (servant == NULL)
+ return NULL;
+
+ dnd_source = gtk_type_new (evolution_shell_component_dnd_source_folder_get_type ());
+ corba_object = bonobo_object_activate_servant (BONOBO_OBJECT (dnd_source),
+ servant);
+
+ evolution_shell_component_dnd_source_folder_construct (dnd_source,
+ begin_drag, get_data,
+ delete_data, end_drag,
+ user_data,
+ corba_object);
+ return dnd_source;
+}
+
+
+
+/* Destination Folder stuff */
+
+struct _DndDestinationFolderPrivate {
+ DndDestinationFolderHandleMotionFn handle_motion;
+ DndDestinationFolderHandleDropFn handle_drop;
+ gpointer user_data;
+};
+
+/* GtkObject methods */
+static void
+dnd_destination_destroy (GtkObject *object)
+{
+ EvolutionShellComponentDndDestinationFolder *folder;
+ DndDestinationFolderPrivate *priv;
+
+ folder = EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER (object);
+ priv = folder->priv;
+
+ g_return_if_fail (priv != NULL);
+
+ g_free (priv);
+
+ GTK_OBJECT_CLASS (parent_class)->destroy (object);
+}
+
+/* CORBA interface */
+static CORBA_boolean
+impl_GNOME_Evolution_ShellComponentDnd_DestinationFolder_handleMotion (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentDnd_DestinationFolder_Context * destination_context,
+ GNOME_Evolution_ShellComponentDnd_Action * suggested_action, CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndDestinationFolder *folder;
+ DndDestinationFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ return priv->handle_motion (folder, destination_context, suggested_action, priv->user_data);
+}
+
+static CORBA_boolean
+impl_GNOME_Evolution_ShellComponentDnd_DestinationFolder_handleDrop (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentDnd_DestinationFolder_Context * destination_context,
+ const GNOME_Evolution_ShellComponentDnd_Action action,
+ const GNOME_Evolution_ShellComponentDnd_Data * data, CORBA_Environment * ev)
+{
+ BonoboObject *bonobo_object;
+ EvolutionShellComponentDndDestinationFolder *folder;
+ DndDestinationFolderPrivate *priv;
+
+ bonobo_object = bonobo_object_from_servant (servant);
+ folder = EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER (bonobo_object);
+ priv = folder->priv;
+
+ return priv->handle_drop (folder, destination_context, action, data, priv->user_data);
+}
+
+static POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__vepv DestinationFolder_vepv;
+
+static POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder *
+create_dnd_destination_servant (void)
+{
+ POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder *servant;
+ CORBA_Environment ev;
+
+ servant = (POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder *)g_new0 (BonoboObjectServant, 1);
+ servant->vepv = &DestinationFolder_vepv;
+
+ CORBA_exception_init (&ev);
+ POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__init ((PortableServer_Servant) servant, &ev);
+ if (ev._major != CORBA_NO_EXCEPTION) {
+ g_free (servant);
+ CORBA_exception_free (&ev);
+ return NULL;
+ }
+
+ CORBA_exception_free (&ev);
+
+ return servant;
+}
+
+static void
+destination_corba_class_init (void)
+{
+ POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__vepv *vepv;
+ POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__epv *epv;
+ PortableServer_ServantBase__epv *base_epv;
+
+ base_epv = g_new0 (PortableServer_ServantBase__epv, 1);
+ base_epv->_private = NULL;
+ base_epv->finalize = NULL;
+ base_epv->default_POA = NULL;
+
+ epv = g_new0 (POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__epv, 1);
+ epv->handleMotion = impl_GNOME_Evolution_ShellComponentDnd_DestinationFolder_handleMotion;
+ epv->handleDrop = impl_GNOME_Evolution_ShellComponentDnd_DestinationFolder_handleDrop;
+
+ vepv = &DestinationFolder_vepv;
+ vepv->_base_epv = base_epv;
+ vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
+ vepv->GNOME_Evolution_ShellComponentDnd_DestinationFolder_epv = epv;
+}
+
+static void
+evolution_shell_component_dnd_destination_folder_class_init (EvolutionShellComponentDndDestinationFolderClass *klass)
+{
+ GtkObjectClass *object_class;
+
+ object_class = GTK_OBJECT_CLASS (klass);
+ object_class->destroy = dnd_destination_destroy;
+
+ parent_class = gtk_type_class (PARENT_TYPE);
+
+ destination_corba_class_init ();
+}
+
+static void
+evolution_shell_component_dnd_destination_folder_init (EvolutionShellComponentDndDestinationFolder *folder)
+{
+ DndDestinationFolderPrivate *priv;
+
+ priv = g_new (DndDestinationFolderPrivate, 1);
+
+ folder->priv = priv;
+}
+
+
+E_MAKE_TYPE (evolution_shell_component_dnd_destination_folder, "EvolutionShellComponentDndDestinationFolder",
+ EvolutionShellComponentDndDestinationFolder, evolution_shell_component_dnd_destination_folder_class_init,
+ evolution_shell_component_dnd_destination_folder_init, PARENT_TYPE);
+
+static void
+evolution_shell_component_dnd_destination_folder_construct (EvolutionShellComponentDndDestinationFolder *dnd_destination,
+ DndDestinationFolderHandleMotionFn handle_motion,
+ DndDestinationFolderHandleDropFn handle_drop,
+ gpointer user_data,
+ GNOME_Evolution_ShellComponentDnd_DestinationFolder corba_object)
+{
+ DndDestinationFolderPrivate *priv;
+
+ g_return_if_fail (dnd_destination != NULL);
+ g_return_if_fail (IS_EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER (dnd_destination));
+ g_return_if_fail (corba_object != CORBA_OBJECT_NIL);
+
+ priv = dnd_destination->priv;
+
+ priv->handle_motion = handle_motion;
+ priv->handle_drop = handle_drop;
+ priv->user_data = user_data;
+
+ bonobo_object_construct (BONOBO_OBJECT (dnd_destination), corba_object);
+}
+
+EvolutionShellComponentDndDestinationFolder*
+evolution_shell_component_dnd_destination_folder_new (DndDestinationFolderHandleMotionFn handle_motion,
+ DndDestinationFolderHandleDropFn handle_drop,
+ gpointer user_data)
+{
+ EvolutionShellComponentDndDestinationFolder *dnd_destination;
+ POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder *servant;
+ GNOME_Evolution_ShellComponentDnd_DestinationFolder corba_object;
+
+ g_return_val_if_fail (handle_motion != NULL, NULL);
+ g_return_val_if_fail (handle_drop != NULL, NULL);
+
+ servant = create_dnd_destination_servant();
+ if (servant == NULL)
+ return NULL;
+
+ dnd_destination = gtk_type_new (evolution_shell_component_dnd_destination_folder_get_type ());
+ corba_object = bonobo_object_activate_servant (BONOBO_OBJECT (dnd_destination),
+ servant);
+
+ evolution_shell_component_dnd_destination_folder_construct (dnd_destination,
+ handle_motion, handle_drop,
+ user_data,
+ corba_object);
+ return dnd_destination;
+}
+
diff --git a/shell/evolution-shell-component-dnd.h b/shell/evolution-shell-component-dnd.h
new file mode 100644
index 0000000000..66994186fb
--- /dev/null
+++ b/shell/evolution-shell-component-dnd.h
@@ -0,0 +1,127 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* evolution-shell-component-dnd.h
+ *
+ * Copyright (C) 2000, 2001 Ximian, Inc.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Chris Toshok
+ */
+
+#ifndef EVOLUTION_SHELL_COMPONENT_DND_H
+#define EVOLUTION_SHELL_COMPONENT_DND_H
+
+#include <bonobo/bonobo-object.h>
+#include "Evolution.h"
+
+#ifdef cplusplus
+extern "C" {
+#pragma }
+#endif /* cplusplus */
+
+/* Source Folder stuff */
+#define EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_TYPE (evolution_shell_component_dnd_source_folder_get_type ())
+#define EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER(obj) (GTK_CHECK_CAST ((obj), EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_TYPE, EvolutionShellComponentDndSourceFolder))
+#define EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_TYPE, EvolutionShellComponentDndSourceFolderClass))
+#define IS_EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER(obj) (GTK_CHECK_TYPE ((obj), EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_TYPE))
+#define IS_EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EVOLUTION_SHELL_COMPONENT_DND_SOURCE_FOLDER_TYPE))
+
+typedef struct _DndSourceFolderPrivate DndSourceFolderPrivate;
+typedef struct _EvolutionShellComponentDndSourceFolder EvolutionShellComponentDndSourceFolder;
+typedef struct _EvolutionShellComponentDndSourceFolderClass EvolutionShellComponentDndSourceFolderClass;
+
+typedef void (*DndSourceFolderBeginDragFn)(EvolutionShellComponentDndSourceFolder *folder,
+ const char *physical_uri,
+ const char *folder_type,
+ GNOME_Evolution_ShellComponentDnd_ActionSet *possible_actions_return,
+ GNOME_Evolution_ShellComponentDnd_Action *suggested_action_return,
+ gpointer closure);
+typedef void (*DndSourceFolderGetDataFn)(EvolutionShellComponentDndSourceFolder *folder,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context * source_context,
+ const GNOME_Evolution_ShellComponentDnd_Action action,
+ const char * dnd_type,
+ GNOME_Evolution_ShellComponentDnd_Data ** data_return,
+ CORBA_Environment *ev,
+ gpointer closure);
+typedef void (*DndSourceFolderDeleteDataFn)(EvolutionShellComponentDndSourceFolder *folder,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context *source_context,
+ gpointer closure);
+typedef void (*DndSourceFolderEndDragFn)(EvolutionShellComponentDndSourceFolder *folder,
+ const GNOME_Evolution_ShellComponentDnd_SourceFolder_Context *source_context,
+ gpointer closure);
+
+struct _EvolutionShellComponentDndSourceFolder {
+ BonoboObject object;
+ DndSourceFolderPrivate *priv;
+};
+
+struct _EvolutionShellComponentDndSourceFolderClass {
+ BonoboObjectClass parent_class;
+};
+
+GtkType evolution_shell_component_dnd_source_folder_get_type (void);
+
+EvolutionShellComponentDndSourceFolder*
+evolution_shell_component_dnd_source_folder_new (DndSourceFolderBeginDragFn begin_drag,
+ DndSourceFolderGetDataFn get_data,
+ DndSourceFolderDeleteDataFn delete_data,
+ DndSourceFolderEndDragFn end_drag,
+ gpointer user_data);
+
+
+
+/* Destination Folder stuff */
+#define EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_TYPE (evolution_shell_component_dnd_destination_folder_get_type ())
+#define EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER(obj) (GTK_CHECK_CAST ((obj), EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_TYPE, EvolutionShellComponentDndDestinationFolder))
+#define EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_TYPE, EvolutionShellComponentDndDestinationFolderClass))
+#define IS_EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER(obj) (GTK_CHECK_TYPE ((obj), EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_TYPE))
+#define IS_EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EVOLUTION_SHELL_COMPONENT_DND_DESTINATION_FOLDER_TYPE))
+
+typedef struct _DndDestinationFolderPrivate DndDestinationFolderPrivate;
+typedef struct _EvolutionShellComponentDndDestinationFolder EvolutionShellComponentDndDestinationFolder;
+typedef struct _EvolutionShellComponentDndDestinationFolderClass EvolutionShellComponentDndDestinationFolderClass;
+
+typedef CORBA_boolean (*DndDestinationFolderHandleMotionFn)(EvolutionShellComponentDndDestinationFolder *folder,
+ const GNOME_Evolution_ShellComponentDnd_DestinationFolder_Context * destination_context,
+ GNOME_Evolution_ShellComponentDnd_Action * suggested_action_return,
+ gpointer closure);
+typedef CORBA_boolean (*DndDestinationFolderHandleDropFn)(EvolutionShellComponentDndDestinationFolder *folder,
+ const GNOME_Evolution_ShellComponentDnd_DestinationFolder_Context * destination_context,
+ const GNOME_Evolution_ShellComponentDnd_Action action,
+ const GNOME_Evolution_ShellComponentDnd_Data * data,
+ gpointer closure);
+
+struct _EvolutionShellComponentDndDestinationFolder {
+ BonoboObject object;
+ DndDestinationFolderPrivate *priv;
+};
+
+struct _EvolutionShellComponentDndDestinationFolderClass {
+ BonoboObjectClass parent_class;
+};
+
+GtkType evolution_shell_component_dnd_destination_folder_get_type (void);
+
+EvolutionShellComponentDndDestinationFolder*
+evolution_shell_component_dnd_destination_folder_new (DndDestinationFolderHandleMotionFn handle_motion,
+ DndDestinationFolderHandleDropFn handle_drop,
+ gpointer user_data);
+
+#ifdef cplusplus
+}
+#endif /* cplusplus */
+
+#endif /* EVOLUTION_SHELL_COMPONENT_DND_H */