#include "wx/intl.h"
#include "wx/checklst.h"
+#if wxUSE_DRAG_AND_DROP
+#include "wx/dnd.h"
+#endif
+
+#include "gdk/gdk.h"
+#include "gtk/gtk.h"
+
//-------------------------------------------------------------------------
// conditional compilation
//-------------------------------------------------------------------------
ConnectWidget( list_item );
+#if wxUSE_DRAG_AND_DROP
#ifndef NEW_GTK_DND_CODE
if (m_dropTarget) m_dropTarget->RegisterWidget( list_item );
#endif
+#endif
}
void wxListBox::Append( const wxString &item )
wxCHECK_RET( child, "wrong listbox index" );
- GList *list = g_list_append( NULL, child->data );
+ GList *list = g_list_append( (GList*) NULL, child->data );
gtk_list_remove_items( m_list, list );
g_list_free( list );
return -1;
}
+#if wxUSE_DRAG_AND_DROP
void wxListBox::SetDropTarget( wxDropTarget *dropTarget )
{
wxCHECK_RET( m_list != NULL, "invalid listbox" );
}
#endif
}
+#endif
GtkWidget *wxListBox::GetConnectWidget()
{