Mercurial > audlegacy-plugins
annotate src/skins/ui_skinned_playlist_slider.h @ 3102:6520d2c15c6f
gio: do not register file:// twice by filtering it from the list
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Thu, 30 Apr 2009 09:45:04 -0500 |
parents | 963796db51ea |
children |
rev | line source |
---|---|
2620 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Tomasz Moń | |
4 * | |
5 * Based on: | |
6 * BMP - Cross-platform multimedia player | |
7 * Copyright (C) 2003-2004 BMP development team. | |
8 * XMMS: | |
9 * Copyright (C) 1998-2003 XMMS development team. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; under version 3 of the License. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program. If not, see <http://www.gnu.org/licenses>. | |
22 * | |
23 * The Audacious team does not consider modular code linking to | |
24 * Audacious or using our public API to be a derived work. | |
25 */ | |
26 | |
27 #ifndef AUDACIOUS_UI_SKINNED_PLAYLIST_SLIDER_H | |
28 #define AUDACIOUS_UI_SKINNED_PLAYLIST_SLIDER_H | |
29 | |
30 #include <gtk/gtk.h> | |
31 | |
32 #ifdef __cplusplus | |
33 extern "C" { | |
34 #endif | |
35 | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
36 #define UI_SKINNED_PLAYLIST_SLIDER(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, ui_skinned_playlist_slider_get_type (), UiSkinnedPlaylistSlider) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
37 #define UI_SKINNED_PLAYLIST_SLIDER_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, ui_skinned_playlist_slider_get_type (), UiSkinnedPlaylistSliderClass) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
38 #define UI_SKINNED_IS_PLAYLIST_SLIDER(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, ui_skinned_playlist_slider_get_type ()) |
2620 | 39 |
40 typedef struct _UiSkinnedPlaylistSlider UiSkinnedPlaylistSlider; | |
41 typedef struct _UiSkinnedPlaylistSliderClass UiSkinnedPlaylistSliderClass; | |
42 | |
43 struct _UiSkinnedPlaylistSlider { | |
44 GtkWidget widget; | |
45 gboolean pressed; | |
46 gint x, y; | |
47 }; | |
48 | |
49 struct _UiSkinnedPlaylistSliderClass { | |
50 GtkWidgetClass parent_class; | |
51 }; | |
52 | |
53 GtkWidget* ui_skinned_playlist_slider_new(GtkWidget *fixed, gint x, gint y, gint h); | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
54 GType ui_skinned_playlist_slider_get_type(void); |
2620 | 55 void ui_skinned_playlist_slider_move_relative(GtkWidget *widget, gint x); |
56 void ui_skinned_playlist_slider_resize_relative(GtkWidget *widget, gint h); | |
57 | |
58 #ifdef __cplusplus | |
59 } | |
60 #endif | |
61 | |
62 #endif /* AUDACIOUS_UI_SKINNED_PLAYLIST_SLIDER_H */ |