org.gnu.gtk
Class ResizeMode
public class ResizeMode
extends Enum
The resize mode of a
Container
determines whether a
resize request will be passed to the container's parent, queued for later
execution or executed immediately. FIXME: This is poorly documented by GTK;
can we do better?
IMMEDIATE
public static final ResizeMode IMMEDIATE
per GTK API documentation.
Perform the resizes now.
PARENT
public static final ResizeMode PARENT
Pass resize request to the parent.
QUEUE
public static final ResizeMode QUEUE
Queue resizes on this widget.