Mercurial > audlegacy-plugins
annotate src/skins/ui_svis.h @ 3203:f5456241bff9 default tip
changed include path from audacious to audlegacy.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 10 Nov 2009 05:19:25 +0900 |
parents | 963796db51ea |
children |
rev | line source |
---|---|
2579 | 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 | |
7 * the Free Software Foundation; under version 3 of the License. | |
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 | |
15 * along with this program. If not, see <http://www.gnu.org/licenses>. | |
16 * | |
17 * The Audacious team does not consider modular code linking to | |
18 * Audacious or using our public API to be a derived work. | |
19 */ | |
20 | |
21 #ifndef UISVIS_H | |
22 #define UISVIS_H | |
23 | |
24 #include <gtk/gtk.h> | |
25 | |
26 #ifdef __cplusplus | |
27 extern "C" { | |
28 #endif | |
29 | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2579
diff
changeset
|
30 #define UI_SVIS(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, ui_svis_get_type (), UiSVis) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2579
diff
changeset
|
31 #define UI_SVIS_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, ui_svis_get_type (), UiSVisClass) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2579
diff
changeset
|
32 #define UI_IS_SVIS(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, ui_svis_get_type ()) |
2579 | 33 |
34 typedef struct _UiSVis UiSVis; | |
35 typedef struct _UiSVisClass UiSVisClass; | |
36 | |
37 struct _UiSVis { | |
38 GtkWidget widget; | |
39 | |
40 gint x, y, width, height; | |
41 gint data[75]; | |
42 gint refresh_delay; | |
43 gboolean scaled; | |
44 GtkWidget *fixed; | |
45 gboolean visible_window; | |
46 GdkWindow *event_window; | |
47 }; | |
48 | |
49 struct _UiSVisClass { | |
50 GtkWidgetClass parent_class; | |
51 void (* scaled) (UiSVis *vis); | |
52 }; | |
53 | |
54 GtkWidget* ui_svis_new (GtkWidget *fixed, gint x, gint y); | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2579
diff
changeset
|
55 GType ui_svis_get_type(void); |
2579 | 56 void ui_svis_clear_data(GtkWidget *widget); |
57 void ui_svis_timeout_func(GtkWidget *widget, guchar * data); | |
58 void ui_svis_set_visible(GtkWidget *widget, gboolean window_is_visible); | |
59 | |
60 #ifdef __cplusplus | |
61 } | |
62 #endif | |
63 | |
64 #endif |