qmlfrontend/preview_acceptor.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 28 Oct 2019 20:40:46 +0100
changeset 15513 3dc01bbcd0d8
parent 14392 90bd2c331703
child 16116 8da5a118120b
permissions -rw-r--r--
Refactor Rope Knock Chellenge to use RopeKnocking library 100% compatible with old version. Players won't notice any difference.

#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