Lines Matching refs:hdc

1477     HDC	    hdc = GetWindowDC(hwnd);  in GetFontSize()  local
1478 HFONT hfntOld = SelectFont(hdc, (HFONT)font); in GetFontSize()
1482 GetTextMetrics(hdc, &tm); in GetFontSize()
1485 GetTextExtentPoint(hdc, in GetFontSize()
1492 SelectFont(hdc, hfntOld); in GetFontSize()
1494 ReleaseDC(hwnd, hdc); in GetFontSize()
1526 HDC hdc; in pixels_to_points() local
1529 hdc = GetWindowDC(hwnd); in pixels_to_points()
1532 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX)); in pixels_to_points()
1534 ReleaseDC(hwnd, hdc); in pixels_to_points()
2304 GetTextWidth(HDC hdc, char_u *str, int len) in GetTextWidth() argument
2308 GetTextExtentPoint(hdc, (LPCSTR)str, len, &size); in GetTextWidth()
2317 GetTextWidthEnc(HDC hdc, char_u *str, int len) in GetTextWidthEnc() argument
2328 n = GetTextExtentPointW(hdc, wstr, wlen, &size); in GetTextWidthEnc()
2352 HDC hdc; in CenterWindow() local
2374 hdc = GetDC(hwndChild); in CenterWindow()
2377 rScreen.right = GetDeviceCaps(hdc, HORZRES); in CenterWindow()
2378 rScreen.bottom = GetDeviceCaps(hdc, VERTRES); in CenterWindow()
2379 ReleaseDC(hwndChild, hdc); in CenterWindow()
3890 # define SelectFont(hdc, hfont) ((HFONT)SelectObject((hdc), (HGDIOBJ)(HFONT)(hfont))) argument
4415 HDC hdc; in set_tabline_font() local
4430 hdc = GetWindowDC(hwnd); in set_tabline_font()
4431 hfntOld = SelectFont(hdc, font); in set_tabline_font()
4433 GetTextMetrics(hdc, &tm); in set_tabline_font()
4435 SelectFont(hdc, hfntOld); in set_tabline_font()
4436 ReleaseDC(hwnd, hdc); in set_tabline_font()
6892 HDC hdc; in gui_mch_dialog() local
6968 hdc = GetWindowDC(hwnd); in gui_mch_dialog()
6981 oldFont = SelectFont(hdc, font); in gui_mch_dialog()
6987 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT)); in gui_mch_dialog()
6991 GetTextMetrics(hdc, &fontInfo); in gui_mch_dialog()
6995 minButtonWidth = GetTextWidth(hdc, (char_u *)"Cancel", 6); in gui_mch_dialog()
7050 textWidth += GetTextWidthEnc(hdc, pend, l); in gui_mch_dialog()
7109 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart)); in gui_mch_dialog()
7134 textWidth = GetTextWidthEnc(hdc, pstart, (int)(pend - pstart)); in gui_mch_dialog()
7200 GetDeviceCaps(hdc, LOGPIXELSY)); in gui_mch_dialog()
7303 SelectFont(hdc, oldFont); in gui_mch_dialog()
7305 ReleaseDC(hwnd, hdc); in gui_mch_dialog()
7561 HDC hdc; in get_dialog_font_metrics() local
7581 hdc = GetDC(s_hwnd); in get_dialog_font_metrics()
7582 SelectObject(hdc, hfontTools); in get_dialog_font_metrics()
7588 GetTextExtentPoint(hdc, in get_dialog_font_metrics()
7591 ReleaseDC(s_hwnd, hdc); in get_dialog_font_metrics()
7629 HDC hdc; in gui_mch_tearoff() local
7673 hdc = GetWindowDC(hwnd); in gui_mch_tearoff()
7685 oldFont = SelectFont(hdc, font); in gui_mch_tearoff()
7687 oldFont = SelectFont(hdc, GetStockObject(SYSTEM_FONT)); in gui_mch_tearoff()
7691 spaceWidth = GetTextWidth(hdc, (char_u *)" ", 1); in gui_mch_tearoff()
7705 textWidth = GetTextWidthEnc(hdc, text, (int)STRLEN(text)); in gui_mch_tearoff()
7734 submenuWidth = GetTextWidth(hdc, (char_u *)TEAROFF_SUBMENU_LABEL, in gui_mch_tearoff()
7738 dlgwidth = GetTextWidthEnc(hdc, title, (int)STRLEN(title)); in gui_mch_tearoff()
7785 GetDeviceCaps(hdc, LOGPIXELSY)); in gui_mch_tearoff()
7841 padding0 = (columnWidths[0] - GetTextWidthEnc(hdc, menu->dname, in gui_mch_tearoff()
7849 textWidth = GetTextWidthEnc(hdc, menu->actext, acLen); in gui_mch_tearoff()
7925 SelectFont(hdc, oldFont); in gui_mch_tearoff()
7927 ReleaseDC(hwnd, hdc); in gui_mch_tearoff()