qmlfrontend/preview_acceptor.h
author alfadur
Sat, 13 Apr 2019 00:27:48 +0300
changeset 14801 da0cfeee9d96
parent 14371 90bd2c331703
permissions -rw-r--r--
don't show incompatible rooms

#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