Lines Matching defs:spacing
2040 /// widget_width = (window_width - padding - spacing) * (1/colum_count)
3974 struct nk_vec2 spacing;
3975 /* extra pixel spacing between glyphs */
4874 float spacing;
4941 struct nk_vec2 spacing;
5122 struct nk_vec2 spacing;
5144 struct nk_vec2 spacing;
5173 struct nk_vec2 spacing;
5200 struct nk_vec2 spacing;
12942 glyph->xadvance = (pc->xadvance + cfg->spacing.x);
13432 cfg.spacing = nk_vec2(0,0);
14378 toggle->spacing = 4;
14397 toggle->spacing = 4;
14439 slider->spacing = nk_vec2(2,2);
14647 combo->spacing = nk_vec2(4,0);
14679 tab->spacing = nk_vec2(4,4);
14740 win->header.spacing = nk_vec2(0,0);
14795 win->spacing = nk_vec2(4,4);
15756 header.w -= button.w + style->window.header.spacing.x + style->window.header.padding.x;
15759 header.x += button.w + style->window.header.spacing.x + style->window.header.padding.x;
15780 header.w -= button.w + style->window.header.spacing.x;
15783 header.x += button.w + style->window.header.spacing.x + style->window.header.padding.x;
15803 label.w = t + 2 * style->window.header.spacing.x;
17344 layout->bounds.y += layout->menu.h + ctx->style.window.spacing.y + layout->row.height;
17345 layout->bounds.h -= layout->menu.h + ctx->style.window.spacing.y + layout->row.height;
17625 struct nk_vec2 spacing;
17628 spacing = style->window.spacing;
17633 panel_spacing = (float)NK_MAX(columns - 1, 0) * spacing.x;
17659 item_spacing = style->window.spacing;
18147 struct nk_vec2 spacing = ctx->style.window.spacing;
18148 const float row_height = layout->row.height - spacing.y;
18158 struct nk_vec2 spacing;
18177 spacing = style->window.spacing;
18190 item_spacing = (float)layout->row.index * spacing.x;
18200 layout->row.item_offset += w + spacing.x;
18223 item_spacing = (float)layout->row.index * spacing.x;
18236 item_spacing = (float)layout->row.index * spacing.x;
18242 item_spacing = (float)layout->row.index * spacing.x;
18259 item_spacing = (float)layout->row.index * spacing.x;
18272 item_spacing = (float)layout->row.index * spacing.x;
18281 bounds->h = layout->row.height - spacing.y;
18381 item_spacing = style->window.spacing;
18433 sym.w = style->font->height + style->tab.spacing.x;}
18566 item_spacing = style->window.spacing;
18950 item_spacing = style->window.spacing;
19231 /* spacing over row boundaries */
20499 label.x = select.x + select.w + style->spacing;
21154 bounds.x = bounds.x + button.w + style->spacing.x;
21155 bounds.w = bounds.w - (2*button.w + 2*style->spacing.x);
24664 label.w = button.x - (style->combo.content_padding.x + style->combo.spacing.x) - label.x;;
24748 bounds.w = (button.x - (style->combo.content_padding.x + style->combo.spacing.x)) - bounds.x;
24932 label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x;
25100 label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x;
25177 item_spacing = ctx->style.window.spacing;
25210 item_spacing = ctx->style.window.spacing;
25263 item_spacing = ctx->style.window.spacing;
25544 /// - 2017/04/20 (1.36.2) - Fixed #405 overlapping rows with zero padding and spacing.
25715 /// wrong item spacing and panel width.