2313
|
1 /* Audacious - Cross-platform multimedia player
|
|
2 * Copyright (C) 2005-2007 Audacious development team
|
|
3 *
|
|
4 * Based on BMP:
|
|
5 * Copyright (C) 2003-2004 BMP development team
|
|
6 *
|
|
7 * Based on XMMS:
|
|
8 * Copyright (C) 1998-2003 XMMS development team
|
|
9 *
|
|
10 * This program is free software; you can redistribute it and/or modify
|
|
11 * it under the terms of the GNU General Public License as published by
|
|
12 * the Free Software Foundation; under version 2 of the License.
|
|
13 *
|
|
14 * This program is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
22 */
|
|
23
|
2365
|
24 #ifndef DND_H
|
|
25 #define DND_H
|
|
26
|
2313
|
27 #include <gtk/gtk.h>
|
|
28
|
|
29 /* Designate dropped data types that we know and care about */
|
|
30 enum {
|
|
31 BMP_DROP_STRING,
|
|
32 BMP_DROP_PLAINTEXT,
|
|
33 BMP_DROP_URLENCODED,
|
|
34 BMP_DROP_SKIN,
|
|
35 BMP_DROP_FONT
|
|
36 };
|
|
37
|
|
38 /* Drag data format listing for gtk_drag_dest_set() */
|
|
39 static const GtkTargetEntry bmp_drop_types[] = {
|
|
40 {"text/plain", 0, BMP_DROP_PLAINTEXT},
|
|
41 {"text/uri-list", 0, BMP_DROP_URLENCODED},
|
|
42 {"STRING", 0, BMP_DROP_STRING},
|
|
43 {"interface/x-winamp-skin", 0, BMP_DROP_SKIN},
|
|
44 {"application/x-font-ttf", 0, BMP_DROP_FONT},
|
|
45 };
|
|
46
|
2365
|
47 void bmp_drag_dest_set(GtkWidget*);
|
|
48
|
|
49 #endif
|