QTfrontend/databrowser.h
author koda
Sun, 16 Oct 2011 19:02:48 +0200
branch0.9.16
changeset 6003 74431bf4c632
parent 5780 528dd4a14861
permissions -rw-r--r--
fix the config.inc conflict by making the ios one in another folder

#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;
    
    // hash and set of QString instead of QUrl to support Qt versions 
    // older than 4.7 (those have no support for qHash(const QUrl &))
    QHash<QString, QByteArray> resources;
    QSet<QString> requestedResources;

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

private slots:
    void resourceDownloaded();
};

#endif // DATABROWSER_H