comparison src/audacious/ui_skinned_playstatus.h @ 3072:84de3244aeaa

replace Playstatus with UiSkinnedPlaystatus
author Tomasz Mon <desowin@gmail.com>
date Fri, 13 Jul 2007 22:28:20 +0200
parents
children 3b6d316f8b09
comparison
equal deleted inserted replaced
3071:5ae86bc2233d 3072:84de3244aeaa
1 /*
2 * Audacious - a cross-platform multimedia player
3 * Copyright (c) 2007 Audacious development team.
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 2 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, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 */
24
25 #ifndef UISKINNEDPLAYSTATUS_H
26 #define UISKINNEDPLAYSTATUS_H
27
28 #include <gdk/gdk.h>
29 #include <gtk/gtkadjustment.h>
30 #include <gtk/gtkwidget.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 #define UI_SKINNED_PLAYSTATUS(obj) GTK_CHECK_CAST (obj, ui_skinned_playstatus_get_type (), UiSkinnedPlaystatus)
37 #define UI_SKINNED_PLAYSTATUS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_skinned_playstatus_get_type (), UiSkinnedPlaystatusClass)
38 #define UI_SKINNED_IS_PLAYSTATUS(obj) GTK_CHECK_TYPE (obj, ui_skinned_playstatus_get_type ())
39
40 typedef struct _UiSkinnedPlaystatus UiSkinnedPlaystatus;
41 typedef struct _UiSkinnedPlaystatusClass UiSkinnedPlaystatusClass;
42
43 typedef enum {
44 STATUS_STOP, STATUS_PAUSE, STATUS_PLAY
45 } PStatus;
46
47 struct _UiSkinnedPlaystatus {
48 GtkWidget widget;
49
50 gint x, y, width, height;
51 GtkWidget *fixed;
52 gboolean double_size;
53 PStatus status;
54 gboolean buffering;
55 };
56
57 struct _UiSkinnedPlaystatusClass {
58 GtkWidgetClass parent_class;
59 void (* doubled) (UiSkinnedPlaystatus *menurow);
60 };
61
62 GtkWidget* ui_skinned_playstatus_new (GtkWidget *fixed, gint x, gint y);
63 GtkType ui_skinned_playstatus_get_type(void);
64 void ui_skinned_playstatus_set_status(GtkWidget *widget, PStatus status);
65 void ui_skinned_playstatus_set_buffering(GtkWidget *widget, gboolean status);
66
67 #ifdef __cplusplus
68 }
69 #endif
70
71 #endif