2313
|
1 /* Audacious - Cross-platform multimedia player
|
|
2 * Copyright (C) 2005-2007 Audacious development team
|
|
3 *
|
|
4 * Based on BMP:
|
|
5 * Copyright (C) 2003-2004 BMP development team.
|
|
6 *
|
|
7 * This program is free software; you can redistribute it and/or modify
|
|
8 * it under the terms of the GNU General Public License as published by
|
|
9 * the Free Software Foundation; under version 2 of the License.
|
|
10 *
|
|
11 * This program is distributed in the hope that it will be useful,
|
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 * GNU General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License
|
|
17 * along with this program; if not, write to the Free Software
|
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
19 */
|
|
20
|
|
21 #ifndef BMP_GLADE_H
|
|
22 #define BMP_GLADE_H
|
|
23
|
|
24 #include <glib.h>
|
|
25 #include <gtk/gtk.h>
|
|
26 #include <glade/glade.h>
|
|
27
|
|
28
|
|
29 typedef struct _FuncMap FuncMap;
|
|
30
|
|
31 struct _FuncMap {
|
|
32 gchar *name;
|
|
33 GCallback function;
|
|
34 };
|
|
35
|
|
36
|
|
37 #define FUNC_MAP_BEGIN(map) static FuncMap map[] = {
|
|
38 #define FUNC_MAP_ENTRY(function) { #function, (GCallback) function },
|
|
39 #define FUNC_MAP_END { NULL, NULL } };
|
|
40
|
|
41
|
|
42 GladeXML *glade_xml_new_or_die(const gchar * name, const gchar * path,
|
|
43 const gchar * root, const gchar * domain);
|
|
44
|
|
45 GtkWidget *glade_xml_get_widget_warn(GladeXML * xml, const gchar * name);
|
|
46
|
|
47 void glade_xml_signal_autoconnect_map(GladeXML * xml, FuncMap * map);
|
|
48
|
|
49 #endif
|