QTfrontend/databrowser.h
author nemo
Sun, 04 Sep 2011 10:47:44 -0400
changeset 5760 8e9bd318171a
parent 5755 a079b4dea081
child 5780 528dd4a14861
permissions -rw-r--r--
Add a bunch of new hats from the hats thread. There are still 20 or so that need pixel fixes that are not in this list.

#ifndef DATABROWSER_H
#define DATABROWSER_H

#include <QTextBrowser>
#include <QSet>

class QNetworkAccessManager;

class DataBrowser : public QTextBrowser
{
    Q_OBJECT
public:
    explicit DataBrowser(QWidget *parent = 0);

signals:

public slots:

private:
    QNetworkAccessManager *manager;
    QHash<QUrl, QByteArray> resources;
    QSet<QUrl> requestedResources;

    QVariant loadResource(int type, const QUrl & name);

private slots:
    void resourceDownloaded();
};

#endif // DATABROWSER_H