qmlfrontend/preview_image_provider.h
author nemo
Thu, 24 Oct 2019 09:41:10 -0400
changeset 15481 58ce582ae87d
parent 14154 8354b390f1a2
permissions -rw-r--r--
remove erroneous else conditions to make what is going on clearer, add a comment

#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