qmlFrontend/previewimageprovider.h
author unc0rr
Mon, 11 May 2015 00:27:16 +0300
branchqmlfrontend
changeset 10927 336f5ad638be
parent 10424 4be6cd55f1cf
permissions -rw-r--r--
Fix jumpts table, build array of handlers (wip)

#ifndef PREVIEWIMAGEPROVIDER_H
#define PREVIEWIMAGEPROVIDER_H

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

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

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

    void setPixmap(const QByteArray & px);

private:
    QPixmap m_px;
};

#endif // PREVIEWIMAGEPROVIDER_H