Lines Matching refs:left

1441 /// NK_WINDOW_SCALE_LEFT        | Puts window scaler in the left-bottom corner instead right-bottom
1545 /// Returns a `nk_rect` struct with window upper left window position and size
1561 /// Returns a `nk_vec2` struct with window upper left position
1650 /// Returns the upper left position of the currently visible and non-clipped
1664 /// returns `nk_vec2` struct with upper left screen position (no scrollbar offset)
2911 /// __img__ | Image to display inside the header on the left of the label
2930 /// __img__ | Image to display inside the header on the left of the label
2949 /// __img__ | Image to display inside the header on the left of the label
2995 /// __img__ | Image to display inside the header on the left of the label
3885 to use the font atlas. There are a number of details I left out. For example
3907 /* offset between top left and glyph */
4450 struct nk_color left;
4583 NK_API void nk_fill_rect_multi_color(struct nk_command_buffer*, struct nk_rect, struct nk_color left, struct nk_color top, struct nk_color right, struct nk_color bottom);
4787 NK_API void nk_draw_list_fill_rect_multi_color(struct nk_draw_list*, struct nk_rect rect, struct nk_color left, struct nk_color top, struct nk_color right, struct nk_color bottom);
7033 /* fill left padding up to a total of `width` characters */
7101 /* fill left padding up to a total of `width` characters */
7162 /* fill left padding up to a total of `width` characters */
8904 struct nk_color left, struct nk_color top, struct nk_color right,
8923 cmd->left = left;
10193 struct nk_color left, struct nk_color top, struct nk_color right,
10202 nk_color_fv(&col_left.r, left);
10443 r->left, r->top, r->right, r->bottom);
10716 /* bottom left */
10750 /* then right-aligned reduces waste, but bottom-left BL is always chooses left-aligned */
10766 /* find the left position that matches this */
10867 unsigned right, left = 0, stack[NK_MAX_SORT_STACK], pos = 0;
10870 for (; left+1 < len; len++) {
10873 pivot = array[left+seed%(len-left)];
10876 for (right = left-1;;) {
10886 left = len;
10939 float x0,y0,s0,t0; /* top-left */
11810 /* with left or right edges can be handled by splitting into two (or three) */
11813 /* the old way of doing this found the intersections with the left & right edges, */
11835 } else if (x3 < x1 && x0 > x2) { /* three segments descending down-left */
11842 } else if (x3 < x1 && x0 > x1) { /* two segments across x, down-left */
11848 } else if (x3 < x2 && x0 > x2) { /* two segments across x+1, down-left */
12514 /* pad on left and top */
12771 /* pack custom user data first so it will be in the upper left corner*/
15877 /* fill left empty space */
22145 /* move selection left */
22216 /* on windows, up&down in single-line behave like left&right */
22264 /* on windows, up&down become left&right */
23650 struct nk_rect left;
23656 /* left decrement button */
23657 left.h = font->height/2;
23658 left.w = left.h;
23659 left.x = property.x + style->border + style->padding.x;
23660 left.y = property.y + style->border + property.h/2.0f - left.h/2;
23665 label.x = left.x + left.w + style->padding.x;
23671 right.y = left.y;
23672 right.w = left.w;
23673 right.h = left.h;
23709 /* empty left space activator */
23725 if (nk_do_button_symbol(ws, out, left, style->sym_left, behavior, &style->dec_button, in, font)) {
23736 /* execute left button */
25471 /// resets back to zero if version on the left is incremented.
25559 /// - 2017/01/13 (1.32.0) - Added flag to put scaler into the bottom left corner.