mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-01 17:27:39 +02:00
26 lines
764 B
C++
26 lines
764 B
C++
//
|
|
// DataWebPage.h
|
|
// interface/src/ui
|
|
//
|
|
// Created by Stephen Birarda on 2014-09-22.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_DataWebPage_h
|
|
#define hifi_DataWebPage_h
|
|
|
|
#include <qwebpage.h>
|
|
|
|
class DataWebPage : public QWebPage {
|
|
public:
|
|
DataWebPage(QObject* parent = 0);
|
|
protected:
|
|
void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID);
|
|
bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, QWebPage::NavigationType type);
|
|
virtual QString userAgentForUrl(const QUrl& url) const;
|
|
};
|
|
|
|
#endif // hifi_DataWebPage_h
|