Lines Matching defs:clicked

1322 /// user input by being clicked on or programmatically by calling `nk_window_focus`.
1324 /// `NK_WINDOW_HIDDEN`, the user clicked the close button on windows with flag
3222 /// decrement button is clicked. Finally there is a value for increment per pixel
4602 unsigned int clicked;
4618 unsigned int clicked;
13951 in->mouse.buttons[i].clicked = 0;
13960 in->keyboard.keys[i].clicked = 0;
13998 in->keyboard.keys[key].clicked++;
14000 in->keyboard.keys[key].clicked++;
14018 btn->clicked++;
14070 return (btn->clicked && btn->down == nk_false) ? nk_true : nk_false;
14100 btn->clicked) ? nk_true : nk_false;
14110 btn->clicked) ? nk_true : nk_false;
14151 if (b->down && b->clicked)
14159 return (!i->mouse.buttons[id].down && i->mouse.buttons[id].clicked);
14167 if ((k->down && k->clicked) || (!k->down && k->clicked >= 2))
14177 if ((!k->down && k->clicked) || (k->down && k->clicked >= 2))
15661 left_mouse_clicked = (int)in->mouse.buttons[NK_BUTTON_LEFT].clicked;
16348 inpanel = inpanel && ctx->input.mouse.buttons[NK_BUTTON_LEFT].clicked;
16369 /* activate window if clicked */
21418 left_mouse_clicked = in->mouse.buttons[NK_BUTTON_LEFT].clicked;
21816 /* API click: on mouse down, move the cursor to the clicked location,
21828 * to the clicked location */
22908 if (in && in->mouse.buttons[NK_BUTTON_LEFT].clicked && in->mouse.buttons[NK_BUTTON_LEFT].down) {
22946 in->mouse.buttons[NK_BUTTON_LEFT].clicked) {
22952 } else if (is_hovered && in->mouse.buttons[NK_BUTTON_RIGHT].clicked &&
24162 i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0;
24185 i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0;
24236 in->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0;
25517 /// - 2017/07/07 (1.40.6) - Fixed missing clipping rect check for hovering/clicked