> It seems to me like Ruby/GTK is a not-very-OO wrapper around GTK. I >> had hoped it would be more like GTK--, which is a C++ OO wrapper >> that seems pretty nice. > >It'd be nice to hear how those two bindings differ in OO point of >view. Keep in mind that this is based on a 10 minute look at Ruby/GTK. It seems like Ruby/GTK ends up sending something like 'caller.event(widget)', where GTK-- would send 'widget.event'. So in Ruby/GTK I would have to catch the event, and then figure out who it was aimed at, unlike GTK--. I could be wrong. I wonder how hard it would be to create Ruby/GTK--? Kevin