File indexing completed on 2025-02-02 04:36:37

0001 #ifndef THUMBNAILER_H
0002 #define THUMBNAILER_H
0003 
0004 #include <QQuickImageProvider>
0005 
0006 class Thumbnailer : public QQuickImageProvider
0007 {
0008 public:
0009     Thumbnailer();
0010     QImage requestImage(const QString & id, QSize * size, const QSize & requestedSize) override;
0011 
0012 };
0013 
0014 #endif // THUMBNAILER_H