All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.system.linux.XCrossingEvent Maven / Gradle / Ivy

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.system.linux;

import javax.annotation.*;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

/**
 * 

Member documentation

* *
    *
  • {@code type} – of event
  • *
  • {@code serial} – # of last request processed by server
  • *
  • {@code send_event} – true if this came from an {@link X11#XSendEvent} request
  • *
  • {@code display} – {@code Display} the event was read from
  • *
  • {@code window} – window it reported relative to
  • *
  • {@code root} – root window that the event occurred on
  • *
  • {@code subwindow} – child window
  • *
  • {@code time} – milliseconds
  • *
  • {@code x} – pointer x coordinate in event window
  • *
  • {@code y} – pointer y coordinate in event window
  • *
  • {@code x_root} – x coordinate relative to {@code root}
  • *
  • {@code y_root} – y coordinate relative to {@code root}
  • *
  • {@code mode} – one of:
    {@link X11#NotifyNormal}{@link X11#NotifyGrab}{@link X11#NotifyUngrab}
  • *
  • {@code same_screen} – same screen flag
  • *
  • {@code focus} – boolean focus
  • *
  • {@code state} – key or button mask
  • *
* *

Layout

* *

 * struct XCrossingEvent {
 *     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;
 *     int mode;
 *     int detail;
 *     int same_screen;
 *     int focus;
 *     unsigned int state;
 * }
*/ public class XCrossingEvent extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; /** The struct alignment in bytes. */ public static final int ALIGNOF; /** The struct member offsets. */ public static final int TYPE, SERIAL, SEND_EVENT, DISPLAY, WINDOW, ROOT, SUBWINDOW, TIME, X, Y, X_ROOT, Y_ROOT, MODE, DETAIL, SAME_SCREEN, FOCUS, STATE; static { Layout layout = __struct( __member(4), __member(CLONG_SIZE), __member(4), __member(POINTER_SIZE), __member(CLONG_SIZE), __member(CLONG_SIZE), __member(CLONG_SIZE), __member(CLONG_SIZE), __member(4), __member(4), __member(4), __member(4), __member(4), __member(4), __member(4), __member(4), __member(4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); TYPE = layout.offsetof(0); SERIAL = layout.offsetof(1); SEND_EVENT = layout.offsetof(2); DISPLAY = layout.offsetof(3); WINDOW = layout.offsetof(4); ROOT = layout.offsetof(5); SUBWINDOW = layout.offsetof(6); TIME = layout.offsetof(7); X = layout.offsetof(8); Y = layout.offsetof(9); X_ROOT = layout.offsetof(10); Y_ROOT = layout.offsetof(11); MODE = layout.offsetof(12); DETAIL = layout.offsetof(13); SAME_SCREEN = layout.offsetof(14); FOCUS = layout.offsetof(15); STATE = layout.offsetof(16); } /** * Creates a {@code XCrossingEvent} instance at the current position of the specified {@link 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.

*/ public XCrossingEvent(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code type} field. */ public int type() { return ntype(address()); } /** Returns the value of the {@code serial} field. */ @NativeType("unsigned long") public long serial() { return nserial(address()); } /** Returns the value of the {@code send_event} field. */ @NativeType("Bool") public boolean send_event() { return nsend_event(address()) != 0; } /** Returns the value of the {@code display} field. */ @NativeType("Display *") public long display() { return ndisplay(address()); } /** Returns the value of the {@code window} field. */ @NativeType("Window") public long window() { return nwindow(address()); } /** Returns the value of the {@code root} field. */ @NativeType("Window") public long root() { return nroot(address()); } /** Returns the value of the {@code subwindow} field. */ @NativeType("Window") public long subwindow() { return nsubwindow(address()); } /** Returns the value of the {@code time} field. */ @NativeType("Time") public long time() { return ntime(address()); } /** Returns the value of the {@code x} field. */ public int x() { return nx(address()); } /** Returns the value of the {@code y} field. */ public int y() { return ny(address()); } /** Returns the value of the {@code x_root} field. */ public int x_root() { return nx_root(address()); } /** Returns the value of the {@code y_root} field. */ public int y_root() { return ny_root(address()); } /** Returns the value of the {@code mode} field. */ public int mode() { return nmode(address()); } /** Returns the value of the {@code detail} field. */ public int detail() { return ndetail(address()); } /** Returns the value of the {@code same_screen} field. */ public int same_screen() { return nsame_screen(address()); } /** Returns the value of the {@code focus} field. */ public int focus() { return nfocus(address()); } /** Returns the value of the {@code state} field. */ @NativeType("unsigned int") public int state() { return nstate(address()); } /** Sets the specified value to the {@code type} field. */ public XCrossingEvent type(int value) { ntype(address(), value); return this; } /** Sets the specified value to the {@code serial} field. */ public XCrossingEvent serial(@NativeType("unsigned long") long value) { nserial(address(), value); return this; } /** Sets the specified value to the {@code send_event} field. */ public XCrossingEvent send_event(@NativeType("Bool") boolean value) { nsend_event(address(), value ? 1 : 0); return this; } /** Sets the specified value to the {@code display} field. */ public XCrossingEvent display(@NativeType("Display *") long value) { ndisplay(address(), value); return this; } /** Sets the specified value to the {@code window} field. */ public XCrossingEvent window(@NativeType("Window") long value) { nwindow(address(), value); return this; } /** Sets the specified value to the {@code root} field. */ public XCrossingEvent root(@NativeType("Window") long value) { nroot(address(), value); return this; } /** Sets the specified value to the {@code subwindow} field. */ public XCrossingEvent subwindow(@NativeType("Window") long value) { nsubwindow(address(), value); return this; } /** Sets the specified value to the {@code time} field. */ public XCrossingEvent time(@NativeType("Time") long value) { ntime(address(), value); return this; } /** Sets the specified value to the {@code x} field. */ public XCrossingEvent x(int value) { nx(address(), value); return this; } /** Sets the specified value to the {@code y} field. */ public XCrossingEvent y(int value) { ny(address(), value); return this; } /** Sets the specified value to the {@code x_root} field. */ public XCrossingEvent x_root(int value) { nx_root(address(), value); return this; } /** Sets the specified value to the {@code y_root} field. */ public XCrossingEvent y_root(int value) { ny_root(address(), value); return this; } /** Sets the specified value to the {@code mode} field. */ public XCrossingEvent mode(int value) { nmode(address(), value); return this; } /** Sets the specified value to the {@code detail} field. */ public XCrossingEvent detail(int value) { ndetail(address(), value); return this; } /** Sets the specified value to the {@code same_screen} field. */ public XCrossingEvent same_screen(int value) { nsame_screen(address(), value); return this; } /** Sets the specified value to the {@code focus} field. */ public XCrossingEvent focus(int value) { nfocus(address(), value); return this; } /** Sets the specified value to the {@code state} field. */ public XCrossingEvent state(@NativeType("unsigned int") int value) { nstate(address(), value); return this; } /** Initializes this struct with the specified values. */ public XCrossingEvent 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 mode, int detail, int same_screen, int focus, int state ) { type(type); serial(serial); send_event(send_event); display(display); window(window); root(root); subwindow(subwindow); time(time); x(x); y(y); x_root(x_root); y_root(y_root); mode(mode); detail(detail); same_screen(same_screen); focus(focus); state(state); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public XCrossingEvent set(XCrossingEvent src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code XCrossingEvent} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static XCrossingEvent malloc() { return wrap(XCrossingEvent.class, nmemAllocChecked(SIZEOF)); } /** Returns a new {@code XCrossingEvent} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static XCrossingEvent calloc() { return wrap(XCrossingEvent.class, nmemCallocChecked(1, SIZEOF)); } /** Returns a new {@code XCrossingEvent} instance allocated with {@link BufferUtils}. */ public static XCrossingEvent create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return wrap(XCrossingEvent.class, memAddress(container), container); } /** Returns a new {@code XCrossingEvent} instance for the specified memory address. */ public static XCrossingEvent create(long address) { return wrap(XCrossingEvent.class, address); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static XCrossingEvent createSafe(long address) { return address == NULL ? null : wrap(XCrossingEvent.class, address); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer malloc(int capacity) { return wrap(Buffer.class, nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer calloc(int capacity) { return wrap(Buffer.class, nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return wrap(Buffer.class, memAddress(container), capacity, container); } /** * Create a {@link XCrossingEvent.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer create(long address, int capacity) { return wrap(Buffer.class, address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static XCrossingEvent.Buffer createSafe(long address, int capacity) { return address == NULL ? null : wrap(Buffer.class, address, capacity); } // ----------------------------------- /** Returns a new {@code XCrossingEvent} instance allocated on the thread-local {@link MemoryStack}. */ public static XCrossingEvent mallocStack() { return mallocStack(stackGet()); } /** Returns a new {@code XCrossingEvent} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. */ public static XCrossingEvent callocStack() { return callocStack(stackGet()); } /** * Returns a new {@code XCrossingEvent} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static XCrossingEvent mallocStack(MemoryStack stack) { return wrap(XCrossingEvent.class, stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@code XCrossingEvent} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static XCrossingEvent callocStack(MemoryStack stack) { return wrap(XCrossingEvent.class, stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated on the thread-local {@link MemoryStack}. * * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer mallocStack(int capacity) { return mallocStack(capacity, stackGet()); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. * * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer callocStack(int capacity) { return callocStack(capacity, stackGet()); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer mallocStack(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link XCrossingEvent.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static XCrossingEvent.Buffer callocStack(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #type}. */ public static int ntype(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.TYPE); } /** Unsafe version of {@link #serial}. */ public static long nserial(long struct) { return memGetCLong(struct + XCrossingEvent.SERIAL); } /** Unsafe version of {@link #send_event}. */ public static int nsend_event(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.SEND_EVENT); } /** Unsafe version of {@link #display}. */ public static long ndisplay(long struct) { return memGetAddress(struct + XCrossingEvent.DISPLAY); } /** Unsafe version of {@link #window}. */ public static long nwindow(long struct) { return memGetCLong(struct + XCrossingEvent.WINDOW); } /** Unsafe version of {@link #root}. */ public static long nroot(long struct) { return memGetCLong(struct + XCrossingEvent.ROOT); } /** Unsafe version of {@link #subwindow}. */ public static long nsubwindow(long struct) { return memGetCLong(struct + XCrossingEvent.SUBWINDOW); } /** Unsafe version of {@link #time}. */ public static long ntime(long struct) { return memGetCLong(struct + XCrossingEvent.TIME); } /** Unsafe version of {@link #x}. */ public static int nx(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.X); } /** Unsafe version of {@link #y}. */ public static int ny(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.Y); } /** Unsafe version of {@link #x_root}. */ public static int nx_root(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.X_ROOT); } /** Unsafe version of {@link #y_root}. */ public static int ny_root(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.Y_ROOT); } /** Unsafe version of {@link #mode}. */ public static int nmode(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.MODE); } /** Unsafe version of {@link #detail}. */ public static int ndetail(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.DETAIL); } /** Unsafe version of {@link #same_screen}. */ public static int nsame_screen(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.SAME_SCREEN); } /** Unsafe version of {@link #focus}. */ public static int nfocus(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.FOCUS); } /** Unsafe version of {@link #state}. */ public static int nstate(long struct) { return UNSAFE.getInt(null, struct + XCrossingEvent.STATE); } /** Unsafe version of {@link #type(int) type}. */ public static void ntype(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.TYPE, value); } /** Unsafe version of {@link #serial(long) serial}. */ public static void nserial(long struct, long value) { memPutCLong(struct + XCrossingEvent.SERIAL, value); } /** Unsafe version of {@link #send_event(boolean) send_event}. */ public static void nsend_event(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.SEND_EVENT, value); } /** Unsafe version of {@link #display(long) display}. */ public static void ndisplay(long struct, long value) { memPutAddress(struct + XCrossingEvent.DISPLAY, check(value)); } /** Unsafe version of {@link #window(long) window}. */ public static void nwindow(long struct, long value) { memPutCLong(struct + XCrossingEvent.WINDOW, value); } /** Unsafe version of {@link #root(long) root}. */ public static void nroot(long struct, long value) { memPutCLong(struct + XCrossingEvent.ROOT, value); } /** Unsafe version of {@link #subwindow(long) subwindow}. */ public static void nsubwindow(long struct, long value) { memPutCLong(struct + XCrossingEvent.SUBWINDOW, value); } /** Unsafe version of {@link #time(long) time}. */ public static void ntime(long struct, long value) { memPutCLong(struct + XCrossingEvent.TIME, value); } /** Unsafe version of {@link #x(int) x}. */ public static void nx(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.X, value); } /** Unsafe version of {@link #y(int) y}. */ public static void ny(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.Y, value); } /** Unsafe version of {@link #x_root(int) x_root}. */ public static void nx_root(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.X_ROOT, value); } /** Unsafe version of {@link #y_root(int) y_root}. */ public static void ny_root(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.Y_ROOT, value); } /** Unsafe version of {@link #mode(int) mode}. */ public static void nmode(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.MODE, value); } /** Unsafe version of {@link #detail(int) detail}. */ public static void ndetail(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.DETAIL, value); } /** Unsafe version of {@link #same_screen(int) same_screen}. */ public static void nsame_screen(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.SAME_SCREEN, value); } /** Unsafe version of {@link #focus(int) focus}. */ public static void nfocus(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.FOCUS, value); } /** Unsafe version of {@link #state(int) state}. */ public static void nstate(long struct, int value) { UNSAFE.putInt(null, struct + XCrossingEvent.STATE, value); } /** * Validates pointer members that should not be {@code NULL}. * * @param struct the struct to validate */ public static void validate(long struct) { check(memGetAddress(struct + XCrossingEvent.DISPLAY)); } /** * Calls {@link #validate(long)} for each struct contained in the specified struct array. * * @param array the struct array to validate * @param count the number of structs in {@code array} */ public static void validate(long array, int count) { for (int i = 0; i < count; i++) { validate(array + Integer.toUnsignedLong(i) * SIZEOF); } } // ----------------------------------- /** An array of {@link XCrossingEvent} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final XCrossingEvent ELEMENT_FACTORY = XCrossingEvent.create(-1L); /** * Creates a new {@code XCrossingEvent.Buffer} instance backed by the specified container. * * Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link XCrossingEvent#SIZEOF}, and its mark will be undefined. * *

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

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } public Buffer(long address, int cap) { super(address, null, -1, 0, cap, cap); } Buffer(long address, @Nullable ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected XCrossingEvent getElementFactory() { return ELEMENT_FACTORY; } /** Returns the value of the {@code type} field. */ public int type() { return XCrossingEvent.ntype(address()); } /** Returns the value of the {@code serial} field. */ @NativeType("unsigned long") public long serial() { return XCrossingEvent.nserial(address()); } /** Returns the value of the {@code send_event} field. */ @NativeType("Bool") public boolean send_event() { return XCrossingEvent.nsend_event(address()) != 0; } /** Returns the value of the {@code display} field. */ @NativeType("Display *") public long display() { return XCrossingEvent.ndisplay(address()); } /** Returns the value of the {@code window} field. */ @NativeType("Window") public long window() { return XCrossingEvent.nwindow(address()); } /** Returns the value of the {@code root} field. */ @NativeType("Window") public long root() { return XCrossingEvent.nroot(address()); } /** Returns the value of the {@code subwindow} field. */ @NativeType("Window") public long subwindow() { return XCrossingEvent.nsubwindow(address()); } /** Returns the value of the {@code time} field. */ @NativeType("Time") public long time() { return XCrossingEvent.ntime(address()); } /** Returns the value of the {@code x} field. */ public int x() { return XCrossingEvent.nx(address()); } /** Returns the value of the {@code y} field. */ public int y() { return XCrossingEvent.ny(address()); } /** Returns the value of the {@code x_root} field. */ public int x_root() { return XCrossingEvent.nx_root(address()); } /** Returns the value of the {@code y_root} field. */ public int y_root() { return XCrossingEvent.ny_root(address()); } /** Returns the value of the {@code mode} field. */ public int mode() { return XCrossingEvent.nmode(address()); } /** Returns the value of the {@code detail} field. */ public int detail() { return XCrossingEvent.ndetail(address()); } /** Returns the value of the {@code same_screen} field. */ public int same_screen() { return XCrossingEvent.nsame_screen(address()); } /** Returns the value of the {@code focus} field. */ public int focus() { return XCrossingEvent.nfocus(address()); } /** Returns the value of the {@code state} field. */ @NativeType("unsigned int") public int state() { return XCrossingEvent.nstate(address()); } /** Sets the specified value to the {@code type} field. */ public XCrossingEvent.Buffer type(int value) { XCrossingEvent.ntype(address(), value); return this; } /** Sets the specified value to the {@code serial} field. */ public XCrossingEvent.Buffer serial(@NativeType("unsigned long") long value) { XCrossingEvent.nserial(address(), value); return this; } /** Sets the specified value to the {@code send_event} field. */ public XCrossingEvent.Buffer send_event(@NativeType("Bool") boolean value) { XCrossingEvent.nsend_event(address(), value ? 1 : 0); return this; } /** Sets the specified value to the {@code display} field. */ public XCrossingEvent.Buffer display(@NativeType("Display *") long value) { XCrossingEvent.ndisplay(address(), value); return this; } /** Sets the specified value to the {@code window} field. */ public XCrossingEvent.Buffer window(@NativeType("Window") long value) { XCrossingEvent.nwindow(address(), value); return this; } /** Sets the specified value to the {@code root} field. */ public XCrossingEvent.Buffer root(@NativeType("Window") long value) { XCrossingEvent.nroot(address(), value); return this; } /** Sets the specified value to the {@code subwindow} field. */ public XCrossingEvent.Buffer subwindow(@NativeType("Window") long value) { XCrossingEvent.nsubwindow(address(), value); return this; } /** Sets the specified value to the {@code time} field. */ public XCrossingEvent.Buffer time(@NativeType("Time") long value) { XCrossingEvent.ntime(address(), value); return this; } /** Sets the specified value to the {@code x} field. */ public XCrossingEvent.Buffer x(int value) { XCrossingEvent.nx(address(), value); return this; } /** Sets the specified value to the {@code y} field. */ public XCrossingEvent.Buffer y(int value) { XCrossingEvent.ny(address(), value); return this; } /** Sets the specified value to the {@code x_root} field. */ public XCrossingEvent.Buffer x_root(int value) { XCrossingEvent.nx_root(address(), value); return this; } /** Sets the specified value to the {@code y_root} field. */ public XCrossingEvent.Buffer y_root(int value) { XCrossingEvent.ny_root(address(), value); return this; } /** Sets the specified value to the {@code mode} field. */ public XCrossingEvent.Buffer mode(int value) { XCrossingEvent.nmode(address(), value); return this; } /** Sets the specified value to the {@code detail} field. */ public XCrossingEvent.Buffer detail(int value) { XCrossingEvent.ndetail(address(), value); return this; } /** Sets the specified value to the {@code same_screen} field. */ public XCrossingEvent.Buffer same_screen(int value) { XCrossingEvent.nsame_screen(address(), value); return this; } /** Sets the specified value to the {@code focus} field. */ public XCrossingEvent.Buffer focus(int value) { XCrossingEvent.nfocus(address(), value); return this; } /** Sets the specified value to the {@code state} field. */ public XCrossingEvent.Buffer state(@NativeType("unsigned int") int value) { XCrossingEvent.nstate(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy