Lines Matching refs:hdc_wnd
285 HBITMAP Icon::create_bitmap(COLORREF bk_color, HBRUSH hbrBkgnd, HDC hdc_wnd) const in create_bitmap()
293 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy); in create_bitmap()
294 HDC hdc = CreateCompatibleDC(hdc_wnd); in create_bitmap()
302 return create_bitmap_from_icon(_hicon, hbrBkgnd, hdc_wnd); in create_bitmap()
306 int Icon::add_to_imagelist(HIMAGELIST himl, HDC hdc_wnd, COLORREF bk_color, HBRUSH bk_brush) const in add_to_imagelist() argument
316 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy); in add_to_imagelist()
317 HDC hdc = CreateCompatibleDC(hdc_wnd); in add_to_imagelist()
327 ret = ImageList_AddAlphaIcon(himl, _hicon, bk_brush, hdc_wnd); in add_to_imagelist()
332 HBITMAP create_bitmap_from_icon(HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd/*, int icon_size*/) in create_bitmap_from_icon() argument
336 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy); in create_bitmap_from_icon()
349 HBITMAP create_small_bitmap_from_icon(HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd) in create_small_bitmap_from_icon() argument
353 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy); in create_small_bitmap_from_icon()
366 int ImageList_AddAlphaIcon(HIMAGELIST himl, HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd) in ImageList_AddAlphaIcon() argument
368 HBITMAP hbmp = create_bitmap_from_icon(hIcon, hbrush_bkgnd, hdc_wnd); in ImageList_AddAlphaIcon()