Lines Matching defs:body
5914 NK_LIB int nk_nonblock_begin(struct nk_context *ctx, nk_flags flags, struct nk_rect body, struct nk_rect header, enum nk_panel_type panel_type);
7249 /* body */
15810 struct nk_rect body;
15811 body.x = win->bounds.x;
15812 body.w = win->bounds.w;
15813 body.y = (win->bounds.y + layout->header_height);
15814 body.h = (win->bounds.h - layout->header_height);
15816 nk_draw_image(out, body, &style->window.fixed_background.data.image, nk_white);
15817 else nk_fill_rect(out, body, 0, style->window.fixed_background.data.color);
16899 nk_flags flags, struct nk_rect body, struct nk_rect header,
16934 in_body = nk_input_is_mouse_hovering_rect(&ctx->input, body);
16950 popup->bounds = body;
17071 struct nk_rect body;
17103 body.x = ctx->input.mouse.pos.x;
17104 body.y = ctx->input.mouse.pos.y;
17106 body.x = popup->bounds.x;
17107 body.y = popup->bounds.y;
17109 body.w = size.x;
17110 body.h = size.y;
17113 ret = nk_nonblock_begin(ctx, flags|NK_WINDOW_NO_SCROLLBAR, body,
17259 struct nk_rect body = {0,0,0,0};
17262 body = panel->bounds;
17263 body.y = (panel->at_y + panel->footer_height + panel->border + padding.y + panel->row.height);
17264 body.h = (panel->bounds.y + panel->bounds.h) - body.y;
17267 int in_body = nk_input_is_mouse_hovering_rect(&ctx->input, body);
17361 struct nk_rect body;
17371 body.x = header.x;
17372 body.w = size.x;
17373 body.y = header.y + header.h;
17374 body.h = size.y;
17381 if (!nk_nonblock_begin(ctx, NK_WINDOW_NO_SCROLLBAR, body, header, NK_PANEL_MENU))
24559 struct nk_rect body;
24569 body.x = header.x;
24570 body.w = size.x;
24571 body.y = header.y + header.h-ctx->style.window.combo_border;
24572 body.h = size.y;
24579 if (!nk_nonblock_begin(ctx, 0, body,