Class XColormapEvent

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<XColormapEvent>
org.lwjgl.system.linux.XColormapEvent
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class XColormapEvent extends org.lwjgl.system.Struct<XColormapEvent> implements org.lwjgl.system.NativeResource

Layout


 struct XColormapEvent {
     int type;
     unsigned long serial();
     Bool send_event();
     Display * display();
     Window window();
     Colormap colormap();
     int new;
     int state();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • SERIAL

      public static final int SERIAL
      The struct member offsets.
    • SEND_EVENT

      public static final int SEND_EVENT
      The struct member offsets.
    • DISPLAY

      public static final int DISPLAY
      The struct member offsets.
    • WINDOW

      public static final int WINDOW
      The struct member offsets.
    • COLORMAP

      public static final int COLORMAP
      The struct member offsets.
    • NEW

      public static final int NEW
      The struct member offsets.
    • STATE

      public static final int STATE
      The struct member offsets.
  • Constructor Details

    • XColormapEvent

      public XColormapEvent(ByteBuffer container)
      Creates a XColormapEvent instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Specified by:
      sizeof in class org.lwjgl.system.Struct<XColormapEvent>
    • type

      public int type()
      Returns:
      the value of the type field.
    • serial

      public long serial()
      # of last request processed by server
    • send_event

      public boolean send_event()
    • display

      public long display()
      Display the event was read from
    • window

      public long window()
      window it reported relative to
    • colormap

      public long colormap()
      colormap or X11.None
    • new$

      public int new$()
      Returns:
      the value of the new field.
    • state

      public int state()
    • type

      public XColormapEvent type(int value)
      Sets the specified value to the type field.
    • serial

      public XColormapEvent serial(long value)
      Sets the specified value to the serial() field.
    • send_event

      public XColormapEvent send_event(boolean value)
      Sets the specified value to the send_event() field.
    • display

      public XColormapEvent display(long value)
      Sets the specified value to the display() field.
    • window

      public XColormapEvent window(long value)
      Sets the specified value to the window() field.
    • colormap

      public XColormapEvent colormap(long value)
      Sets the specified value to the colormap() field.
    • new$

      public XColormapEvent new$(int value)
      Sets the specified value to the new field.
    • state

      public XColormapEvent state(int value)
      Sets the specified value to the state() field.
    • set

      public XColormapEvent set(int type, long serial, boolean send_event, long display, long window, long colormap, int new$, int state)
      Initializes this struct with the specified values.
    • set

      public XColormapEvent set(XColormapEvent src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static XColormapEvent malloc()
      Returns a new XColormapEvent instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static XColormapEvent calloc()
      Returns a new XColormapEvent instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static XColormapEvent create()
      Returns a new XColormapEvent instance allocated with BufferUtils.
    • create

      public static XColormapEvent create(long address)
      Returns a new XColormapEvent instance for the specified memory address.
    • createSafe

      @Nullable public static XColormapEvent createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static XColormapEvent.Buffer malloc(int capacity)
      Returns a new XColormapEvent.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static XColormapEvent.Buffer calloc(int capacity)
      Returns a new XColormapEvent.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static XColormapEvent.Buffer create(int capacity)
      Returns a new XColormapEvent.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static XColormapEvent.Buffer create(long address, int capacity)
      Create a XColormapEvent.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      @Nullable public static XColormapEvent.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • mallocStack

      @Deprecated public static XColormapEvent mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static XColormapEvent callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static XColormapEvent mallocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static XColormapEvent callocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static XColormapEvent.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static XColormapEvent.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static XColormapEvent.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static XColormapEvent.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • malloc

      public static XColormapEvent malloc(org.lwjgl.system.MemoryStack stack)
      Returns a new XColormapEvent instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static XColormapEvent calloc(org.lwjgl.system.MemoryStack stack)
      Returns a new XColormapEvent instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static XColormapEvent.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new XColormapEvent.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static XColormapEvent.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new XColormapEvent.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • ntype

      public static int ntype(long struct)
      Unsafe version of type().
    • nserial

      public static long nserial(long struct)
      Unsafe version of serial().
    • nsend_event

      public static int nsend_event(long struct)
      Unsafe version of send_event().
    • ndisplay

      public static long ndisplay(long struct)
      Unsafe version of display().
    • nwindow

      public static long nwindow(long struct)
      Unsafe version of window().
    • ncolormap

      public static long ncolormap(long struct)
      Unsafe version of colormap().
    • nnew$

      public static int nnew$(long struct)
      Unsafe version of new$().
    • nstate

      public static int nstate(long struct)
      Unsafe version of state().
    • ntype

      public static void ntype(long struct, int value)
      Unsafe version of type.
    • nserial

      public static void nserial(long struct, long value)
      Unsafe version of serial.
    • nsend_event

      public static void nsend_event(long struct, int value)
      Unsafe version of send_event.
    • ndisplay

      public static void ndisplay(long struct, long value)
      Unsafe version of display.
    • nwindow

      public static void nwindow(long struct, long value)
      Unsafe version of window.
    • ncolormap

      public static void ncolormap(long struct, long value)
      Unsafe version of colormap.
    • nnew$

      public static void nnew$(long struct, int value)
      Unsafe version of new$.
    • nstate

      public static void nstate(long struct, int value)
      Unsafe version of state.
    • validate

      public static void validate(long struct)
      Validates pointer members that should not be NULL.
      Parameters:
      struct - the struct to validate