Mercurial > audlegacy
annotate src/audacious/ui_skinned_playlist.h @ 4621:fb56923e8206
Updated pkg.m4.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Thu, 05 Jun 2008 16:04:18 +0300 |
parents | 2eee464379dc |
children |
rev | line source |
---|---|
3217 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3840 | 3 * Copyright (c) 2007 Tomasz Moń |
3217 | 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 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4508
diff
changeset
|
27 #ifndef AUDACIOUS_UI_SKINNED_PLAYLIST_H |
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4508
diff
changeset
|
28 #define AUDACIOUS_UI_SKINNED_PLAYLIST_H |
3217 | 29 |
3219 | 30 #include <gtk/gtk.h> |
4386
93d13f5c0980
Partially rewrite this code in cairo. Features include:
William Pitcock <nenolod@atheme.org>
parents:
3840
diff
changeset
|
31 |
93d13f5c0980
Partially rewrite this code in cairo. Features include:
William Pitcock <nenolod@atheme.org>
parents:
3840
diff
changeset
|
32 #include <cairo.h> |
93d13f5c0980
Partially rewrite this code in cairo. Features include:
William Pitcock <nenolod@atheme.org>
parents:
3840
diff
changeset
|
33 #include <pango/pangocairo.h> |
93d13f5c0980
Partially rewrite this code in cairo. Features include:
William Pitcock <nenolod@atheme.org>
parents:
3840
diff
changeset
|
34 |
4508
246244ead30e
renamed skin.* to ui_skin.* and moved ui_skinned_widget_draw() to it
mf0102 <0102@gmx.at>
parents:
4386
diff
changeset
|
35 #include "ui_skin.h" |
3219 | 36 |
3217 | 37 #ifdef __cplusplus |
38 extern "C" { | |
39 #endif | |
40 | |
41 #define UI_SKINNED_PLAYLIST(obj) GTK_CHECK_CAST (obj, ui_skinned_playlist_get_type (), UiSkinnedPlaylist) | |
42 #define UI_SKINNED_PLAYLIST_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_skinned_playlist_get_type (), UiSkinnedPlaylistClass) | |
43 #define UI_SKINNED_IS_PLAYLIST(obj) GTK_CHECK_TYPE (obj, ui_skinned_playlist_get_type ()) | |
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 void (* redraw) (UiSkinnedPlaylist *playlist); | |
63 }; | |
64 | |
65 GtkWidget* ui_skinned_playlist_new(GtkWidget *fixed, gint x, gint y, gint w, gint h); | |
66 GtkType ui_skinned_playlist_get_type(void); | |
67 void ui_skinned_playlist_resize_relative(GtkWidget *widget, gint w, gint h); | |
68 void ui_skinned_playlist_set_font(const gchar * font); | |
69 void ui_skinned_playlist_move_up(UiSkinnedPlaylist *pl); | |
70 void ui_skinned_playlist_move_down(UiSkinnedPlaylist *pl); | |
71 gint ui_skinned_playlist_get_position(GtkWidget *widget, gint x, gint y); | |
72 | |
73 #ifdef __cplusplus | |
74 } | |
75 #endif | |
76 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4508
diff
changeset
|
77 #endif /* AUDACIOUS_UI_SKINNED_PLAYLIST_H */ |