annotate src/audacious/ui_svis.h @ 3097:bb1fa0aed8f4

add url unescape code to playlist_get_info_text().
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Thu, 19 Jul 2007 12:49:50 +0900
parents 34f37c59e87b
children 3b6d316f8b09
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
7 * the Free Software Foundation; under version 2 of the License.
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
15 * along with this program; if not, write to the Free Software
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
19 #ifndef UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
20 #define UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
21
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
22 #include <gdk/gdk.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
23 #include <gtk/gtkadjustment.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
24 #include <gtk/gtkwidget.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
25
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
26 #ifdef __cplusplus
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
27 extern "C" {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
28 #endif
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
29
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
30 #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
31 #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
32 #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
33
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
34 typedef struct _UiSVis UiSVis;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
35 typedef struct _UiSVisClass UiSVisClass;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
36
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
37 struct _UiSVis {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
38 GtkWidget widget;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
39
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
40 gint x, y, width, height;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
41 gint data[75];
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
42 gint refresh_delay;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
43 gboolean double_size;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
44 GtkWidget *fixed;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
45 gboolean visible_window;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
46 GdkWindow *event_window;
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
49 struct _UiSVisClass {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
50 GtkWidgetClass parent_class;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
51 void (* doubled) (UiSVis *vis);
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
54 GtkWidget* ui_svis_new (GtkWidget *fixed, gint x, gint y);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
55 GtkType ui_svis_get_type(void);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
56 void ui_svis_clear_data(GtkWidget *widget);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
57 void ui_svis_timeout_func(GtkWidget *widget, guchar * data);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
58 void ui_svis_set_visible(GtkWidget *widget, gboolean window_is_visible);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
59
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
60 #ifdef __cplusplus
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
61 }
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
62 #endif
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
63
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
64 #endif