On 30.10.2008, at 14:33, Jorge Arellano Cid wrote: > 2.- We also can't set the tab label tooltip because there's a > bug that after showing the label and moving the mouse > pointer down, "drags" the tooltip window down. > (easy to reproduce by uncommenting the lines at ui.cc:1089 > in dillo2 (not STRed AFAIK). > > 5.- Is it possible to catch the horizontall scroll event with > the mouse wheel?
Yes. Override the handle() function of ScrollGroup and catch the MOUSEWHEEL event. fltk::event_dx() gives you the amount of horizontal scrolling. Now you can modify the event and still call the original handle() function (or not, if no longer needed). Matthias ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

