annotate src/audacious/ui_svis.h @ 3121:3b6d316f8b09 trunk

GPL3 relicensing.
author William Pitcock <nenolod@atheme-project.org>
date Fri, 20 Jul 2007 08:59:47 -0500
parents 34f37c59e87b
children f1c756f39e6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3054
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
1 /*
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
2 * Audacious - a cross-platform multimedia player
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
3 * Copyright (c) 2007 Audacious development team.
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
4 *
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
5 * This program is free software; you can redistribute it and/or modify
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
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: 3054
diff changeset
7 * the Free Software Foundation; under version 3 of the License.
3054
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
8 *
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
9 * This program is distributed in the hope that it will be useful,
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
12 * GNU General Public License for more details.
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
13 *
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
3121
3b6d316f8b09 GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents: 3054
diff changeset
15 * along with this program. If not, see <http://www.gnu.org/licenses>.
3054
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
16 */
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
17
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
18 #ifndef UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
19 #define UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
20
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
21 #include <gdk/gdk.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
22 #include <gtk/gtkadjustment.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
23 #include <gtk/gtkwidget.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
24
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
25 #ifdef __cplusplus
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
26 extern "C" {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
27 #endif
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
28
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
29 #define UI_SVIS(obj) GTK_CHECK_CAST (obj, ui_svis_get_type (), UiSVis)
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
30 #define UI_SVIS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_svis_get_type (), UiSVisClass)
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
31 #define UI_IS_SVIS(obj) GTK_CHECK_TYPE (obj, ui_svis_get_type ())
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
32
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
33 typedef struct _UiSVis UiSVis;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
34 typedef struct _UiSVisClass UiSVisClass;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
35
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
36 struct _UiSVis {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
37 GtkWidget widget;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
38
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
39 gint x, y, width, height;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
40 gint data[75];
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
41 gint refresh_delay;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
42 gboolean double_size;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
43 GtkWidget *fixed;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
44 gboolean visible_window;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
45 GdkWindow *event_window;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
46 };
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
47
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
48 struct _UiSVisClass {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
49 GtkWidgetClass parent_class;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
50 void (* doubled) (UiSVis *vis);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
51 };
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
52
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
53 GtkWidget* ui_svis_new (GtkWidget *fixed, gint x, gint y);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
54 GtkType ui_svis_get_type(void);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
55 void ui_svis_clear_data(GtkWidget *widget);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
56 void ui_svis_timeout_func(GtkWidget *widget, guchar * data);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
57 void ui_svis_set_visible(GtkWidget *widget, gboolean window_is_visible);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
58
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
59 #ifdef __cplusplus
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
60 }
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
61 #endif
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
62
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
63 #endif