forked from quickshell/quickshell
11 lines
311 B
C++
11 lines
311 B
C++
#pragma once
|
|
|
|
#include <qpixmap.h>
|
|
#include <qquickimageprovider.h>
|
|
|
|
class IconImageProvider: public QQuickImageProvider {
|
|
public:
|
|
explicit IconImageProvider(): QQuickImageProvider(QQuickImageProvider::Pixmap) {}
|
|
|
|
QPixmap requestPixmap(const QString& id, QSize* size, const QSize& requestedSize) override;
|
|
};
|