Hi, In my program there is a window widget derived form Fl_Window and its child, box widget, derived from Fl_Box. I would like both of them to have their own handle() functions. However, if I don't declare handle() for window, box gets events (so everything's fine), but if I declare even empty (and always returning 0) handle() for window, box doesn't get _any_ event.
So, what's the right way to have actually multiple handles()? I would like the box widget to react on FL_ENTER and FL_MOVE, and I would prefer not to send these events "manually" from within window::handle() after checking whether mouse is above the box widget. _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

