qmlfrontend/preview_acceptor.h
author S-D-
Thu, 19 Sep 2019 23:39:40 +0300
changeset 15438 5fcdc072d706
parent 14392 90bd2c331703
permissions -rw-r--r--
Ignore chat messages from ignore list nicks in game too

#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