Mercurial > audlegacy-plugins
annotate src/skins/ui_skinned_playlist.h @ 3167:9739ba93fd79
alsa-ng: Don't try to join threads that have already exited.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 15 May 2009 00:05:17 -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_H | |
28 #define AUDACIOUS_UI_SKINNED_PLAYLIST_H | |
29 | |
30 #include <gtk/gtk.h> | |
31 | |
32 #include <cairo.h> | |
33 #include <pango/pangocairo.h> | |
34 | |
35 #include "ui_skin.h" | |
36 | |
37 #ifdef __cplusplus | |
38 extern "C" { | |
39 #endif | |
40 | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
41 #define UI_SKINNED_PLAYLIST(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, ui_skinned_playlist_get_type (), UiSkinnedPlaylist) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
42 #define UI_SKINNED_PLAYLIST_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, ui_skinned_playlist_get_type (), UiSkinnedPlaylistClass) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
43 #define UI_SKINNED_IS_PLAYLIST(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, ui_skinned_playlist_get_type ()) |
2620 | 44 |
45 typedef struct _UiSkinnedPlaylist UiSkinnedPlaylist; | |
46 typedef struct _UiSkinnedPlaylistClass UiSkinnedPlaylistClass; | |
47 | |
48 struct _UiSkinnedPlaylist { | |
49 GtkWidget widget; | |
50 gboolean pressed; | |
51 gint x, y; | |
52 gint first; | |
53 gint num_visible; | |
54 gint prev_selected, prev_min, prev_max; | |
55 gboolean drag_motion; | |
56 gint drag_motion_x, drag_motion_y; | |
57 gint fheight; | |
58 }; | |
59 | |
60 struct _UiSkinnedPlaylistClass { | |
61 GtkWidgetClass parent_class; | |
62 }; | |
63 | |
64 GtkWidget* ui_skinned_playlist_new(GtkWidget *fixed, gint x, gint y, gint w, gint h); | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
65 GType ui_skinned_playlist_get_type(void); |
2620 | 66 void ui_skinned_playlist_resize_relative(GtkWidget *widget, gint w, gint h); |
67 void ui_skinned_playlist_set_font(const gchar * font); | |
68 void ui_skinned_playlist_move_up(UiSkinnedPlaylist *pl); | |
69 void ui_skinned_playlist_move_down(UiSkinnedPlaylist *pl); | |
70 gint ui_skinned_playlist_get_position(GtkWidget *widget, gint x, gint y); | |
71 | |
72 #ifdef __cplusplus | |
73 } | |
74 #endif | |
75 | |
76 #endif /* AUDACIOUS_UI_SKINNED_PLAYLIST_H */ |