On Mar 15, 2007, at 8:05 AM, Robert Arkiletian wrote: > My question: I was thinking of putting each image inside an fl_box. > But what container widget should I use? Fl_Pack or another sub > class of Fl_Group or maybe Greg's Fl_Table? Any suggestions or advice?
Since they are all probably the same size and likely remain in the same position to each other during a seesion (if not always), I'd just put Fl_Buttons into an Fl_Scroll and manually position them. The Scroll will only show scroll bars if needed, and the button calback can readily be used to show the current and big snapshot. so if you snaps are 160*120, you could position window n at (n/5) *160, (n%5)*120 for a five column layout ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

