2018-03-02 08:56:36 +00:00
|
|
|
#ifndef IMAGEPROVIDER_H
|
|
|
|
#define IMAGEPROVIDER_H
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
#include <QObject>
|
2018-07-09 02:45:26 +00:00
|
|
|
#include <QtCore/QReadWriteLock>
|
|
|
|
#include <QtQuick/QQuickImageProvider>
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
#include "connection.h"
|
2018-07-07 11:06:13 +00:00
|
|
|
#include "imageproviderconnection.h"
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
class ImageProvider : public QQuickImageProvider {
|
|
|
|
public:
|
|
|
|
explicit ImageProvider(QObject* parent = nullptr);
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
QImage requestImage(const QString& id, QSize* pSize,
|
|
|
|
const QSize& requestedSize) override;
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
void initializeEngine(QQmlEngine* engine, const char* uri);
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
ImageProviderConnection* getConnection() { return m_connection; }
|
2018-07-07 09:38:20 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
private:
|
|
|
|
QReadWriteLock m_lock;
|
|
|
|
ImageProviderConnection* m_connection;
|
2018-03-02 08:56:36 +00:00
|
|
|
};
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
#endif // IMAGEPROVIDER_H
|