qmlFrontend/themeiconprovider.h
author unc0rr
Mon, 20 Oct 2014 22:55:12 +0400
branchqmlfrontend
changeset 10442 c58db813240b
parent 10436 084e046f6bd5
permissions -rw-r--r--
Load and show local teams list

#ifndef THEMEICONPROVIDER_H
#define THEMEICONPROVIDER_H

#include <QQuickImageProvider>
#include <QImage>

#include "flib.h"

class ThemeIconProvider : public QQuickImageProvider
{
public:
    ThemeIconProvider();

    void setFileContentsFunction(getThemeIcon_t *f);

    QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize);
private:
    getThemeIcon_t *getThemeIcon;
};

#endif // THEMEICONPROVIDER_H