annotate audacious/widgets/vis.h @ 1541:06329cbf186a trunk

[svn] this massive commit does the following: - seriously cleans up dependencies on the WA2-like gui code - moves all of the WA2 stuff into a seperate library (libwidgets.a) - makes things less icky in the player tree
author nenolod
date Wed, 09 Aug 2006 02:47:22 -0700
parents
children 7c7195221c0b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
3 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
4 * Based on XMMS:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
6 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
10 * (at your option) any later version.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
11 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
16 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
20 */
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
21 #ifndef VIS_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
22 #define VIS_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
23
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
24 #include <glib.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
25 #include <gdk/gdk.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
26
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
27 #include "widget.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
28
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
29 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
30 VIS_ANALYZER, VIS_SCOPE, VIS_OFF
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
31 } VisType;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
32
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
33 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
34 ANALYZER_NORMAL, ANALYZER_FIRE, ANALYZER_VLINES
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
35 } AnalyzerMode;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
36
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
37 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
38 ANALYZER_LINES, ANALYZER_BARS
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
39 } AnalyzerType;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
40
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
41 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
42 SCOPE_DOT, SCOPE_LINE, SCOPE_SOLID
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
43 } ScopeMode;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
44
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
45 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
46 VU_NORMAL, VU_SMOOTH
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
47 } VUMode;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
48
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
49 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
50 REFRESH_FULL, REFRESH_HALF, REFRESH_QUARTER, REFRESH_EIGTH
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
51 } RefreshRate;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
52
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
53 typedef enum {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
54 FALLOFF_SLOWEST, FALLOFF_SLOW, FALLOFF_MEDIUM, FALLOFF_FAST,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
55 FALLOFF_FASTEST
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
56 } FalloffSpeed;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
57
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
58 #define VIS(x) ((Vis *)(x))
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
59 struct _Vis {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
60 Widget vs_widget;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
61 GdkWindow *vs_window;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
62 gfloat vs_data[75], vs_peak[75], vs_peak_speed[75];
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
63 gint vs_refresh_delay;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
64 };
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
65
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
66 typedef struct _Vis Vis;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
67
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
68 void vis_draw(Widget * w);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
69
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
70 Vis *create_vis(GList ** wlist, GdkPixmap * parent, GdkWindow * window,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
71 GdkGC * gc, gint x, gint y, gint width);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
72 void vis_timeout_func(Vis * vis, guchar * data);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
73 void vis_clear_data(Vis * vis);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
74 void vis_clear(Vis * vis);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
75 void vis_set_window(Vis * vis, GdkWindow * window);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
76
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
77 #endif