org.gnu.gtk

Class ResizeMode

public class ResizeMode extends Enum

Deprecated: This class is part of the java-gnome 2.x family of libraries, which, due to their inefficiency and complexity, are no longer being maintained and have been abandoned by the java-gnome project. This class may in the future have an equivalent in java-gnome 4.0, try looking for org.gnome.gtk.ResizeMode. You should be aware that there is a considerably different API in the new library: the architecture is completely different and most notably internals are no longer exposed to public view.

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?
Field Summary
static ResizeModeIMMEDIATE
Perform the resizes now.
static ResizeModePARENT
Pass resize request to the parent.
static ResizeModeQUEUE
Queue resizes on this widget.
Method Summary
ResizeModeand(ResizeMode other)
static ResizeModeintern(int value)
ResizeModeor(ResizeMode other)
booleantest(ResizeMode other)
ResizeModexor(ResizeMode other)

Field Detail

IMMEDIATE

public static final ResizeMode IMMEDIATE

Deprecated: per GTK API documentation. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Perform the resizes now.

PARENT

public static final ResizeMode PARENT

Deprecated: Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Pass resize request to the parent.

QUEUE

public static final ResizeMode QUEUE

Deprecated: Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Queue resizes on this widget.

Method Detail

and

public ResizeMode and(ResizeMode other)

intern

public static ResizeMode intern(int value)

or

public ResizeMode or(ResizeMode other)

test

public boolean test(ResizeMode other)

xor

public ResizeMode xor(ResizeMode other)