comparison src/skins/dnd.c @ 2629:2ce9e17525dc

make dnd working in playlistwin
author Tomasz Mon <desowin@gmail.com>
date Thu, 22 May 2008 17:06:59 +0200
parents
children
comparison
equal deleted inserted replaced
2628:c45acc6e352c 2629:2ce9e17525dc
1 /* Audacious
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 3 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, see <http://www.gnu.org/licenses>.
21 *
22 * The Audacious team does not consider modular code linking to
23 * Audacious or using our public API to be a derived work.
24 */
25
26 #include "dnd.h"
27
28 void
29 aud_drag_dest_set(GtkWidget *widget)
30 {
31 gtk_drag_dest_set(widget, GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP,
32 aud_drop_types, 5,
33 GDK_ACTION_COPY | GDK_ACTION_MOVE);
34 }