Mercurial > audlegacy
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 |
rev | line source |
---|---|
3054 | 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:
3054
diff
changeset
|
7 * the Free Software Foundation; under version 3 of the License. |
3054 | 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:
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 | 19 */ |
20 | |
21 #ifndef UISVIS_H | |
22 #define UISVIS_H | |
23 | |
24 #include <gdk/gdk.h> | |
25 #include <gtk/gtkadjustment.h> | |
26 #include <gtk/gtkwidget.h> | |
27 | |
28 #ifdef __cplusplus | |
29 extern "C" { | |
30 #endif | |
31 | |
32 #define UI_SVIS(obj) GTK_CHECK_CAST (obj, ui_svis_get_type (), UiSVis) | |
33 #define UI_SVIS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_svis_get_type (), UiSVisClass) | |
34 #define UI_IS_SVIS(obj) GTK_CHECK_TYPE (obj, ui_svis_get_type ()) | |
35 | |
36 typedef struct _UiSVis UiSVis; | |
37 typedef struct _UiSVisClass UiSVisClass; | |
38 | |
39 struct _UiSVis { | |
40 GtkWidget widget; | |
41 | |
42 gint x, y, width, height; | |
43 gint data[75]; | |
44 gint refresh_delay; | |
45 gboolean double_size; | |
46 GtkWidget *fixed; | |
47 gboolean visible_window; | |
48 GdkWindow *event_window; | |
49 }; | |
50 | |
51 struct _UiSVisClass { | |
52 GtkWidgetClass parent_class; | |
53 void (* doubled) (UiSVis *vis); | |
54 }; | |
55 | |
56 GtkWidget* ui_svis_new (GtkWidget *fixed, gint x, gint y); | |
57 GtkType ui_svis_get_type(void); | |
58 void ui_svis_clear_data(GtkWidget *widget); | |
59 void ui_svis_timeout_func(GtkWidget *widget, guchar * data); | |
60 void ui_svis_set_visible(GtkWidget *widget, gboolean window_is_visible); | |
61 | |
62 #ifdef __cplusplus | |
63 } | |
64 #endif | |
65 | |
66 #endif |