QGCWebPage.h 417 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef QGCWEBPAGE_H
#define QGCWEBPAGE_H

#include <QWebPage>

class QGCWebPage : public QWebPage
{
    Q_OBJECT
public:
    explicit QGCWebPage(QObject *parent = 0);

signals:

public slots:

protected:
    void javaScriptConsoleMessage ( const QString & message, int lineNumber, const QString & sourceID );
Lorenz Meier's avatar
Lorenz Meier committed
18 19 20
#ifdef Q_OS_MAC
    QString userAgentForUrl ( const QUrl & url ) const;
#endif
21 22 23 24

};

#endif // QGCWEBPAGE_H