PrismLauncher/launcher/icons/IconImageProvider.h

17 lines
381 B
C
Raw Normal View History

#pragma once
#include "IconList.h"
#include <QQuickImageProvider>
class IconImageProvider : public QQuickImageProvider
{
public:
IconImageProvider(std::shared_ptr<IconList> iconList, int iconSize = 48);
QPixmap requestPixmap(const QString &id, QSize *size, const QSize &requestedSize) override;
private:
std::shared_ptr<IconList> m_iconList;
int m_iconSize;
};