+static void
+source_drag_data_get (GtkWidget *WXUNUSED(widget),
+ GdkDragContext *context,
+ GtkSelectionData *selection_data,
+ guint WXUNUSED(info),
+ guint WXUNUSED(time),
+ wxDropSource *drop_source )
+{
+// char *name = gdk_atom_name( selection_data->target );
+// if (name) printf( "Format requested: %s.\n", name );
+
+ wxNode *node = drop_source->m_data->m_dataObjects.First();
+ while (node)
+ {
+ wxDataObject *data_object = (wxDataObject*) node->Data();
+ if (data_object->GetFormat().GetAtom() == selection_data->target)
+ {
+ size_t data_size = data_object->GetSize();
+ if (data_size > 0)
+ {
+ guchar *buffer = new guchar[data_size];
+ data_object->WriteData( buffer );
+
+ gtk_selection_data_set( selection_data,
+ selection_data->target,
+ 8, /* 8-bit */
+ buffer,
+ data_size );
+
+ free( buffer );
+
+ /* so far only copy, no moves. TODO. */
+ drop_source->m_retValue = wxDragCopy;
+
+ return;
+ }
+ }
+
+ node = node->Next();
+ }
+
+ drop_source->m_retValue = wxDragCancel;
+}
+
+//----------------------------------------------------------------------------
+// "drag_data_delete"
+//----------------------------------------------------------------------------
+
+static void source_drag_data_delete( GtkWidget *WXUNUSED(widget),
+ GdkDragContext *WXUNUSED(context),
+ wxDropSource *drop_source )
+{
+// printf( "Delete the data!\n" );
+
+ drop_source->m_retValue = wxDragMove;
+}
+
+//----------------------------------------------------------------------------
+// "drag_begin"
+//----------------------------------------------------------------------------
+
+static void source_drag_begin( GtkWidget *WXUNUSED(widget),
+ GdkDragContext *WXUNUSED(context),
+ wxDropSource *WXUNUSED(drop_source) )
+{
+// printf( "drag_begin.\n" );
+}
+
+//----------------------------------------------------------------------------
+// "drag_end"
+//----------------------------------------------------------------------------
+
+static void source_drag_end( GtkWidget *WXUNUSED(widget),
+ GdkDragContext *WXUNUSED(context),
+ wxDropSource *drop_source )
+{
+// printf( "drag_end.\n" );
+
+ drop_source->m_waiting = FALSE;
+}
+
+//---------------------------------------------------------------------------
+// wxDropSource
+//---------------------------------------------------------------------------