Lines Matching defs:dc
737 HDC dc = BeginPaint(hwnd, &paint_struct);
741 HFONT hOldFont = static_cast<HFONT>(SelectObject(dc, hCaptionFont));
742 SetBkMode(dc, TRANSPARENT);
750 FillRect(dc, &rcClient, reinterpret_cast<HBRUSH>(COLOR_3DFACE + 1));
751 DrawTextW(dc, noFileText, -1, &rcClient,
762 HDC hSrcDC = CreateCompatibleDC(dc);
765 BitBlt(dc, destX, 0, bitmap.bmWidth, bitmap.bmHeight,
778 FillRgn(dc, hEraseRgn, GetSysColorBrush(COLOR_3DFACE));
792 DrawTextW(dc, szCaption, iLength, &rcCaptionRect,
797 FillRect(dc, &rcClient, reinterpret_cast<HBRUSH>(COLOR_3DFACE + 1));
801 DrawIconEx(dc, destX, 0, pImpl->_preview_file_icon,
817 DrawTextW(dc, szCaption, iLength, &rcCaptionRect,
823 FillRect(dc, &rcClient, reinterpret_cast<HBRUSH>(COLOR_3DFACE + 1));
829 SelectObject(dc, hOldFont);
1368 HDC dc = GetDC(_preview_wnd);
1369 DrawTextW(dc, szCaption, iLength, &rcCaptionRect,
1371 ReleaseDC(_preview_wnd, dc);