Class NkStyleSelectable

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class NkStyleSelectable extends Struct<NkStyleSelectable> implements NativeResource

 struct nk_style_selectable {
     {@link NkStyleItem struct nk_style_item} normal;
     {@link NkStyleItem struct nk_style_item} hover;
     {@link NkStyleItem struct nk_style_item} pressed;
     {@link NkStyleItem struct nk_style_item} normal_active;
     {@link NkStyleItem struct nk_style_item} hover_active;
     {@link NkStyleItem struct nk_style_item} pressed_active;
     {@link NkColor struct nk_color} text_normal;
     {@link NkColor struct nk_color} text_hover;
     {@link NkColor struct nk_color} text_pressed;
     {@link NkColor struct nk_color} text_normal_active;
     {@link NkColor struct nk_color} text_hover_active;
     {@link NkColor struct nk_color} text_pressed_active;
     {@link NkColor struct nk_color} text_background;
     nk_flags text_alignment;
     float rounding;
     {@link NkVec2 struct nk_vec2} padding;
     {@link NkVec2 struct nk_vec2} touch_padding;
     {@link NkVec2 struct nk_vec2} image_padding;
     float color_factor;
     float disabled_factor;
     {@link NkHandle nk_handle} userdata;
     {@link NkDrawBeginCallbackI nk_draw_begin} draw_begin;
     {@link NkDrawEndCallbackI nk_draw_end} draw_end;
 }