author | unc0rr |
Sat, 25 Apr 2015 23:46:09 +0300 | |
branch | qmlfrontend |
changeset 10900 | 6a805e822074 |
parent 10436 | 084e046f6bd5 |
permissions | -rw-r--r-- |
#ifndef THEMEICONPROVIDER_H #define THEMEICONPROVIDER_H #include <QQuickImageProvider> #include <QImage> #include "flib.h" class ThemeIconProvider : public QQuickImageProvider { public: ThemeIconProvider(); void setFileContentsFunction(getThemeIcon_t *f); QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize); private: getThemeIcon_t *getThemeIcon; }; #endif // THEMEICONPROVIDER_H