Simplify vflist_get_formatted()
[geeqie.git] / src / dnd.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef DND_H
23 #define DND_H
24
25 #define TARGET_APP_COLLECTION_MEMBER_STRING "application/x-" GQ_APPNAME_LC "-collection-member"
26 #define TARGET_APP_EXIF_ENTRY_STRING "application/x-" GQ_APPNAME_LC "-exif-entry"
27 #define TARGET_APP_KEYWORD_PATH_STRING "application/x-" GQ_APPNAME_LC "-keyword-path"
28
29 enum {
30         TARGET_APP_COLLECTION_MEMBER,
31         TARGET_APP_EXIF_ENTRY,
32         TARGET_APP_KEYWORD_PATH,
33         TARGET_URI_LIST,
34         TARGET_TEXT_PLAIN
35 };
36
37
38 extern GtkTargetEntry dnd_file_drag_types[];
39 extern gint dnd_file_drag_types_count;
40
41 extern GtkTargetEntry dnd_file_drop_types[];
42 extern gint dnd_file_drop_types_count;
43
44
45 /**
46  * @headerfile dnd_set_drag_icon
47  * sets a drag icon to pixbuf, if items is > 1, text is drawn onto icon to indicate value
48  */
49 void dnd_set_drag_icon(GtkWidget *widget, GdkDragContext *context, GdkPixbuf *pixbuf, gint items);
50
51 void dnd_set_drag_label(GtkWidget *widget, GdkDragContext *context, const gchar *text);
52
53 #endif
54 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */