Mercurial > audlegacy
annotate src/audacious/widgets/playlist_slider.h @ 3097:bb1fa0aed8f4
add url unescape code to playlist_get_info_text().
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Thu, 19 Jul 2007 12:49:50 +0900 |
parents | 41d3854f3625 |
children | 3b6d316f8b09 |
rev | line source |
---|---|
2313 | 1 /* BMP - Cross-platform multimedia player |
2 * Copyright (C) 2003-2004 BMP development team. | |
3 * | |
4 * Based on XMMS: | |
5 * Copyright (C) 1998-2003 XMMS development team. | |
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 | |
3056
41d3854f3625
Set the license explicitly to GPL v2
Tomasz Mon <desowin@gmail.com>
parents:
2313
diff
changeset
|
9 * the Free Software Foundation; under version 2 of the License. |
2313 | 10 * |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
19 */ | |
20 | |
21 #ifndef _WIDGETCORE_H_ | |
22 #error Please do not include me directly! Use widgetcore.h instead! | |
23 #endif | |
24 | |
25 #ifndef PLAYLIST_SLIDER_H | |
26 #define PLAYLIST_SLIDER_H | |
27 | |
28 #include <glib.h> | |
29 #include <gdk/gdk.h> | |
30 | |
31 #include "playlist_list.h" | |
32 #include "widget.h" | |
33 | |
34 #define PLAYLIST_SLIDER(x) ((PlayerlistSlider *)(x)) | |
35 struct _PlaylistSlider { | |
36 Widget ps_widget; | |
37 PlayList_List *ps_list; | |
38 gboolean ps_is_draging; | |
39 gint ps_drag_y, ps_prev_y, ps_prev_height; | |
40 GdkImage *ps_back_image; | |
41 gint ps_skin_id; | |
42 }; | |
43 | |
44 typedef struct _PlaylistSlider PlaylistSlider; | |
45 | |
46 PlaylistSlider *create_playlistslider(GList ** wlist, GdkPixmap * parent, | |
47 GdkGC * gc, gint x, gint y, gint h, | |
48 PlayList_List * list); | |
49 | |
50 #endif |