| [Insert name here] Reference Manual | ||||
|---|---|---|---|---|
enum VisType; enum AnalyzerMode; enum AnalyzerType; enum ScopeMode; enum VoiceprintMode; enum VUMode; enum RefreshRate; enum FalloffSpeed; #define VIS (x) Vis;void vis_draw (Widget *w);void vis_draw_pixel (Vis *vis,guchar *texture,gint x,gint y,guint8 colour); Vis* create_vis (GList **wlist,GdkPixmap *parent,GdkWindow *window,GdkGC *gc,gint x,gint y,gint width,gboolean doublesize);void vis_timeout_func (Vis *vis,guchar *data);void vis_clear_data (Vis *vis);void vis_clear (Vis *vis);void vis_set_doublesize (Vis *vis,gboolean doublesize);void vis_set_window (Vis *vis,GdkWindow *window);
typedef enum {
VOICEPRINT_NORMAL, VOICEPRINT_FIRE, VOICEPRINT_ICE
} VoiceprintMode;
typedef enum {
REFRESH_FULL, REFRESH_HALF, REFRESH_QUARTER, REFRESH_EIGTH
} RefreshRate;
typedef enum {
FALLOFF_SLOWEST, FALLOFF_SLOW, FALLOFF_MEDIUM, FALLOFF_FAST,
FALLOFF_FASTEST
} FalloffSpeed;
typedef struct {
Widget vs_widget;
GdkWindow *vs_window;
gfloat vs_data[75], vs_peak[75], vs_peak_speed[75];
gint vs_refresh_delay;
gboolean vs_doublesize;
} Vis;
void vis_draw_pixel (Vis *vis,guchar *texture,gint x,gint y,guint8 colour);
|
|
|
|
|
|
|
|
|
Vis* create_vis (GList **wlist,GdkPixmap *parent,GdkWindow *window,GdkGC *gc,gint x,gint y,gint width,gboolean doublesize);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns : |