File indexing completed on 2025-04-27 04:08:14
0001 /* This file is part of the KDE project 0002 * SPDX-FileCopyrightText: 2012 Dan Leinir Turthra Jensen <admin@leinir.dk> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef COLORIMAGEPROVIDER_H 0008 #define COLORIMAGEPROVIDER_H 0009 0010 #include <QQuickImageProvider> 0011 0012 class ColorImageProvider : public QQuickImageProvider 0013 { 0014 public: 0015 explicit ColorImageProvider(); 0016 QPixmap requestPixmap(const QString &id, 0017 QSize *size, 0018 const QSize &requestedSize) override; 0019 }; 0020 0021 #endif // COLORIMAGEPROVIDER_H