mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
17 lines
405 B
C++
17 lines
405 B
C++
#ifndef WEBURLREQUESTINTERCEPTOR_H
|
|
#define WEBURLREQUESTINTERCEPTOR_H
|
|
|
|
#include <QWebEngineUrlRequestInterceptor>
|
|
|
|
class WebUrlRequestInterceptor : public QWebEngineUrlRequestInterceptor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
WebUrlRequestInterceptor(QObject *p);
|
|
void interceptRequest(QWebEngineUrlRequestInfo &info);
|
|
signals:
|
|
void linkClicked( const QUrl & url );
|
|
};
|
|
|
|
#endif // WEBURLREQUESTINTERCEPTOR_H
|