qmlfrontend/preview_image_provider.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 10 Dec 2018 10:01:24 +0100
changeset 14407 7dbc3e5f8129
parent 14154 8354b390f1a2
permissions -rw-r--r--
Also show SD warning 3 and 7 rounds before SD

#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