qmlfrontend/preview_image_provider.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 04 May 2019 19:07:58 +0200
changeset 14876 543729d313f5
parent 14154 8354b390f1a2
permissions -rw-r--r--
ACF5, ACF9: Clear mines around cyborg when it appears This prevents script problems in case the cyborg dies in a cut scene because of the mines

#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