nheko/src/ColorImageProvider.h

17 lines
436 B
C
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 00:35:15 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include <QQuickImageProvider>
class ColorImageProvider : public QQuickImageProvider
{
public:
2021-09-18 00:22:33 +02:00
ColorImageProvider()
: QQuickImageProvider(QQuickImageProvider::Pixmap)
2022-05-10 03:53:35 +02:00
{}
2021-09-18 00:22:33 +02:00
QPixmap requestPixmap(const QString &id, QSize *size, const QSize &requestedSize) override;
};