Mercurial > audlegacy
annotate audacious/dnd.h @ 2205:cc6a05baa156 trunk
[svn] - added audacious stock icons; source files wanting to use them must include icons-stock.h; removed obsolete pixmaps.h
author | giacomo |
---|---|
date | Sat, 23 Dec 2006 03:47:44 -0800 |
parents | f18a5b617c34 |
children | 86f0443d0de2 |
rev | line source |
---|---|
0 | 1 /* XMMS - Cross-platform multimedia player |
2 * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies | |
3 * | |
4 * This program is free software; you can redistribute it and/or modify | |
1460 | 5 * it under the terms of the GNU General Public License as published by |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1460
diff
changeset
|
6 * the Free Software Foundation; under version 2 of the License. |
0 | 7 * |
8 * This program is distributed in the hope that it will be useful, | |
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 * GNU General Public License for more details. | |
12 * | |
13 * You should have received a copy of the GNU General Public License | |
14 * along with this program; if not, write to the Free Software | |
1459 | 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 16 */ |
17 | |
18 #include <gtk/gtk.h> | |
19 | |
20 /* Designate dropped data types that we know and care about */ | |
21 enum { | |
22 BMP_DROP_STRING, | |
23 BMP_DROP_PLAINTEXT, | |
24 BMP_DROP_URLENCODED, | |
25 BMP_DROP_SKIN, | |
26 BMP_DROP_FONT | |
27 }; | |
28 | |
29 /* Drag data format listing for gtk_drag_dest_set() */ | |
30 static const GtkTargetEntry bmp_drop_types[] = { | |
31 {"text/plain", 0, BMP_DROP_PLAINTEXT}, | |
32 {"text/uri-list", 0, BMP_DROP_URLENCODED}, | |
33 {"STRING", 0, BMP_DROP_STRING}, | |
34 {"interface/x-winamp-skin", 0, BMP_DROP_SKIN}, | |
35 {"application/x-font-ttf", 0, BMP_DROP_FONT}, | |
36 }; | |
37 | |
38 #define bmp_drag_dest_set(widget) \ | |
39 gtk_drag_dest_set(widget, \ | |
40 GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP, \ | |
41 bmp_drop_types, 5, \ | |
42 GDK_ACTION_COPY | GDK_ACTION_MOVE) |