Class XButtonEvent

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class XButtonEvent extends Struct<XButtonEvent> implements NativeResource
struct XButtonEvent {
    int type;
    unsigned long serial;
    Bool send_event;
    Display * display;
    Window window;
    Window root;
    Window subwindow;
    Time time;
    int x;
    int y;
    int x_root;
    int y_root;
    unsigned int state;
    unsigned int button;
    Bool same_screen;
}
  • 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.
    • ROOT

      public static final int ROOT
      The struct member offsets.
    • SUBWINDOW

      public static final int SUBWINDOW
      The struct member offsets.
    • TIME

      public static final int TIME
      The struct member offsets.
    • X

      public static final int X
      The struct member offsets.
    • Y

      public static final int Y
      The struct member offsets.
    • X_ROOT

      public static final int X_ROOT
      The struct member offsets.
    • Y_ROOT

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

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

      public static final int BUTTON
      The struct member offsets.
    • SAME_SCREEN

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

    • XButtonEvent

      public XButtonEvent(ByteBuffer container)
      Creates a XButtonEvent 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()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<XButtonEvent>
    • type

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

      @NativeType("unsigned long") public long serial()
      Returns:
      the value of the serial field.
    • send_event

      @NativeType("Bool") public boolean send_event()
      Returns:
      the value of the send_event field.
    • display

      @NativeType("Display *") public long display()
      Returns:
      the value of the display field.
    • window

      @NativeType("Window") public long window()
      Returns:
      the value of the window field.
    • root

      @NativeType("Window") public long root()
      Returns:
      the value of the root field.
    • subwindow

      @NativeType("Window") public long subwindow()
      Returns:
      the value of the subwindow field.
    • time

      @NativeType("Time") public long time()
      Returns:
      the value of the time field.
    • x

      public int x()
      Returns:
      the value of the x field.
    • y

      public int y()
      Returns:
      the value of the y field.
    • x_root

      public int x_root()
      Returns:
      the value of the x_root field.
    • y_root

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

      @NativeType("unsigned int") public int state()
      Returns:
      the value of the state field.
    • button

      @NativeType("unsigned int") public int button()
      Returns:
      the value of the button field.
    • same_screen

      @NativeType("Bool") public boolean same_screen()
      Returns:
      the value of the same_screen field.
    • type

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

      public XButtonEvent serial(@NativeType("unsigned long") long value)
      Sets the specified value to the serial field.
    • send_event

      public XButtonEvent send_event(@NativeType("Bool") boolean value)
      Sets the specified value to the send_event field.
    • display

      public XButtonEvent display(@NativeType("Display *") long value)
      Sets the specified value to the display field.
    • window

      public XButtonEvent window(@NativeType("Window") long value)
      Sets the specified value to the window field.
    • root

      public XButtonEvent root(@NativeType("Window") long value)
      Sets the specified value to the root field.
    • subwindow

      public XButtonEvent subwindow(@NativeType("Window") long value)
      Sets the specified value to the subwindow field.
    • time

      public XButtonEvent time(@NativeType("Time") long value)
      Sets the specified value to the time field.
    • x

      public XButtonEvent x(int value)
      Sets the specified value to the x field.
    • y

      public XButtonEvent y(int value)
      Sets the specified value to the y field.
    • x_root

      public XButtonEvent x_root(int value)
      Sets the specified value to the x_root field.
    • y_root

      public XButtonEvent y_root(int value)
      Sets the specified value to the y_root field.
    • state

      public XButtonEvent state(@NativeType("unsigned int") int value)
      Sets the specified value to the state field.
    • button

      public XButtonEvent button(@NativeType("unsigned int") int value)
      Sets the specified value to the button field.
    • same_screen

      public XButtonEvent same_screen(@NativeType("Bool") boolean value)
      Sets the specified value to the same_screen field.
    • set

      public XButtonEvent set(int type, long serial, boolean send_event, long display, long window, long root, long subwindow, long time, int x, int y, int x_root, int y_root, int state, int button, boolean same_screen)
      Initializes this struct with the specified values.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static XButtonEvent.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new XButtonEvent.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().
    • nroot

      public static long nroot(long struct)
      Unsafe version of root().
    • nsubwindow

      public static long nsubwindow(long struct)
      Unsafe version of subwindow().
    • ntime

      public static long ntime(long struct)
      Unsafe version of time().
    • nx

      public static int nx(long struct)
      Unsafe version of x().
    • ny

      public static int ny(long struct)
      Unsafe version of y().
    • nx_root

      public static int nx_root(long struct)
      Unsafe version of x_root().
    • ny_root

      public static int ny_root(long struct)
      Unsafe version of y_root().
    • nstate

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

      public static int nbutton(long struct)
      Unsafe version of button().
    • nsame_screen

      public static int nsame_screen(long struct)
      Unsafe version of same_screen().
    • 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.
    • nroot

      public static void nroot(long struct, long value)
      Unsafe version of root.
    • nsubwindow

      public static void nsubwindow(long struct, long value)
      Unsafe version of subwindow.
    • ntime

      public static void ntime(long struct, long value)
      Unsafe version of time.
    • nx

      public static void nx(long struct, int value)
      Unsafe version of x.
    • ny

      public static void ny(long struct, int value)
      Unsafe version of y.
    • nx_root

      public static void nx_root(long struct, int value)
      Unsafe version of x_root.
    • ny_root

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

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

      public static void nbutton(long struct, int value)
      Unsafe version of button.
    • nsame_screen

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

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