annotate src/audacious/ui_svis.h @ 3141:a2f1d831065f trunk

when mime match succeed, pr->ip should be obtained ip.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Sun, 22 Jul 2007 12:08:08 +0900
parents f1c756f39e6c
children 2f08ee945857
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>.
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.
3054
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
19 */
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 #ifndef UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
22 #define UISVIS_H
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
23
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
24 #include <gdk/gdk.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
25 #include <gtk/gtkadjustment.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
26 #include <gtk/gtkwidget.h>
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
27
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
28 #ifdef __cplusplus
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
29 extern "C" {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
30 #endif
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
31
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
32 #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
33 #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
34 #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
35
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
36 typedef struct _UiSVis UiSVis;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
37 typedef struct _UiSVisClass UiSVisClass;
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 struct _UiSVis {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
40 GtkWidget widget;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
41
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
42 gint x, y, width, height;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
43 gint data[75];
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
44 gint refresh_delay;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
45 gboolean double_size;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
46 GtkWidget *fixed;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
47 gboolean visible_window;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
48 GdkWindow *event_window;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
49 };
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
50
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
51 struct _UiSVisClass {
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
52 GtkWidgetClass parent_class;
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
53 void (* doubled) (UiSVis *vis);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
54 };
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
55
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
56 GtkWidget* ui_svis_new (GtkWidget *fixed, gint x, gint y);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
57 GtkType ui_svis_get_type(void);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
58 void ui_svis_clear_data(GtkWidget *widget);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
59 void ui_svis_timeout_func(GtkWidget *widget, guchar * data);
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
60 void ui_svis_set_visible(GtkWidget *widget, gboolean window_is_visible);
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 #ifdef __cplusplus
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
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
65
34f37c59e87b replace svis with UiSVis
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
66 #endif