Searched refs:hdc_wnd (Results 1 – 5 of 5) sorted by relevance
/reactos/modules/rosapps/applications/explorer-old/ |
H A D | explorer.cpp | 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() 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() 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() [all …]
|
H A D | globals.h | 106 HBITMAP create_bitmap(COLORREF bk_color, HBRUSH hbrBkgnd, HDC hdc_wnd) const; 107 …int add_to_imagelist(HIMAGELIST himl, HDC hdc_wnd, COLORREF bk_color=GetSysColor(COLOR_WINDOW), H… 180 extern HBITMAP create_bitmap_from_icon(HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd/*, int icon_si… 183 extern int ImageList_AddAlphaIcon(HIMAGELIST himl, HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd);
|
/reactos/modules/rosapps/applications/explorer-old/taskbar/ |
H A D | favorites.cpp | 327 void BookmarkList::fill_tree(HWND hwnd, HTREEITEM parent, HIMAGELIST himagelist, HDC hdc_wnd) const in fill_tree() 350 folder._bookmarks.fill_tree(hwnd, hitem, himagelist, hdc_wnd); in fill_tree() 362 tv.iImage = tv.iSelectedImage = icon.add_to_imagelist(himagelist, hdc_wnd); in fill_tree()
|
H A D | favorites.h | 83 void fill_tree(HWND hwnd, HTREEITEM parent, HIMAGELIST, HDC hdc_wnd) const;
|
/reactos/dll/win32/comctl32/ |
H A D | listview.c | 8639 HDC hdc_wnd, hdc; in LISTVIEW_CreateCheckBoxIL() local 8648 hdc_wnd = GetDC(infoPtr->hwndSelf); in LISTVIEW_CreateCheckBoxIL() 8649 hdc = CreateCompatibleDC(hdc_wnd); in LISTVIEW_CreateCheckBoxIL() 8650 …hbm_im = CreateCompatibleBitmap(hdc_wnd, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMIC… in LISTVIEW_CreateCheckBoxIL() 8652 ReleaseDC(infoPtr->hwndSelf, hdc_wnd); in LISTVIEW_CreateCheckBoxIL()
|