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

org.lwjgl.nanovg.BNDnodeTheme Maven / Gradle / Ivy

/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.nanovg;

import javax.annotation.*;

import java.nio.*;

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

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

/**
 * Describes the theme used to draw nodes.
 * 
 * 

Layout

* *

 * struct BNDnodeTheme {
 *     {@link NVGColor NVGcolor} {@link #nodeSelectedColor};
 *     {@link NVGColor NVGcolor} {@link #wiresColor};
 *     {@link NVGColor NVGcolor} {@link #textSelectedColor};
 *     {@link NVGColor NVGcolor} {@link #activeNodeColor};
 *     {@link NVGColor NVGcolor} {@link #wireSelectColor};
 *     {@link NVGColor NVGcolor} {@link #nodeBackdropColor};
 *     int {@link #noodleCurving};
 * }
*/ public class BNDnodeTheme 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 NODESELECTEDCOLOR, WIRESCOLOR, TEXTSELECTEDCOLOR, ACTIVENODECOLOR, WIRESELECTCOLOR, NODEBACKDROPCOLOR, NOODLECURVING; static { Layout layout = __struct( __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(NVGColor.SIZEOF, NVGColor.ALIGNOF), __member(4) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); NODESELECTEDCOLOR = layout.offsetof(0); WIRESCOLOR = layout.offsetof(1); TEXTSELECTEDCOLOR = layout.offsetof(2); ACTIVENODECOLOR = layout.offsetof(3); WIRESELECTCOLOR = layout.offsetof(4); NODEBACKDROPCOLOR = layout.offsetof(5); NOODLECURVING = layout.offsetof(6); } protected BNDnodeTheme(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected BNDnodeTheme create(long address, @Nullable ByteBuffer container) { return new BNDnodeTheme(address, container); } /** * Creates a {@code BNDnodeTheme} 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 BNDnodeTheme(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** inner color of selected node (and downarrow) */ @NativeType("NVGcolor") public NVGColor nodeSelectedColor() { return nnodeSelectedColor(address()); } /** outline of wires */ @NativeType("NVGcolor") public NVGColor wiresColor() { return nwiresColor(address()); } /** color of text label when active */ @NativeType("NVGcolor") public NVGColor textSelectedColor() { return ntextSelectedColor(address()); } /** inner color of active node (and dragged wire) */ @NativeType("NVGcolor") public NVGColor activeNodeColor() { return nactiveNodeColor(address()); } /** color of selected wire */ @NativeType("NVGcolor") public NVGColor wireSelectColor() { return nwireSelectColor(address()); } /** color of background of node */ @NativeType("NVGcolor") public NVGColor nodeBackdropColor() { return nnodeBackdropColor(address()); } /** how much a noodle curves (0 to 10) */ public int noodleCurving() { return nnoodleCurving(address()); } /** Copies the specified {@link NVGColor} to the {@link #nodeSelectedColor} field. */ public BNDnodeTheme nodeSelectedColor(@NativeType("NVGcolor") NVGColor value) { nnodeSelectedColor(address(), value); return this; } /** Passes the {@link #nodeSelectedColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme nodeSelectedColor(java.util.function.Consumer consumer) { consumer.accept(nodeSelectedColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link #wiresColor} field. */ public BNDnodeTheme wiresColor(@NativeType("NVGcolor") NVGColor value) { nwiresColor(address(), value); return this; } /** Passes the {@link #wiresColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme wiresColor(java.util.function.Consumer consumer) { consumer.accept(wiresColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link #textSelectedColor} field. */ public BNDnodeTheme textSelectedColor(@NativeType("NVGcolor") NVGColor value) { ntextSelectedColor(address(), value); return this; } /** Passes the {@link #textSelectedColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme textSelectedColor(java.util.function.Consumer consumer) { consumer.accept(textSelectedColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link #activeNodeColor} field. */ public BNDnodeTheme activeNodeColor(@NativeType("NVGcolor") NVGColor value) { nactiveNodeColor(address(), value); return this; } /** Passes the {@link #activeNodeColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme activeNodeColor(java.util.function.Consumer consumer) { consumer.accept(activeNodeColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link #wireSelectColor} field. */ public BNDnodeTheme wireSelectColor(@NativeType("NVGcolor") NVGColor value) { nwireSelectColor(address(), value); return this; } /** Passes the {@link #wireSelectColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme wireSelectColor(java.util.function.Consumer consumer) { consumer.accept(wireSelectColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link #nodeBackdropColor} field. */ public BNDnodeTheme nodeBackdropColor(@NativeType("NVGcolor") NVGColor value) { nnodeBackdropColor(address(), value); return this; } /** Passes the {@link #nodeBackdropColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme nodeBackdropColor(java.util.function.Consumer consumer) { consumer.accept(nodeBackdropColor()); return this; } /** Sets the specified value to the {@link #noodleCurving} field. */ public BNDnodeTheme noodleCurving(int value) { nnoodleCurving(address(), value); return this; } /** Initializes this struct with the specified values. */ public BNDnodeTheme set( NVGColor nodeSelectedColor, NVGColor wiresColor, NVGColor textSelectedColor, NVGColor activeNodeColor, NVGColor wireSelectColor, NVGColor nodeBackdropColor, int noodleCurving ) { nodeSelectedColor(nodeSelectedColor); wiresColor(wiresColor); textSelectedColor(textSelectedColor); activeNodeColor(activeNodeColor); wireSelectColor(wireSelectColor); nodeBackdropColor(nodeBackdropColor); noodleCurving(noodleCurving); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public BNDnodeTheme set(BNDnodeTheme src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code BNDnodeTheme} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static BNDnodeTheme malloc() { return new BNDnodeTheme(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code BNDnodeTheme} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static BNDnodeTheme calloc() { return new BNDnodeTheme(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code BNDnodeTheme} instance allocated with {@link BufferUtils}. */ public static BNDnodeTheme create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new BNDnodeTheme(memAddress(container), container); } /** Returns a new {@code BNDnodeTheme} instance for the specified memory address. */ public static BNDnodeTheme create(long address) { return new BNDnodeTheme(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static BNDnodeTheme createSafe(long address) { return address == NULL ? null : new BNDnodeTheme(address, null); } /** * Returns a new {@link BNDnodeTheme.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static BNDnodeTheme.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link BNDnodeTheme.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static BNDnodeTheme.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link BNDnodeTheme.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static BNDnodeTheme.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link BNDnodeTheme.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static BNDnodeTheme.Buffer create(long address, int capacity) { return new Buffer(address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static BNDnodeTheme.Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme mallocStack() { return malloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme callocStack() { return calloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme mallocStack(MemoryStack stack) { return malloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme callocStack(MemoryStack stack) { return calloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme.Buffer mallocStack(int capacity) { return malloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme.Buffer callocStack(int capacity) { return calloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme.Buffer mallocStack(int capacity, MemoryStack stack) { return malloc(capacity, stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static BNDnodeTheme.Buffer callocStack(int capacity, MemoryStack stack) { return calloc(capacity, stack); } /** * Returns a new {@code BNDnodeTheme} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static BNDnodeTheme malloc(MemoryStack stack) { return new BNDnodeTheme(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code BNDnodeTheme} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static BNDnodeTheme calloc(MemoryStack stack) { return new BNDnodeTheme(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link BNDnodeTheme.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static BNDnodeTheme.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link BNDnodeTheme.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 BNDnodeTheme.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #nodeSelectedColor}. */ public static NVGColor nnodeSelectedColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.NODESELECTEDCOLOR); } /** Unsafe version of {@link #wiresColor}. */ public static NVGColor nwiresColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.WIRESCOLOR); } /** Unsafe version of {@link #textSelectedColor}. */ public static NVGColor ntextSelectedColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.TEXTSELECTEDCOLOR); } /** Unsafe version of {@link #activeNodeColor}. */ public static NVGColor nactiveNodeColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.ACTIVENODECOLOR); } /** Unsafe version of {@link #wireSelectColor}. */ public static NVGColor nwireSelectColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.WIRESELECTCOLOR); } /** Unsafe version of {@link #nodeBackdropColor}. */ public static NVGColor nnodeBackdropColor(long struct) { return NVGColor.create(struct + BNDnodeTheme.NODEBACKDROPCOLOR); } /** Unsafe version of {@link #noodleCurving}. */ public static int nnoodleCurving(long struct) { return UNSAFE.getInt(null, struct + BNDnodeTheme.NOODLECURVING); } /** Unsafe version of {@link #nodeSelectedColor(NVGColor) nodeSelectedColor}. */ public static void nnodeSelectedColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.NODESELECTEDCOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #wiresColor(NVGColor) wiresColor}. */ public static void nwiresColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.WIRESCOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #textSelectedColor(NVGColor) textSelectedColor}. */ public static void ntextSelectedColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.TEXTSELECTEDCOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #activeNodeColor(NVGColor) activeNodeColor}. */ public static void nactiveNodeColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.ACTIVENODECOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #wireSelectColor(NVGColor) wireSelectColor}. */ public static void nwireSelectColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.WIRESELECTCOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #nodeBackdropColor(NVGColor) nodeBackdropColor}. */ public static void nnodeBackdropColor(long struct, NVGColor value) { memCopy(value.address(), struct + BNDnodeTheme.NODEBACKDROPCOLOR, NVGColor.SIZEOF); } /** Unsafe version of {@link #noodleCurving(int) noodleCurving}. */ public static void nnoodleCurving(long struct, int value) { UNSAFE.putInt(null, struct + BNDnodeTheme.NOODLECURVING, value); } // ----------------------------------- /** An array of {@link BNDnodeTheme} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final BNDnodeTheme ELEMENT_FACTORY = BNDnodeTheme.create(-1L); /** * Creates a new {@code BNDnodeTheme.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 BNDnodeTheme#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 BNDnodeTheme getElementFactory() { return ELEMENT_FACTORY; } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#nodeSelectedColor} field. */ @NativeType("NVGcolor") public NVGColor nodeSelectedColor() { return BNDnodeTheme.nnodeSelectedColor(address()); } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#wiresColor} field. */ @NativeType("NVGcolor") public NVGColor wiresColor() { return BNDnodeTheme.nwiresColor(address()); } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#textSelectedColor} field. */ @NativeType("NVGcolor") public NVGColor textSelectedColor() { return BNDnodeTheme.ntextSelectedColor(address()); } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#activeNodeColor} field. */ @NativeType("NVGcolor") public NVGColor activeNodeColor() { return BNDnodeTheme.nactiveNodeColor(address()); } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#wireSelectColor} field. */ @NativeType("NVGcolor") public NVGColor wireSelectColor() { return BNDnodeTheme.nwireSelectColor(address()); } /** @return a {@link NVGColor} view of the {@link BNDnodeTheme#nodeBackdropColor} field. */ @NativeType("NVGcolor") public NVGColor nodeBackdropColor() { return BNDnodeTheme.nnodeBackdropColor(address()); } /** @return the value of the {@link BNDnodeTheme#noodleCurving} field. */ public int noodleCurving() { return BNDnodeTheme.nnoodleCurving(address()); } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#nodeSelectedColor} field. */ public BNDnodeTheme.Buffer nodeSelectedColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.nnodeSelectedColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#nodeSelectedColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer nodeSelectedColor(java.util.function.Consumer consumer) { consumer.accept(nodeSelectedColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#wiresColor} field. */ public BNDnodeTheme.Buffer wiresColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.nwiresColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#wiresColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer wiresColor(java.util.function.Consumer consumer) { consumer.accept(wiresColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#textSelectedColor} field. */ public BNDnodeTheme.Buffer textSelectedColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.ntextSelectedColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#textSelectedColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer textSelectedColor(java.util.function.Consumer consumer) { consumer.accept(textSelectedColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#activeNodeColor} field. */ public BNDnodeTheme.Buffer activeNodeColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.nactiveNodeColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#activeNodeColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer activeNodeColor(java.util.function.Consumer consumer) { consumer.accept(activeNodeColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#wireSelectColor} field. */ public BNDnodeTheme.Buffer wireSelectColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.nwireSelectColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#wireSelectColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer wireSelectColor(java.util.function.Consumer consumer) { consumer.accept(wireSelectColor()); return this; } /** Copies the specified {@link NVGColor} to the {@link BNDnodeTheme#nodeBackdropColor} field. */ public BNDnodeTheme.Buffer nodeBackdropColor(@NativeType("NVGcolor") NVGColor value) { BNDnodeTheme.nnodeBackdropColor(address(), value); return this; } /** Passes the {@link BNDnodeTheme#nodeBackdropColor} field to the specified {@link java.util.function.Consumer Consumer}. */ public BNDnodeTheme.Buffer nodeBackdropColor(java.util.function.Consumer consumer) { consumer.accept(nodeBackdropColor()); return this; } /** Sets the specified value to the {@link BNDnodeTheme#noodleCurving} field. */ public BNDnodeTheme.Buffer noodleCurving(int value) { BNDnodeTheme.nnoodleCurving(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy