qmlfrontend/preview_acceptor.h
author alfadur
Mon, 25 Mar 2019 23:12:24 +0300
changeset 14720 b110cbe52e51
parent 14371 90bd2c331703
permissions -rw-r--r--
save more of the atlas

#ifndef PREVIEW_ACCEPTOR_H
#define PREVIEW_ACCEPTOR_H

#include <QObject>

class QQmlEngine;
class PreviewImageProvider;

class PreviewAcceptor : public QObject {
  Q_OBJECT
 public:
  explicit PreviewAcceptor(QQmlEngine *engine, QObject *parent = nullptr);

 public slots:
  void setImage(const QImage &preview);

 private:
  PreviewImageProvider *m_previewProvider;
};

#endif  // PREVIEW_ACCEPTOR_H