2
0
mirror of https://github.com/Alia5/GlosSI.git synced 2024-11-01 09:20:17 +00:00
GlosSI/GlosSIConfig/ExeImageProvider.h
2023-12-22 16:26:50 +01:00

33 lines
942 B
C++

#pragma once
#include <QQuickImageProvider>
#include <Windows.h>
#include <QRegularExpression>
#include <shellapi.h>
class ExeImageProvider : public QQuickImageProvider {
public:
ExeImageProvider()
: QQuickImageProvider(QQuickImageProvider::Image)
{
}
QImage requestImage(const QString& id, QSize* size, const QSize& requestedSize) override
{
HICON icon = 0;
std::wstring path = QString(id).replace(QRegularExpression(("\\%5C")), "\\").toStdWString();
icon = (HICON)LoadImage(
0,
path.data(),
IMAGE_ICON,
GetSystemMetrics(SM_CXSMICON),
GetSystemMetrics(SM_CYSMICON),
LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
if (!icon) {
ExtractIconEx(path.data(), 0, &icon, nullptr, 1);
if (!icon) {
return {};
}
}
return QImage::fromHICON(icon);
}
};