You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filemanager/src/iconthemeprovider.h

15 lines
311 B
C++

#ifndef ICONTHEMEPROVIDER_H
#define ICONTHEMEPROVIDER_H
#include <QtQuick/QQuickImageProvider>
class IconThemeProvider : public QQuickImageProvider
{
public:
IconThemeProvider();
QPixmap requestPixmap(const QString &id, QSize *realSize, const QSize &requestedSize);
};
#endif // ICONTHEMEPROVIDER_H