Mercurial > audlegacy-plugins
annotate src/skins/ui_skinned_menurow.h @ 3182:631d217913e0
alsa-ng: Fix arithmetic overflow on 32-bit systems.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Fri, 12 Jun 2009 09:17:09 -0400 |
parents | 963796db51ea |
children |
rev | line source |
---|---|
2581 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Tomasz Moń | |
4 * | |
5 * Based on: | |
6 * BMP - Cross-platform multimedia player | |
7 * Copyright (C) 2003-2004 BMP development team. | |
8 * XMMS: | |
9 * Copyright (C) 1998-2003 XMMS development team. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; under version 3 of the License. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program. If not, see <http://www.gnu.org/licenses>. | |
22 * | |
23 * The Audacious team does not consider modular code linking to | |
24 * Audacious or using our public API to be a derived work. | |
25 */ | |
26 | |
27 #ifndef AUDACIOUS_UI_SKINNED_MENUROW_H | |
28 #define AUDACIOUS_UI_SKINNED_MENUROW_H | |
29 | |
30 #include <gtk/gtk.h> | |
31 #include "ui_skin.h" | |
32 | |
33 #ifdef __cplusplus | |
34 extern "C" { | |
35 #endif | |
36 | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
37 #define UI_SKINNED_MENUROW(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, ui_skinned_menurow_get_type (), UiSkinnedMenurow) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
38 #define UI_SKINNED_MENUROW_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, ui_skinned_menurow_get_type (), UiSkinnedMenurowClass) |
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
39 #define UI_SKINNED_IS_MENUROW(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, ui_skinned_menurow_get_type ()) |
2581 | 40 |
41 typedef struct _UiSkinnedMenurow UiSkinnedMenurow; | |
42 typedef struct _UiSkinnedMenurowClass UiSkinnedMenurowClass; | |
43 | |
44 typedef enum { | |
45 MENUROW_NONE, MENUROW_OPTIONS, MENUROW_ALWAYS, MENUROW_FILEINFOBOX, | |
46 MENUROW_SCALE, MENUROW_VISUALIZATION | |
47 } MenuRowItem; | |
48 | |
49 struct _UiSkinnedMenurow { | |
50 GtkWidget widget; | |
51 | |
2888
7c7471554d88
convert some widgets into windowless ones
Tomasz Mon <desowin@gmail.com>
parents:
2581
diff
changeset
|
52 GdkWindow *event_window; |
2581 | 53 gint x, y, width, height; |
54 gboolean scaled; | |
55 gint nx, ny; | |
56 gint sx, sy; | |
57 MenuRowItem selected; | |
58 gboolean always_selected; | |
59 gboolean scale_selected; | |
60 gboolean pushed; | |
61 SkinPixmapId skin_index; | |
62 }; | |
63 | |
64 struct _UiSkinnedMenurowClass { | |
65 GtkWidgetClass parent_class; | |
66 void (* scaled) (UiSkinnedMenurow *menurow); | |
67 void (* change) (UiSkinnedMenurow *menurow); | |
68 void (* release) (UiSkinnedMenurow *menurow); | |
69 }; | |
70 | |
71 GtkWidget* ui_skinned_menurow_new (GtkWidget *fixed, gint x, gint y, gint nx, gint ny, gint sx, gint sy, SkinPixmapId si); | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2888
diff
changeset
|
72 GType ui_skinned_menurow_get_type(void); |
2581 | 73 |
74 #ifdef __cplusplus | |
75 } | |
76 #endif | |
77 | |
78 #endif /* AUDACIOUS_UI_SKINNED_MENUROW_H */ |