3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 15:45:53 +00:00
Brooklyn/plasma/workspace/kcms/fonts/previewimageprovider.h

21 lines
423 B
C
Raw Normal View History

2022-04-02 18:24:21 +05:00
/*
SPDX-FileCopyrightText: 2018 Julian Wolff <wolff@julianwolff.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#pragma once
#include <QFont>
#include <QQuickImageProvider>
class PreviewImageProvider : public QQuickImageProvider
{
public:
PreviewImageProvider(const QFont &font);
QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize) override;
private:
QFont m_font;
};