Mercurial > audlegacy
annotate src/audacious/ui_svis.h @ 3896:e794ae16017e
Add missing gtk_window_set_type_hint.
This fixes popups showing animations in compiz / beryl.
author | Jonathan Schleifer <js-audacious@webkeks.org> |
---|---|
date | Sat, 03 Nov 2007 09:12:44 +0100 |
parents | 2f08ee945857 |
children | 75d99359357b |
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 | |
3219 | 24 #include <gtk/gtk.h> |
3054 | 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 |