r279: Can now set run actions by dragging.
[rox-filer/ma.git] / ROX-Filer / src / dnd.h
blob3a325b5e6e8bf618e8fcbb6d782680dbf07585bd
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"
13 #include "filer.h"
15 void drag_selection(Collection *collection,
16 GdkEventMotion *event,
17 gint number_selected,
18 FilerWindow *filer_window);
19 void drag_data_get(GtkWidget *widget,
20 GdkDragContext *context,
21 GtkSelectionData *selection_data,
22 guint info,
23 guint32 time,
24 FilerWindow *filer_window);
25 void drag_set_dest(FilerWindow *filer_window);
26 void dnd_init();
27 GtkWidget *create_dnd_options();
29 #endif /* _DND_H */