32 #ifndef DRAG_AND_DROP_H
34 #define DRAG_AND_DROP_H
36 #include "all_includes.h"
39 DND_SINGLE_MODE_AUDIO_FILE,
40 DND_BATCH_MODE_AUDIO_FILES,
42 DND_SINGLE_MODE_AUDIO_FILE_AND_DATA_FILES,
51 static const GtkTargetEntry drop_types[] = {
52 {
"text/plain", 0, DROP_PLAIN },
53 {
"STRING", 0, DROP_STRING },
54 {
"text/uri-list", 0, DROP_URI_LIST }
57 void dnd_add_drag_data_received_to_widget(GtkWidget *widget, drop_type type,
ui_state *ui);