qmlfrontend/preview_image_provider.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 17 Jun 2019 20:20:01 +0200
changeset 15175 3cc1a79de3fd
parent 14159 8354b390f1a2
permissions -rw-r--r--
Fix air mine spawning inside land if land is almost completely full Bug conditions: * cAirMines >= 1 * Play with a drawn map filled with land

#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