comparison src/audacious/ui_skinned_menurow.h @ 3071:5ae86bc2233d

oops, forgot to include new files
author Tomasz Mon <desowin@gmail.com>
date Fri, 13 Jul 2007 21:49:14 +0200
parents
children 1912eba1004b
comparison
equal deleted inserted replaced
3070:be5375dd588f 3071:5ae86bc2233d
1 /*
2 * Audacious - a cross-platform multimedia player
3 * Copyright (c) 2007 Audacious development team.
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 2 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, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 */
24
25 #ifndef UISKINNEDMENUROW_H
26 #define UISKINNEDMENUROW_H
27
28 #include <gdk/gdk.h>
29 #include <gtk/gtkadjustment.h>
30 #include <gtk/gtkwidget.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 #define UI_SKINNED_MENUROW(obj) GTK_CHECK_CAST (obj, ui_skinned_menurow_get_type (), UiSkinnedMenurow)
37 #define UI_SKINNED_MENUROW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, ui_skinned_menurow_get_type (), UiSkinnedMenurowClass)
38 #define UI_SKINNED_IS_MENUROW(obj) GTK_CHECK_TYPE (obj, ui_skinned_menurow_get_type ())
39
40 typedef struct _UiSkinnedMenurow UiSkinnedMenurow;
41 typedef struct _UiSkinnedMenurowClass UiSkinnedMenurowClass;
42
43 typedef enum {
44 MENUROW_NONE, MENUROW_OPTIONS, MENUROW_ALWAYS, MENUROW_FILEINFOBOX,
45 MENUROW_DOUBLESIZE, MENUROW_VISUALIZATION
46 } MenuRowItem;
47
48 struct _UiSkinnedMenurow {
49 GtkWidget widget;
50
51 gint x, y, width, height;
52 GtkWidget *fixed;
53 gboolean double_size;
54 gint nx, ny;
55 gint sx, sy;
56 MenuRowItem selected;
57 gboolean always_selected;
58 gboolean doublesize_selected;
59 gboolean pushed;
60 SkinPixmapId skin_index;
61 };
62
63 struct _UiSkinnedMenurowClass {
64 GtkWidgetClass parent_class;
65 void (* doubled) (UiSkinnedMenurow *menurow);
66 void (* change) (UiSkinnedMenurow *menurow);
67 void (* release) (UiSkinnedMenurow *menurow);
68 };
69
70 GtkWidget* ui_skinned_menurow_new (GtkWidget *fixed, gint x, gint y, gint nx, gint ny, gint sx, gint sy, SkinPixmapId si);
71 GtkType ui_skinned_menurow_get_type(void);
72
73 #ifdef __cplusplus
74 }
75 #endif
76
77 #endif