Lines Matching refs:rect

382 	RECT	rect;  in directx_binddc()  local
383 GetClientRect(s_textArea, &rect); in directx_binddc()
384 DWriteContext_BindDC(s_dwc, s_hdc, &rect); in directx_binddc()
1322 RECT rect; in gui_mch_get_winpos() local
1324 GetWindowRect(s_hwnd, &rect); in gui_mch_get_winpos()
1325 *x = rect.left; in gui_mch_get_winpos()
1326 *y = rect.top; in gui_mch_get_winpos()
1357 RECT rect; in gui_mch_set_text_area_pos() local
1363 GetClientRect(s_hwnd, &rect); in gui_mch_set_text_area_pos()
1364 MoveWindow(s_tabhwnd, 0, top, rect.right, gui.tabline_height, TRUE); in gui_mch_set_text_area_pos()
2836 RECT rect; in _OnPaint() local
2838 GetClientRect(hwnd, &rect); in _OnPaint()
2839 ps.rcPaint.left = rect.left; in _OnPaint()
2840 ps.rcPaint.right = rect.right; in _OnPaint()
3425 RECT rect; in gui_mch_newfont() local
3427 GetWindowRect(s_hwnd, &rect); in gui_mch_newfont()
3430 gui_resize_shell(rect.right - rect.left in gui_mch_newfont()
3433 rect.bottom - rect.top in gui_mch_newfont()
3445 gui_resize_shell(rect.right - rect.left, in gui_mch_newfont()
3446 rect.bottom - rect.top in gui_mch_newfont()
4046 RECT rect; member
4068 RECT rect; member
4612 RECT rect; in _WndProc() local
4618 GetWindowRect(s_textArea, &rect); in _WndProc()
4619 if (pt.y < rect.top) in _WndProc()
4635 RECT rect; in _WndProc() local
4638 GetWindowRect(s_textArea, &rect); in _WndProc()
4639 if (pt.y < rect.top) in _WndProc()
6890 RECT rect; in gui_mch_dialog() local
7013 GetWindowRect(s_hwnd, &rect); in gui_mch_dialog()
7014 maxDialogWidth = rect.right - rect.left in gui_mch_dialog()
7020 maxDialogHeight = rect.bottom - rect.top in gui_mch_dialog()
7506 RECT rect; in tearoff_callback() local
7508 if (GetCursorPos(&mp) && GetWindowRect(hwnd, &rect)) in tearoff_callback()
7516 (int)rect.right - 8, in tearoff_callback()
8117 RECT rect; in tabline_wndproc() local
8150 TabCtrl_GetItemRect(hwnd, idx1, &rect); in tabline_wndproc()
8151 nCenter = rect.left + (rect.right - rect.left) / 2; in tabline_wndproc()
8538 RECT rect; in make_tooltip() local
8544 if (GetClientRect(s_textArea, &rect)) in make_tooltip()
8546 (LPARAM)rect.right); in make_tooltip()
8556 pti->rect.left = pt.x - 3; in make_tooltip()
8557 pti->rect.top = pt.y - 3; in make_tooltip()
8558 pti->rect.right = pt.x + 3; in make_tooltip()
8559 pti->rect.bottom = pt.y + 3; in make_tooltip()
8591 RECT rect; in BevalTimerProc() local
8601 GetClientRect(s_textArea, &rect); in BevalTimerProc()
8602 if (!PtInRect(&rect, pt)) in BevalTimerProc()