mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
b5349478cf
The next commit will add `.git-blame-ignore-revs` https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
21 lines
377 B
C++
21 lines
377 B
C++
#ifndef IFRAMESCHEMEHANDLER_H
|
|
#define IFRAMESCHEMEHANDLER_H
|
|
|
|
#include "article_netmgr.hh"
|
|
|
|
class IframeSchemeHandler: public QWebEngineUrlSchemeHandler
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
IframeSchemeHandler( QObject * parent = nullptr );
|
|
void requestStarted( QWebEngineUrlRequestJob * requestJob );
|
|
|
|
protected:
|
|
|
|
private:
|
|
QNetworkAccessManager mgr;
|
|
};
|
|
|
|
#endif // IFRAMESCHEMEHANDLER_H
|