Lines Matching refs:hDC

1209     if (prt_dlg.hDC != NULL)  in mch_print_cleanup()
1210 DeleteDC(prt_dlg.hDC); in mch_print_cleanup()
1262 GetTextMetrics(prt_dlg.hDC, &prt_tm); in prt_get_cpl()
1265 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES); in prt_get_cpl()
1266 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH); in prt_get_cpl()
1267 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX); in prt_get_cpl()
1268 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX); in prt_get_cpl()
1297 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES); in prt_get_lpp()
1298 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT); in prt_get_lpp()
1299 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY); in prt_get_lpp()
1300 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY); in prt_get_lpp()
1383 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL); in mch_print_init()
1404 if (prt_dlg.hDC == NULL) in mch_print_init()
1414 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS); in mch_print_init()
1415 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1 in mch_print_init()
1416 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1 in mch_print_init()
1420 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT); in mch_print_init()
1463 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL) in mch_print_init()
1481 SetBkMode(prt_dlg.hDC, OPAQUE); in mch_print_init()
1482 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]); in mch_print_init()
1548 SetAbortProc(prt_dlg.hDC, AbortProc); in mch_print_begin()
1560 ret = StartDocW(prt_dlg.hDC, &di); in mch_print_begin()
1578 EndDoc(prt_dlg.hDC); in mch_print_end()
1586 return (EndPage(prt_dlg.hDC) > 0); in mch_print_end_page()
1594 return (StartPage(prt_dlg.hDC) > 0); in mch_print_begin_page()
1629 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin, in mch_print_text_out()
1631 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz); in mch_print_text_out()
1641 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz); in mch_print_text_out()
1652 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]); in mch_print_set_font()
1658 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC, in mch_print_set_bg()
1665 SetBkMode(prt_dlg.hDC, TRANSPARENT); in mch_print_set_bg()
1667 SetBkMode(prt_dlg.hDC, OPAQUE); in mch_print_set_bg()
1673 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC, in mch_print_set_fg()