qmlfrontend/preview_image_provider.h
author felixonmars <felixonmars@archlinux.org>
Thu, 04 Jun 2020 12:33:24 +0200
branch1.0.0
changeset 15779 dbed9069ed50
parent 14154 8354b390f1a2
permissions -rw-r--r--
Fix build with Qt 5.15+

#ifndef PREVIEWIMAGEPROVIDER_H
#define PREVIEWIMAGEPROVIDER_H

#include <QPixmap>
#include <QQuickImageProvider>
#include <QSize>

class PreviewImageProvider : public QQuickImageProvider {
 public:
  PreviewImageProvider();

  QPixmap requestPixmap(const QString &id, QSize *size,
                        const QSize &requestedSize);

  void setImage(const QImage &preview);

 private:
  QPixmap m_px;
};

#endif  // PREVIEWIMAGEPROVIDER_H