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
|
|
30 #define UI_SVIS(obj) GTK_CHECK_CAST (obj, ui_svis_get_type (), UiSVis)
|
|
31 #define UI_SVIS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_svis_get_type (), UiSVisClass)
|
|
32 #define UI_IS_SVIS(obj) GTK_CHECK_TYPE (obj, ui_svis_get_type ())
|
|
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);
|
|
55 GtkType ui_svis_get_type(void);
|
|
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
|