annotate src/skins/dnd.h @ 3203:f5456241bff9 default tip

changed include path from audacious to audlegacy.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 10 Nov 2009 05:19:25 +0900
parents 2ce9e17525dc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2629
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
1 /* Audacious - Cross-platform multimedia player
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
2 * Copyright (C) 2005-2007 Audacious development team
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
3 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
4 * Based on BMP:
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
5 * Copyright (C) 2003-2004 BMP development team
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
6 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
7 * Based on XMMS:
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
8 * Copyright (C) 1998-2003 XMMS development team
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
9 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
10 * This program is free software; you can redistribute it and/or modify
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
11 * it under the terms of the GNU General Public License as published by
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
12 * the Free Software Foundation; under version 3 of the License.
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
13 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
14 * This program is distributed in the hope that it will be useful,
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
17 * GNU General Public License for more details.
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
18 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
20 * along with this program. If not, see <http://www.gnu.org/licenses>.
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
21 *
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
22 * The Audacious team does not consider modular code linking to
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
23 * Audacious or using our public API to be a derived work.
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
24 */
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
25
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
26 #ifndef AUDACIOUS_DND_H
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
27 #define AUDACIOUS_DND_H
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
28
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
29 #include <gtk/gtk.h>
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
30
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
31 /* Designate dropped data types that we know and care about */
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
32 enum {
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
33 BMP_DROP_STRING,
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
34 BMP_DROP_PLAINTEXT,
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
35 BMP_DROP_URLENCODED,
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
36 BMP_DROP_SKIN,
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
37 BMP_DROP_FONT
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
38 };
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
39
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
40 /* Drag data format listing for gtk_drag_dest_set() */
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
41 static const GtkTargetEntry aud_drop_types[] = {
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
42 {"text/plain", 0, BMP_DROP_PLAINTEXT},
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
43 {"text/uri-list", 0, BMP_DROP_URLENCODED},
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
44 {"STRING", 0, BMP_DROP_STRING},
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
45 {"interface/x-winamp-skin", 0, BMP_DROP_SKIN},
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
46 {"application/x-font-ttf", 0, BMP_DROP_FONT},
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
47 };
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
48
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
49 void aud_drag_dest_set(GtkWidget*);
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
50
2ce9e17525dc make dnd working in playlistwin
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
51 #endif /* AUDACIOUS_DND_H */