diff options
author | Tim Janik <timj@gtk.org> | 1998-07-27 01:50:16 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-07-27 01:50:16 +0000 |
commit | fc7c7f466f10d58d59426fa24fbc8741e0ec61ff (patch) | |
tree | c0874cb56bfc086384cfcacb6c4f324968abade0 /gtk/gtkbindings.c | |
parent | 656061cb2b84e1fe7abd30d27a48718d62e97270 (diff) | |
download | gtk+-fc7c7f466f10d58d59426fa24fbc8741e0ec61ff.tar.gz |
fixup, so that enum values are looked up.
Mon Jul 27 03:11:20 1998 Tim Janik <timj@gtk.org>
* gtk/gtkbindings.c (binding_compose_params): fixup, so that enum
values are looked up.
* gtk/gtktypeutils.h:
* gtk/gtktypeutils.c: new functions gtk_type_flags_find_value and
gtk_type_enums_find_value to lookup enum values.
* gtk/gtkctree.h:
* gtk/gtkctree.c: change enum name from GtkCTreeExpansion to
GtkCTreeExpansionType. fixed signal creations to pass the enum
types not just the base type GTK_TYPE_ENUM.
* gtk/gtkclist.h:
* gtk/gtkclist.c: fixed signal creations to pass the real enum
types not just the base type GTK_TYPE_ENUM.
Diffstat (limited to 'gtk/gtkbindings.c')
-rw-r--r-- | gtk/gtkbindings.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gtk/gtkbindings.c b/gtk/gtkbindings.c index b991ca85c3..15097f346a 100644 --- a/gtk/gtkbindings.c +++ b/gtk/gtkbindings.c @@ -310,8 +310,13 @@ binding_compose_params (GtkBindingArg *args, (param_ftype == GTK_TYPE_ENUM || param_ftype == GTK_TYPE_FLAGS)) { - /* FIXME: we need identifier lookups here */ - valid = FALSE; + GtkEnumValue *value; + + value = gtk_type_enum_find_value (params->type, args->d.string_data); + if (value) + GTK_VALUE_ENUM (*params) = value->value; + else + valid = FALSE; } else valid = FALSE; |