Class NkStyleProperty

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<NkStyleProperty>
org.lwjgl.nuklear.NkStyleProperty
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class NkStyleProperty extends org.lwjgl.system.Struct<NkStyleProperty> implements org.lwjgl.system.NativeResource

Layout


 struct nk_style_property {
     struct nk_style_item normal;
     struct nk_style_item hover;
     struct nk_style_item active;
     struct nk_color border_color;
     struct nk_color label_normal;
     struct nk_color label_hover;
     struct nk_color label_active;
     enum nk_symbol_type sym_left();
     enum nk_symbol_type sym_right();
     float border;
     float rounding;
     struct nk_vec2 padding;
     float color_factor;
     float disabled_factor;
     struct nk_style_edit edit;
     struct nk_style_button inc_button;
     struct nk_style_button dec_button;
     nk_handle userdata;
     nk_draw_begin draw_begin;
     nk_draw_end draw_end;
 }