org.gnu.gtk
Class ResizeMode

java.lang.Object
  extended by org.gnu.glib.Enum
      extended by org.gnu.gtk.ResizeMode

public class ResizeMode
extends org.gnu.glib.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?


Field Summary
static ResizeMode IMMEDIATE
          Deprecated. per GTK API documentation.
static ResizeMode PARENT
          Pass resize request to the parent.
static ResizeMode QUEUE
          Queue resizes on this widget.
 
Method Summary
 ResizeMode and(ResizeMode other)
           
static ResizeMode intern(int value)
           
 ResizeMode or(ResizeMode other)
           
 boolean test(ResizeMode other)
           
 ResizeMode xor(ResizeMode other)
           
 
Methods inherited from class org.gnu.glib.Enum
equals, getValue, hashCode
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PARENT

public static final ResizeMode PARENT
Pass resize request to the parent.


QUEUE

public static final ResizeMode QUEUE
Queue resizes on this widget.


IMMEDIATE

public static final ResizeMode IMMEDIATE
Deprecated. per GTK API documentation.
Perform the resizes now.

Method Detail

intern

public static ResizeMode intern(int value)

or

public ResizeMode or(ResizeMode other)

and

public ResizeMode and(ResizeMode other)

xor

public ResizeMode xor(ResizeMode other)

test

public boolean test(ResizeMode other)