Mercurial > audlegacy
annotate src/audacious/ui_vis.h @ 3123:f1c756f39e6c trunk audacious-1.4.0-DR1
Invoke "Plugins are not derived work" clause provided by GPL3.
author | William Pitcock <nenolod@atheme-project.org> |
---|---|
date | Fri, 20 Jul 2007 09:09:58 -0500 |
parents | 3b6d316f8b09 |
children | 2f08ee945857 |
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 | |
24 #ifdef __cplusplus | |
25 extern "C" { | |
26 #endif | |
27 | |
28 #define UI_VIS(obj) GTK_CHECK_CAST (obj, ui_vis_get_type (), UiVis) | |
29 #define UI_VIS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_vis_get_type (), UiVisClass) | |
30 #define UI_IS_VIS(obj) GTK_CHECK_TYPE (obj, ui_vis_get_type ()) | |
31 | |
32 typedef enum { | |
33 VIS_ANALYZER, VIS_SCOPE, VIS_VOICEPRINT, VIS_OFF | |
34 } VisType; | |
35 | |
36 typedef enum { | |
37 ANALYZER_NORMAL, ANALYZER_FIRE, ANALYZER_VLINES | |
38 } AnalyzerMode; | |
39 | |
40 typedef enum { | |
41 ANALYZER_LINES, ANALYZER_BARS | |
42 } AnalyzerType; | |
43 | |
44 typedef enum { | |
45 SCOPE_DOT, SCOPE_LINE, SCOPE_SOLID | |
46 } ScopeMode; | |
47 typedef enum { | |
48 VOICEPRINT_NORMAL, VOICEPRINT_FIRE, VOICEPRINT_ICE | |
49 } VoiceprintMode; | |
50 | |
51 | |
52 typedef enum { | |
53 VU_NORMAL, VU_SMOOTH | |
54 } VUMode; | |
55 | |
56 typedef enum { | |
57 REFRESH_FULL, REFRESH_HALF, REFRESH_QUARTER, REFRESH_EIGTH | |
58 } RefreshRate; | |
59 | |
60 typedef enum { | |
61 FALLOFF_SLOWEST, FALLOFF_SLOW, FALLOFF_MEDIUM, FALLOFF_FAST, | |
62 FALLOFF_FASTEST | |
63 } FalloffSpeed; | |
64 | |
65 typedef struct _UiVis UiVis; | |
66 typedef struct _UiVisClass UiVisClass; | |
67 | |
68 struct _UiVis { | |
69 GtkWidget widget; | |
70 | |
71 gint x, y, width, height; | |
72 gfloat data[75], peak[75], peak_speed[75]; | |
73 gint refresh_delay; | |
74 gboolean double_size; | |
75 GtkWidget *fixed; | |
76 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
|
77 GdkWindow *event_window; |
3020 | 78 }; |
79 | |
80 struct _UiVisClass { | |
81 GtkWidgetClass parent_class; | |
82 void (* doubled) (UiVis *vis); | |
83 }; | |
84 | |
85 GtkWidget* ui_vis_new (GtkWidget *fixed, gint x, gint y, gint width); | |
86 GtkType ui_vis_get_type(void); | |
87 void ui_vis_set_vis(GtkWidget *widget, gint num); | |
88 void ui_vis_clear_data(GtkWidget *widget); | |
89 void ui_vis_timeout_func(GtkWidget *widget, guchar * data); | |
90 void ui_vis_set_visible(GtkWidget *widget, gboolean window_is_visible); | |
91 | |
92 #ifdef __cplusplus | |
93 } | |
94 #endif | |
95 | |
96 #endif |