comparison src/audacious/legacy/ui_skinned_playlist.h @ 4700:3a56d2786063

move all files belonging to the legacy UI to legacy/
author mf0102 <0102@gmx.at>
date Sun, 06 Jul 2008 17:55:40 +0200
parents
children
comparison
equal deleted inserted replaced
4698:cfc8d1e0c78b 4700:3a56d2786063
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
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
77 #endif /* AUDACIOUS_UI_SKINNED_PLAYLIST_H */