comparison src/audacious/legacy/ui_skinned_playstatus.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_PLAYSTATUS_H
28 #define AUDACIOUS_UI_SKINNED_PLAYSTATUS_H
29
30 #include <gtk/gtk.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 gboolean scaled;
52 PStatus status;
53 gboolean buffering;
54 };
55
56 struct _UiSkinnedPlaystatusClass {
57 GtkWidgetClass parent_class;
58 void (* scaled) (UiSkinnedPlaystatus *menurow);
59 };
60
61 GtkWidget* ui_skinned_playstatus_new (GtkWidget *fixed, gint x, gint y);
62 GtkType ui_skinned_playstatus_get_type(void);
63 void ui_skinned_playstatus_set_status(GtkWidget *widget, PStatus status);
64 void ui_skinned_playstatus_set_buffering(GtkWidget *widget, gboolean status);
65 void ui_skinned_playstatus_set_size(GtkWidget *widget, gint width, gint height);
66
67 #ifdef __cplusplus
68 }
69 #endif
70
71 #endif /* AUDACIOUS_UI_SKINNED_PLAYSTATUS_H */