QTfrontend/ui/widget/databrowser.h
author koda
Sat, 26 Nov 2011 17:45:34 +0100
changeset 6440 1fa9dc94c93f
parent 6060 fdfc01419815
child 6616 f77bb02b669f
permissions -rw-r--r--
disable opacity effect for non-linux as it is working only there, fix a glitch that would print the page for a frame and then animate it from another position, change the animation curve to something a little more speedy

#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