Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 78 of file newmenu.cpp.
Referenced by CNewMenu::Initialize(), and CNewMenu::LoadItem().
{ HDC hdc, hdcScr; HBITMAP hbm, hbmOld; RECT rc; hdcScr = GetDC(NULL); hdc = CreateCompatibleDC(hdcScr); SetRect(&rc, 0, 0, GetSystemMetrics(SM_CXMENUCHECK), GetSystemMetrics(SM_CYMENUCHECK)); hbm = CreateCompatibleBitmap(hdcScr, rc.right, rc.bottom); ReleaseDC(NULL, hdcScr); hbmOld = (HBITMAP)SelectObject(hdc, hbm); FillRect(hdc, &rc, (HBRUSH)(COLOR_MENU + 1)); if (!DrawIconEx(hdc, 0, 0, hIcon, rc.right, rc.bottom, 0, NULL, DI_NORMAL)) ERR("DrawIcon failed: %x\n", GetLastError()); SelectObject(hdc, hbmOld); DeleteDC(hdc); return hbm; }