Giuseppe wrote: > How to put a Fl_Positioner Upon an other Widget (and so to show the second > widget)? > > Because positioner.image() doesn't works.
I assume that you want to show an image inside the positioner? That is not supported, but really easy to write. Just derive a new class (Fl_Image_Positioner, for example), and copy the current drawing code over, so that Fl_Positioner::draw() is overridden. Then add image drawing code right after the box is drawn and before the box is drawn. It may even be sufficient to just swap draw_box and draw_label... . Matthias _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

