r323: Improved pinboard support. Files can be dropped onto the pinboard
[rox-filer/ma.git] / ROX-Filer / src / dnd.h
blob9d0f2f2638974cc344fd9fc2fc337b3aa80e2e76
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 drag_set_pinboard_dest(GtkWidget *widget);
27 void dnd_init();
28 GtkWidget *create_dnd_options();
30 #endif /* _DND_H */