r110: Added a option for using RISC OS mouse bindings to the options box, although
[rox-filer.git] / ROX-Filer / src / dnd.h
blob753dac3d275c7f7147cc8cc38c00080182431bad
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _DND_H
9 #define _DND_H
11 #include <gtk/gtk.h>
12 #include "collection.h"
14 void drag_selection(Collection *collection,
15 GdkEventMotion *event,
16 gint number_selected,
17 gpointer user_data);
18 void drag_data_get(GtkWidget *widget,
19 GdkDragContext *context,
20 GtkSelectionData *selection_data,
21 guint info,
22 guint32 time);
23 void drag_set_dest(GtkWidget *widget);
24 void dnd_init();
25 GtkWidget *create_dnd_options();
27 #endif /* _DND_H */