Class NkStyleWindowHeader

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class NkStyleWindowHeader extends Struct<NkStyleWindowHeader> implements NativeResource

 struct nk_style_window_header {
     {@link NkStyleItem struct nk_style_item} normal;
     {@link NkStyleItem struct nk_style_item} hover;
     {@link NkStyleItem struct nk_style_item} active;
     {@link NkStyleButton struct nk_style_button} close_button;
     {@link NkStyleButton struct nk_style_button} minimize_button;
     enum nk_symbol_type close_symbol;
     enum nk_symbol_type minimize_symbol;
     enum nk_symbol_type maximize_symbol;
     {@link NkColor struct nk_color} label_normal;
     {@link NkColor struct nk_color} label_hover;
     {@link NkColor struct nk_color} label_active;
     enum nk_style_header_align align;
     {@link NkVec2 struct nk_vec2} padding;
     {@link NkVec2 struct nk_vec2} label_padding;
     {@link NkVec2 struct nk_vec2} spacing;
 }