Lines Matching refs:y

303     below_menu.y = height;  in gui_ph_handle_menu_resize()
646 mouse_y = pos->ul.y + gui.border_width; in gui_ph_handle_mouse()
673 abs_mouse.y = pointer->pos.y; in gui_ph_handle_mouse()
763 r->ul.x - offset.x, r->ul.y - offset.y, in gui_ph_handle_raw_draw()
765 r->lr.y - r->ul.y + 1); in gui_ph_handle_raw_draw()
772 r->ul.x - offset.x, r->ul.y - offset.y, in gui_ph_handle_raw_draw()
774 r->lr.y - r->ul.y + 1); in gui_ph_handle_raw_draw()
862 gui_ph_raw_offset.y = -gui_ph_raw_offset.y; in gui_ph_draw_end()
1648 gui_mch_get_winpos(int *x, int *y) in gui_mch_get_winpos() argument
1655 *y = pos->y; in gui_mch_get_winpos()
1661 gui_mch_set_winpos(int x, int y) in gui_mch_set_winpos() argument
1663 PhPoint_t pos = { x, y }; in gui_mch_set_winpos()
1701 *screen_h = console.lr.y - console.ul.y + 1; in gui_mch_get_screen_dimensions()
1759 gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h) in gui_mch_set_scrollbar_pos() argument
1761 PhArea_t area = {{ x, y }, { w, h }}; in gui_mch_set_scrollbar_pos()
1922 gui_mch_getmouse(int *x, int *y) in gui_mch_getmouse() argument
1933 *y = info.pos.y - iy; in gui_mch_getmouse()
1937 gui_mch_setmouse(int x, int y) in gui_mch_setmouse() argument
1943 PhMoveCursorAbs(PhInputGroup(NULL), abs_x + x, abs_y + y); in gui_mch_setmouse()
2034 rect.ul.y = FILL_Y(row); in gui_mch_invert_rectangle()
2038 rect.lr.y = rect.ul.y + nr * gui.char_height; in gui_mch_invert_rectangle()
2042 rect.lr.y -= 1; in gui_mch_invert_rectangle()
2090 rect.ul.y = FILL_Y(row + num_lines); in gui_mch_delete_lines()
2093 rect.lr.y = FILL_Y(gui.scroll_region_bot + 1) - 1; in gui_mch_delete_lines()
2100 delta.y = -num_lines * gui.char_height; in gui_mch_delete_lines()
2120 rect.ul.y = FILL_Y(row); in gui_mch_insert_lines()
2123 rect.lr.y = FILL_Y(gui.scroll_region_bot - num_lines + 1) - 1; in gui_mch_insert_lines()
2130 delta.y = num_lines * gui.char_height; in gui_mch_insert_lines()
2194 rect.ul.y = FILL_Y(row); in gui_mch_draw_string()
2196 rect.lr.y = FILL_Y(row + 1) - 1; in gui_mch_draw_string()
2205 rect.lr.y -= (p_linespace + 1) / 2; in gui_mch_draw_string()
2228 r.ul.y = FILL_Y(gui.row); in gui_mch_draw_hollow_cursor()
2230 r.lr.y = r.ul.y + gui.char_height - 1; in gui_mch_draw_hollow_cursor()
2244 r.ul.y = FILL_Y(gui.row) + gui.char_height - h; in gui_mch_draw_part_cursor()
2246 r.lr.y = r.ul.y + h - 1; in gui_mch_draw_part_cursor()
2329 gui_mch_set_text_area_pos(int x, int y, int w, int h) in gui_mch_set_text_area_pos() argument
2331 PhArea_t area = {{x, y}, {w, h}}; in gui_mch_set_text_area_pos()
2456 gui_mch_set_menu_pos(int x, int y, int w, int h) in gui_mch_set_menu_pos() argument
2916 gui.char_height = (- extent.ul.y) + extent.lr.y + 1; in gui_mch_init_font()
2917 gui.char_ascent = - extent.ul.y; in gui_mch_init_font()