summary refs log tree commit diff
path: root/src/ColorImageProvider.h
blob: 21f36c126cd32a6427fa2d25448364cff0cb9ca1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <QQuickImageProvider>

class ColorImageProvider : public QQuickImageProvider
{
public:
        ColorImageProvider()
          : QQuickImageProvider(QQuickImageProvider::Pixmap)
        {}

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