Class NkInput

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class NkInput extends Struct<NkInput> implements NativeResource

 struct nk_input {
     struct nk_keyboard keyboard;
     struct nk_mouse mouse;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int KEYBOARD
      The struct member offsets.
    • MOUSE

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

    • NkInput

      public NkInput(ByteBuffer container)
      Creates a NkInput 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<NkInput>
    • keyboard

      public NkKeyboard keyboard()
      Returns:
      a NkKeyboard view of the keyboard field.
    • mouse

      public NkMouse mouse()
      Returns:
      a NkMouse view of the mouse field.
    • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static NkKeyboard nkeyboard(long struct)
      Unsafe version of keyboard().
    • nmouse

      public static NkMouse nmouse(long struct)
      Unsafe version of mouse().