QGCWebPage.h 338 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#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 );

};

#endif // QGCWEBPAGE_H