Lines Matching refs:row

107 INT                           row;  in guix_canvas_flush()  local
173 for (row = grid_space; row < canvas_width; row += grid_space) in guix_canvas_flush()
175 SetPixel(hdcMem, row, col, RGB(128, 128, 128)); in guix_canvas_flush()
188 row = gsi->crosshair_cy * scale / 100; in guix_canvas_flush()
190 MoveToEx(hdcMem, col, row, NULL); in guix_canvas_flush()
193 LineTo(hdcMem, col, row); in guix_canvas_flush()
196 row = (gsi->crosshair_cy - gsi->crosshair_size) * scale / 100; in guix_canvas_flush()
197 MoveToEx(hdcMem, col, row, NULL); in guix_canvas_flush()
199 row = (gsi->crosshair_cy + gsi->crosshair_size + 1) * scale / 100; in guix_canvas_flush()
200 LineTo(hdcMem, col, row); in guix_canvas_flush()
219 row = snapline->target_top_left * scale / 100; in guix_canvas_flush()
221 MoveToEx(hdcMem, col, row, NULL); in guix_canvas_flush()
223 row = (snapline->target_bottom_right + 1) * scale / 100; in guix_canvas_flush()
225 LineTo(hdcMem, col, row); in guix_canvas_flush()
231 row = snapline->target_x_y * scale / 100; in guix_canvas_flush()
233 MoveToEx(hdcMem, col, row, NULL); in guix_canvas_flush()
237 LineTo(hdcMem, col, row); in guix_canvas_flush()
810 UINT _gx_scroll_wheel_selected_set(GX_SCROLL_WHEEL *wheel, INT row) in _gx_scroll_wheel_selected_set() argument
812 if ((row < 0) || wheel->gx_scroll_wheel_total_rows <= 0) in _gx_scroll_wheel_selected_set()
814 row = 0; in _gx_scroll_wheel_selected_set()
816 else if (row > wheel->gx_scroll_wheel_total_rows - 1) in _gx_scroll_wheel_selected_set()
818 row = wheel->gx_scroll_wheel_total_rows - 1; in _gx_scroll_wheel_selected_set()
821 wheel->gx_scroll_wheel_selected_row = row; in _gx_scroll_wheel_selected_set()