Fluid
Loading...
Searching...
No Matches
iconthemeimageprovider.h
Go to the documentation of this file.
1/*
2 * This file is part of Fluid.
3 *
4 * Copyright (C) 2018 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
5 *
6 * $BEGIN_LICENSE:MPL2$
7 *
8 * This Source Code Form is subject to the terms of the Mozilla Public
9 * License, v. 2.0. If a copy of the MPL was not distributed with this
10 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 *
12 * $END_LICENSE$
13 */
14
15#pragma once
16
17#include <QQuickImageProvider>
18
19class IconThemeImageProvider : public QQuickImageProvider
20{
21public:
23
24 QPixmap requestPixmap(const QString &id, QSize *realSize, const QSize &requestedSize) override;
25};
Definition iconthemeimageprovider.h:20
QPixmap requestPixmap(const QString &id, QSize *realSize, const QSize &requestedSize) override
Definition iconthemeimageprovider.cpp:24
IconThemeImageProvider()
Definition iconthemeimageprovider.cpp:19