Mercurial > audlegacy
annotate src/audacious/ui_vis.h @ 3471:95d8ceb5e1d7 trunk
Automated merge with ssh://hg.atheme.org//hg/audacious
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Sun, 09 Sep 2007 22:59:36 +0300 |
parents | 2f08ee945857 |
children | 742f00832961 |
rev | line source |
---|---|
3020 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Audacious development team. | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3105
diff
changeset
|
7 * the Free Software Foundation; under version 3 of the License. |
3020 | 8 * |
9 * This program is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3105
diff
changeset
|
15 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
16 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
17 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
18 * Audacious or using our public API to be a derived work. |
3020 | 19 */ |
20 | |
21 #ifndef UIVIS_H | |
22 #define UIVIS_H | |
23 | |
3219 | 24 #include <gtk/gtk.h> |
25 | |
3020 | 26 #ifdef __cplusplus |
27 extern "C" { | |
28 #endif | |
29 | |
30 #define UI_VIS(obj) GTK_CHECK_CAST (obj, ui_vis_get_type (), UiVis) | |
31 #define UI_VIS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_vis_get_type (), UiVisClass) | |
32 #define UI_IS_VIS(obj) GTK_CHECK_TYPE (obj, ui_vis_get_type ()) | |
33 | |
34 typedef enum { | |
35 VIS_ANALYZER, VIS_SCOPE, VIS_VOICEPRINT, VIS_OFF | |
36 } VisType; | |
37 | |
38 typedef enum { | |
39 ANALYZER_NORMAL, ANALYZER_FIRE, ANALYZER_VLINES | |
40 } AnalyzerMode; | |
41 | |
42 typedef enum { | |
43 ANALYZER_LINES, ANALYZER_BARS | |
44 } AnalyzerType; | |
45 | |
46 typedef enum { | |
47 SCOPE_DOT, SCOPE_LINE, SCOPE_SOLID | |
48 } ScopeMode; | |
49 typedef enum { | |
50 VOICEPRINT_NORMAL, VOICEPRINT_FIRE, VOICEPRINT_ICE | |
51 } VoiceprintMode; | |
52 | |
53 | |
54 typedef enum { | |
55 VU_NORMAL, VU_SMOOTH | |
56 } VUMode; | |
57 | |
58 typedef enum { | |
59 REFRESH_FULL, REFRESH_HALF, REFRESH_QUARTER, REFRESH_EIGTH | |
60 } RefreshRate; | |
61 | |
62 typedef enum { | |
63 FALLOFF_SLOWEST, FALLOFF_SLOW, FALLOFF_MEDIUM, FALLOFF_FAST, | |
64 FALLOFF_FASTEST | |
65 } FalloffSpeed; | |
66 | |
67 typedef struct _UiVis UiVis; | |
68 typedef struct _UiVisClass UiVisClass; | |
69 | |
70 struct _UiVis { | |
71 GtkWidget widget; | |
72 | |
73 gint x, y, width, height; | |
74 gfloat data[75], peak[75], peak_speed[75]; | |
75 gint refresh_delay; | |
76 gboolean double_size; | |
77 GtkWidget *fixed; | |
78 gboolean visible_window; | |
3058
766a0fd12f7d
do not place GDK_INPUT_ONLY windows in widget->window, use a event_window field for them
Giacomo Lozito <james@develia.org>
parents:
3026
diff
changeset
|
79 GdkWindow *event_window; |
3020 | 80 }; |
81 | |
82 struct _UiVisClass { | |
83 GtkWidgetClass parent_class; | |
84 void (* doubled) (UiVis *vis); | |
85 }; | |
86 | |
87 GtkWidget* ui_vis_new (GtkWidget *fixed, gint x, gint y, gint width); | |
88 GtkType ui_vis_get_type(void); | |
89 void ui_vis_set_vis(GtkWidget *widget, gint num); | |
90 void ui_vis_clear_data(GtkWidget *widget); | |
91 void ui_vis_timeout_func(GtkWidget *widget, guchar * data); | |
92 void ui_vis_set_visible(GtkWidget *widget, gboolean window_is_visible); | |
93 | |
94 #ifdef __cplusplus | |
95 } | |
96 #endif | |
97 | |
98 #endif |