qmlfrontend/preview_acceptor.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 20 Dec 2018 17:51:46 +0100
changeset 14487 d4aa64f51c9f
parent 14376 90bd2c331703
permissions -rw-r--r--
Use player-chosen team identity for most challenges and scenarios

#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