comparison audacious/playstatus.h @ 1273:3b990c26fc46 trunk

[svn] - Support for the buffer indicator in playpaus.png that was apparently ignored by XMMS devs. Supports mp3 streams only, at the moment.
author nhjm449
date Fri, 16 Jun 2006 02:17:33 -0700
parents cb178e5ad177
children f12d7e208b43
comparison
equal deleted inserted replaced
1272:11785f0bf967 1273:3b990c26fc46
26 26
27 #define PLAY_STATUS(x) ((PlayStatus *)(x)) 27 #define PLAY_STATUS(x) ((PlayStatus *)(x))
28 struct _PlayStatus { 28 struct _PlayStatus {
29 Widget ps_widget; 29 Widget ps_widget;
30 PStatus ps_status; 30 PStatus ps_status;
31 gboolean ps_status_buffering;
31 }; 32 };
32 33
33 typedef struct _PlayStatus PlayStatus; 34 typedef struct _PlayStatus PlayStatus;
34 35
35 void playstatus_set_status(PlayStatus * ps, PStatus status); 36 void playstatus_set_status(PlayStatus * ps, PStatus status);
37 void playstatus_set_status_buffering(PlayStatus * ps, gboolean status);
36 PlayStatus *create_playstatus(GList ** wlist, GdkPixmap * parent, 38 PlayStatus *create_playstatus(GList ** wlist, GdkPixmap * parent,
37 GdkGC * gc, gint x, gint y); 39 GdkGC * gc, gint x, gint y);
38 40
39 #endif 41 #endif