r69: Tidied up the options system a bit. Added drag-and-drop section (with
[rox-filer.git] / ROX-Filer / src / dnd.h
blob9b8463d57cda7df102541f459c0ee768b7532961
1 /* vi: set cindent:
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 */