Make panel tabbar icons using BMP use transparency
- modify standard ico files to use transparency ref #14959 Close #15289pull/15293/head
|
@ -565,6 +565,17 @@ void DockingManager::reSizeTo(RECT & rc)
|
|||
|
||||
void DockingManager::createDockableDlg(tTbData data, int iCont, bool isVisible)
|
||||
{
|
||||
// try to make bmp icon transparent
|
||||
if ((data.uMask & DWS_ICONTAB) == DWS_ICONTAB && data.hIconTab != nullptr)
|
||||
{
|
||||
const int iconSize = DPIManagerV2::scale(g_dockingContTabIconSize, data.hClient);
|
||||
HIMAGELIST hImageList = ::ImageList_Create(iconSize, iconSize, ILC_COLOR32 | ILC_MASK, 0, 0);
|
||||
::ImageList_AddIcon(hImageList, data.hIconTab);
|
||||
::DestroyIcon(data.hIconTab);
|
||||
data.hIconTab = ::ImageList_GetIcon(hImageList, 0, ILD_TRANSPARENT);
|
||||
::ImageList_Destroy(hImageList);
|
||||
}
|
||||
|
||||
if ((data.uMask & DWS_USEOWNDARKMODE) != DWS_USEOWNDARKMODE && NppDarkMode::isEnabledForPlugins())
|
||||
{
|
||||
NppDarkMode::autoSubclassAndThemePluginDockWindow(data.hClient);
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 520 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 698 B |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 863 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 598 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 907 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 657 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 675 B |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 598 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 916 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 804 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 596 B |