// Name: dnd.cpp
// Purpose: wxDropTarget class
// Author: Robert Roebling
-// Copyright: Robert Roebling
-// Licence: wxWindows license
+// Id: $Id$
+// Copyright: (c) 1998 Robert Roebling
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
wxDropTarget::wxDropTarget()
{
+ m_size = 0;
}
wxDropTarget::~wxDropTarget()
{
}
-void wxDropTarget::Drop( GdkEvent *event, int x, int y )
+void wxDropTarget::Drop( GdkEventDropDataAvailable *event, int x, int y )
{
- printf( "Drop data is of type %s.\n", event->dropdataavailable.data_type );
+ printf( "Drop data is of type %s.\n", event->data_type );
- OnDrop( x, y, (char *)event->dropdataavailable.data);
+ OnDrop( x, y, (char *)event->data);
}
void wxDropTarget::UnregisterWidget( GtkWidget *widget )
// wxFileDropTarget
// ----------------------------------------------------------------------------
-bool wxFileDropTarget::OnDropFiles( long x, long y, size_t nFiles, const char * const WXUNUSED(aszFiles)[] )
+bool wxFileDropTarget::OnDropFiles( long x, long y, size_t nFiles, const char * const aszFiles[] )
{
printf( "Got %d dropped files.\n", (int)nFiles );
printf( "At x: %d, y: %d.\n", (int)x, (int)y );
+ for (size_t i = 0; i < nFiles; i++)
+ {
+ printf( aszFiles[i] );
+ printf( "\n" );
+ }
return TRUE;
}
-bool wxFileDropTarget::OnDrop(long x, long y, const void *WXUNUSED(pData) )
+bool wxFileDropTarget::OnDrop(long x, long y, const void *pData )
{
- char *str = "/this/is/a/path.txt";
+ size_t number = 0;
+ char *text = (char*) pData;
+ for (int i = 0; i < m_size; i++)
+ if (text[i] == 0) number++;
- return OnDropFiles(x, y, 1, &str );
+ if (number == 0) return TRUE;
+
+ char **files = new char*[number];
+
+ text = (char*) pData;
+ for (size_t i = 0; i < number; i++)
+ {
+ files[i] = text;
+ int len = strlen( text );
+ text += len+1;
+ }
+
+ bool ret = OnDropFiles(x, y, 1, files );
+
+ free( files );
+
+ return ret;
}
size_t wxFileDropTarget::GetFormatCount() const
delete ptr;
- source->m_retValue = wxDropSource::Copy;
+ source->m_retValue = wxDragCopy;
}
wxDropSource::wxDropSource( wxWindow *win )
if (win->m_wxwindow) m_widget = win->m_wxwindow;
m_data = (wxDataObject *) NULL;
- m_retValue = Cancel;
+ m_retValue = wxDragCancel;
m_defaultCursor = wxCursor( wxCURSOR_NO_ENTRY );
m_goaheadCursor = wxCursor( wxCURSOR_HAND );
m_window = win;
m_widget = win->m_widget;
if (win->m_wxwindow) m_widget = win->m_wxwindow;
- m_retValue = Cancel;
+ m_retValue = wxDragCancel;
m_data = &data;
g_blockEventsOnDrag = FALSE;
}
-wxDropSource::DragResult wxDropSource::DoDragDrop( bool WXUNUSED(bAllowMove) )
+wxDragResult wxDropSource::DoDragDrop( bool WXUNUSED(bAllowMove) )
{
- if (gdk_dnd.dnd_grabbed) return (wxDropSource::DragResult) None;
- if (gdk_dnd.drag_really) return (wxDropSource::DragResult) None;
+ if (gdk_dnd.dnd_grabbed) return (wxDragResult) wxDragNone;
+ if (gdk_dnd.drag_really) return (wxDragResult) wxDragNone;
wxASSERT_MSG( m_data, "wxDragSource: no data" );
- if (!m_data) return (wxDropSource::DragResult) None;
- if (m_data->GetDataSize() == 0) return (wxDropSource::DragResult) None;
+ if (!m_data) return (wxDragResult) wxDragNone;
+ if (m_data->GetDataSize() == 0) return (wxDragResult) wxDragNone;
GdkWindowPrivate *wp = (GdkWindowPrivate*) m_widget->window;