Package org.lwjgl.nuklear
Class NkMenuState
- All Implemented Interfaces:
Pointer
struct nk_menu_state {
float x;
float y;
float w;
float h;
{@link NkScroll struct nk_scroll} offset;
}
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
Constructor Summary
ConstructorsConstructorDescriptionNkMenuState
(ByteBuffer container) Creates aNkMenuState
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionstatic NkMenuState
create
(long address) Returns a newNkMenuState
instance for the specified memory address.static NkMenuState.Buffer
create
(long address, int capacity) Create aNkMenuState.Buffer
instance at the specified memory.static @Nullable NkMenuState
createSafe
(long address) static @Nullable NkMenuState.Buffer
createSafe
(long address, int capacity) float
h()
static float
nh
(long struct) Unsafe version ofh()
.static NkScroll
noffset
(long struct) Unsafe version ofoffset()
.static float
nw
(long struct) Unsafe version ofw()
.static float
nx
(long struct) Unsafe version ofx()
.static float
ny
(long struct) Unsafe version ofy()
.offset()
int
sizeof()
Returnssizeof(struct)
.float
w()
float
x()
float
y()
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
X
public static final int XThe struct member offsets. -
Y
public static final int YThe struct member offsets. -
W
public static final int WThe struct member offsets. -
H
public static final int HThe struct member offsets. -
OFFSET
public static final int OFFSETThe struct member offsets.
-
-
Constructor Details
-
NkMenuState
Creates aNkMenuState
instance at the current position of the specifiedByteBuffer
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
Returnssizeof(struct)
.- Specified by:
sizeof
in classStruct<NkMenuState>
-
x
public float x()- Returns:
- the value of the
x
field.
-
y
public float y()- Returns:
- the value of the
y
field.
-
w
public float w()- Returns:
- the value of the
w
field.
-
h
public float h()- Returns:
- the value of the
h
field.
-
offset
- Returns:
- a
NkScroll
view of theoffset
field.
-
create
Returns a newNkMenuState
instance for the specified memory address. -
createSafe
-
create
Create aNkMenuState.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
nx
public static float nx(long struct) Unsafe version ofx()
. -
ny
public static float ny(long struct) Unsafe version ofy()
. -
nw
public static float nw(long struct) Unsafe version ofw()
. -
nh
public static float nh(long struct) Unsafe version ofh()
. -
noffset
Unsafe version ofoffset()
.
-