public static int nk_input_is_mouse_down(nk_input i, NkButtons id)
 {
     if (i == null)
     {
         return((int)(nk_false));
     }
     return((int)(i.mouse.Buttons[(int)id].down));
 }
 public static int nk_input_is_mouse_released(nk_input i, NkButtons id)
 {
     if (i == null)
     {
         return((int)(nk_false));
     }
     return(((i.mouse.Buttons[(int)id].down == 0) && ((i.mouse.Buttons[(int)id].clicked) != 0)) ? 1 : 0);
 }
        public static int nk_input_has_mouse_click(nk_input i, NkButtons id)
        {
            nk_mouse_button *btn;

            if (i == null)
            {
                return((int)(nk_false));
            }
            btn = (nk_mouse_button *)i.mouse.Buttons + (int)id;
            return((int)((((btn->clicked) != 0) && ((btn->down) == (nk_false))) ? nk_true : nk_false));
        }
        public static int nk_input_has_mouse_click_down_in_rect(nk_input i, NkButtons id, NkRect b, int down)
        {
            nk_mouse_button *btn;

            if (i == null)
            {
                return((int)(nk_false));
            }
            btn = (nk_mouse_button *)i.mouse.Buttons + (int)id;
            return
                ((int)(((nk_input_has_mouse_click_in_rect(i, (id), (NkRect)(b))) != 0) && ((btn->down) == (down)) ? 1 : 0));
        }
 public static int nk_input_mouse_clicked(nk_input i, NkButtons id, NkRect rect)
 {
     if (i == null)
     {
         return((int)(nk_false));
     }
     if (nk_input_is_mouse_hovering_rect(i, (NkRect)(rect)) == 0)
     {
         return((int)(nk_false));
     }
     return((int)(nk_input_is_mouse_click_in_rect(i, (id), (NkRect)(rect))));
 }
        public static int nk_input_is_mouse_pressed(nk_input i, NkButtons id)
        {
            nk_mouse_button *b;

            if (i == null)
            {
                return((int)(nk_false));
            }
            b = (nk_mouse_button *)i.mouse.Buttons + (int)id;
            if (((b->down) != 0) && ((b->clicked) != 0))
            {
                return((int)(nk_true));
            }
            return((int)(nk_false));
        }
        public static int nk_input_has_mouse_click_in_rect(nk_input i, NkButtons id, NkRect b)
        {
            nk_mouse_button *btn;

            if (i == null)
            {
                return((int)(nk_false));
            }
            btn = (nk_mouse_button *)i.mouse.Buttons + (int)id;
            if (
                !((((b.x) <= (btn->clicked_pos.x)) && ((btn->clicked_pos.x) < (b.x + b.w))) &&
                  (((b.y) <= (btn->clicked_pos.y)) && ((btn->clicked_pos.y) < (b.y + b.h)))))
            {
                return((int)(nk_false));
            }
            return((int)(nk_true));
        }
Exemplo n.º 8
0
 public bool WidgetHasMouseClickDown(NkButtons btn, int down)
 {
     return(Nk.nk_widget_has_mouse_click_down(_ctx, btn, down) != 0);
 }
Exemplo n.º 9
0
 public bool WidgetIsMouseClicked(NkButtons btn)
 {
     return(Nk.nk_widget_is_mouse_clicked(_ctx, btn) != 0);
 }
Exemplo n.º 10
0
 public void InputButton(NkButtons id, int x, int y, bool down)
 {
     Nk.nk_input_button(_ctx, id, x, y, down ? 1 : 0);
 }