summaryrefslogtreecommitdiff
path: root/gladeui/glade-utils.h
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2008-08-06 22:21:03 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2008-08-06 22:21:03 +0000
commit05a78c9b350df403fdecc0e5b28e51c4cf8948b3 (patch)
tree621f3fecb48e107e7e8fc7f34f18394d9239273c /gladeui/glade-utils.h
parent820a8ddc96efa2ca89a5a2d287bd599f54157b6b (diff)
downloadglade-05a78c9b350df403fdecc0e5b28e51c4cf8948b3.tar.gz
New internal pspec type for attributes and new editor widget for them.
* plugins/gtk+/Makefile.am, plugins/gtk+/glade-attributes.[ch]: New internal pspec type for attributes and new editor widget for them. * plugins/gtk+/glade-gtk.c, plugins/gtk+/gtk+.xml.in: Load/Save/Edit pango attributes on GtkLabel * gladeui/glade-utils.[ch]: Added enum value <--> string converters. svn path=/trunk/; revision=1852
Diffstat (limited to 'gladeui/glade-utils.h')
-rw-r--r--gladeui/glade-utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gladeui/glade-utils.h b/gladeui/glade-utils.h
index cb85a370..68d1b85c 100644
--- a/gladeui/glade-utils.h
+++ b/gladeui/glade-utils.h
@@ -133,6 +133,10 @@ gchar *glade_util_filename_to_icon_name (const gchar *value);
gchar *glade_util_icon_name_to_filename (const gchar *value);
+gint glade_utils_enum_value_from_string (GType enum_type, const gchar *strval);
+
+gchar *glade_utils_enum_string_from_value (GType enum_type, gint value);
+
G_END_DECLS