PrismLauncher/launcher/icons/IconImageProvider.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
387 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;
};