With FLTK (version 1.4.0), is it possible to set minimum size for an Fl_Group
widget? Either explicitly or automatically so that it wouldn't resize smaller than needed to display all its children? The Fl_Window
class has method size_range
which allows to set the smallest window size, however Fl_Group
doesn't have such a method.
If this is not available, then maybe there are some other way to enforce a constraint on how small a non-window group widget can be?
It is possible to partly achieve this by using the size_range
method of the top-most window, however if we use Fl_Tile
than each tile would not be constrained in any way. Yes, an Fl_Box
widget inside an Fl_Tile
can limit minimal sizes of the outer tiles, but it's not exactly what I need here.