Searched refs:hfont (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dfontutil.cpp166 HFONT hfont = ::CreateFontIndirect(&lf); local
167 if ( !hfont )
173 ::DeleteObject((HGDIOBJ)hfont);
H A Dtooltip.cpp331 HFONT hfont = (HFONT) local
334 if ( !hfont )
336 hfont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);
337 if ( !hfont )
349 if ( !SelectObject(hdc, hfont) )
351 wxLogLastError(wxT("SelectObject(hfont)"));
H A Dfont.cpp392 HFONT hfont = ::CreateFontIndirect(&m_nativeFontInfo.lf); local
393 if ( !hfont )
399 m_hFont = (WXHFONT)hfont;
H A Ddc.cpp1390 HFONT hfont = (HFONT)font.GetResourceHandle(); local
1392 if ( ::GetObject(hfont, sizeof(lf), &lf) == 0 )
1394 wxLogLastError(wxT("GetObject(hfont)"));
1402 hfont = ::CreateFontIndirect(&lf);
1403 if ( !hfont )
1409 HFONT hfontOld = (HFONT)::SelectObject(GetHdc(), hfont);
1414 (void)::DeleteObject(hfont);
1511 HGDIOBJ hfont = ::SelectObject(GetHdc(), GetHfontOf(font)); local
1512 if ( hfont == HGDI_ERROR )
1519 m_oldFont = (WXHFONT)hfont;
[all...]
H A Dlistctrl.cpp2499 bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont, int colCount) argument
2509 SelectInHDC selFont(hdc, hfont);
2611 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont) argument
2684 HandleSubItemPrepaint(pLVCD, hfont, colCount);
H A Dwindow.cpp6655 HFONT hfont = GetHfontOf(win->GetFont());
6656 if ( hfont )
6658 hfont = (HFONT)::SelectObject(hdc, hfont);
6667 if ( hfont )
6669 (void)::SelectObject(hdc, hfont);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dsubwin.h103 HFONT hfont = GetHfontOf(font); local
104 wxCHECK_RET( hfont, _T("invalid font") );
108 ::SendMessage(m_hwnds[n], WM_SETFONT, (WPARAM)hfont, 0);

Completed in 98 milliseconds