comparison src/audacious/widgets/playlist_slider.h @ 2313:3149d4b1a9a9 trunk

[svn] - objective-make autodepend fixes - move all sourcecode into src/ and adjust Makefiles accordingly
author nenolod
date Fri, 12 Jan 2007 11:43:40 -0800
parents
children 41d3854f3625
comparison
equal deleted inserted replaced
2312:e1a5a66fb9cc 2313:3149d4b1a9a9
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
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 */
21
22 #ifndef _WIDGETCORE_H_
23 #error Please do not include me directly! Use widgetcore.h instead!
24 #endif
25
26 #ifndef PLAYLIST_SLIDER_H
27 #define PLAYLIST_SLIDER_H
28
29 #include <glib.h>
30 #include <gdk/gdk.h>
31
32 #include "playlist_list.h"
33 #include "widget.h"
34
35 #define PLAYLIST_SLIDER(x) ((PlayerlistSlider *)(x))
36 struct _PlaylistSlider {
37 Widget ps_widget;
38 PlayList_List *ps_list;
39 gboolean ps_is_draging;
40 gint ps_drag_y, ps_prev_y, ps_prev_height;
41 GdkImage *ps_back_image;
42 gint ps_skin_id;
43 };
44
45 typedef struct _PlaylistSlider PlaylistSlider;
46
47 PlaylistSlider *create_playlistslider(GList ** wlist, GdkPixmap * parent,
48 GdkGC * gc, gint x, gint y, gint h,
49 PlayList_List * list);
50
51 #endif