qmlfrontend/preview_image_provider.h
author S-D-
Thu, 19 Sep 2019 23:39:40 +0300
changeset 15417 5fcdc072d706
parent 14154 8354b390f1a2
permissions -rw-r--r--
Ignore chat messages from ignore list nicks in game too

#ifndef PREVIEWIMAGEPROVIDER_H
#define PREVIEWIMAGEPROVIDER_H

#include <QPixmap>
#include <QQuickImageProvider>
#include <QSize>

class PreviewImageProvider : public QQuickImageProvider {
 public:
  PreviewImageProvider();

  QPixmap requestPixmap(const QString &id, QSize *size,
                        const QSize &requestedSize);

  void setImage(const QImage &preview);

 private:
  QPixmap m_px;
};

#endif  // PREVIEWIMAGEPROVIDER_H