comparison src/audacious/ui_svis.h @ 3054:34f37c59e87b

replace svis with UiSVis
author Tomasz Mon <desowin@gmail.com>
date Fri, 13 Jul 2007 11:40:00 +0200
parents
children 3b6d316f8b09
comparison
equal deleted inserted replaced
3053:712b3d476e06 3054:34f37c59e87b
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 2 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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19 #ifndef UISVIS_H
20 #define UISVIS_H
21
22 #include <gdk/gdk.h>
23 #include <gtk/gtkadjustment.h>
24 #include <gtk/gtkwidget.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 double_size;
44 GtkWidget *fixed;
45 gboolean visible_window;
46 GdkWindow *event_window;
47 };
48
49 struct _UiSVisClass {
50 GtkWidgetClass parent_class;
51 void (* doubled) (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