Searched refs:pDraw (Results 1 – 2 of 2) sorted by relevance
/reactos/dll/win32/shell32/dialogs/ |
H A D | filetypes.cpp | 411 if (!pDraw) in EditTypeDlg_OnDrawItem() 415 if (pDraw->itemState & ODS_SELECTED) in EditTypeDlg_OnDrawItem() 417 FillRect(pDraw->hDC, &pDraw->rcItem, HBRUSH(COLOR_HIGHLIGHT + 1)); in EditTypeDlg_OnDrawItem() 423 FillRect(pDraw->hDC, &pDraw->rcItem, HBRUSH(COLOR_WINDOW + 1)); in EditTypeDlg_OnDrawItem() 445 DrawTextW(pDraw->hDC, szText, -1, &pDraw->rcItem, in EditTypeDlg_OnDrawItem() 448 SelectObject(pDraw->hDC, hFontOld); in EditTypeDlg_OnDrawItem() 456 DrawTextW(pDraw->hDC, szText, -1, &pDraw->rcItem, in EditTypeDlg_OnDrawItem() 462 if (pDraw->itemState & ODS_FOCUS) in EditTypeDlg_OnDrawItem() 464 DrawFocusRect(pDraw->hDC, &pDraw->rcItem); in EditTypeDlg_OnDrawItem() 1611 LPDRAWITEMSTRUCT pDraw; in EditTypeDlgProc() local [all …]
|
/reactos/dll/win32/browseui/ |
H A D | CAutoComplete.cpp | 1626 LPDRAWITEMSTRUCT pDraw = reinterpret_cast<LPDRAWITEMSTRUCT>(lParam); in OnDrawItem() local 1627 ATLASSERT(pDraw != NULL); in OnDrawItem() 1631 if (pDraw->CtlType != ODT_LISTVIEW || pDraw->hwndItem != m_hwndList) in OnDrawItem() 1635 RECT rcItem = pDraw->rcItem; in OnDrawItem() 1638 UINT iItem = pDraw->itemID; // the index of item in OnDrawItem() 1642 HDC hDC = pDraw->hDC; in OnDrawItem() 1643 BOOL bSelected = (pDraw->itemState & ODS_SELECTED); in OnDrawItem()
|