Package org.lwjgl.nuklear
Class NkStr
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<NkStr>
org.lwjgl.nuklear.NkStr
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class NkStr
extends org.lwjgl.system.Struct<NkStr>
implements org.lwjgl.system.NativeResource
Basic string buffer which is only used in context with the text editor to manage and manipulate dynamic or
fixed size string content. This is NOT the default string handling method. The only instance you
should have any contact with this API is if you interact with an
NkTextEdit object inside one of the copy and
paste functions and even there only for more advanced cases.
Layout
struct nk_str {
struct nk_buffer buffer;
int len();
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionNkStr(ByteBuffer container) Creates aNkStrinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionbuffer()static NkStrcalloc()Returns a newNkStrinstance allocated withmemCalloc.static NkStr.Buffercalloc(int capacity) Returns a newNkStr.Bufferinstance allocated withmemCalloc.static NkStr.Buffercalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newNkStr.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkStrcalloc(org.lwjgl.system.MemoryStack stack) Returns a newNkStrinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static NkStrDeprecated.static NkStr.BuffercallocStack(int capacity) Deprecated.static NkStr.BuffercallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static NkStrcallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static NkStrcreate()Returns a newNkStrinstance allocated withBufferUtils.static NkStr.Buffercreate(int capacity) Returns a newNkStr.Bufferinstance allocated withBufferUtils.static NkStrcreate(long address) Returns a newNkStrinstance for the specified memory address.static NkStr.Buffercreate(long address, int capacity) Create aNkStr.Bufferinstance at the specified memory.static @Nullable NkStrcreateSafe(long address) static @Nullable NkStr.BuffercreateSafe(long address, int capacity) intlen()in codepoints/runes/glyphsstatic NkStrmalloc()Returns a newNkStrinstance allocated withmemAlloc.static NkStr.Buffermalloc(int capacity) Returns a newNkStr.Bufferinstance allocated withmemAlloc.static NkStr.Buffermalloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newNkStr.Bufferinstance allocated on the specifiedMemoryStack.static NkStrmalloc(org.lwjgl.system.MemoryStack stack) Returns a newNkStrinstance allocated on the specifiedMemoryStack.static NkStrDeprecated.static NkStr.BuffermallocStack(int capacity) Deprecated.static NkStr.BuffermallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static NkStrmallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static NkBuffernbuffer(long struct) Unsafe version ofbuffer().static intnlen(long struct) Unsafe version oflen().intsizeof()Methods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
BUFFER
public static final int BUFFERThe struct member offsets. -
LEN
public static final int LENThe struct member offsets.
-
-
Constructor Details
-
NkStr
Creates aNkStrinstance at the current position of the specifiedByteBuffercontainer. 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:
sizeofin classorg.lwjgl.system.Struct<NkStr>
-
buffer
- Returns:
- a
NkBufferview of thebufferfield.
-
len
public int len()in codepoints/runes/glyphs -
malloc
Returns a newNkStrinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newNkStrinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newNkStrinstance allocated withBufferUtils. -
create
Returns a newNkStrinstance for the specified memory address. -
createSafe
-
malloc
Returns a newNkStr.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newNkStr.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newNkStr.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aNkStr.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
@Deprecated public static NkStr.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static NkStr.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newNkStrinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newNkStrinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newNkStr.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newNkStr.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nbuffer
Unsafe version ofbuffer(). -
nlen
public static int nlen(long struct) Unsafe version oflen().
-