mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
25 lines
488 B
C++
25 lines
488 B
C++
#ifndef ARTICLEWEBPAGE_H
|
|
#define ARTICLEWEBPAGE_H
|
|
|
|
#include <QWebEnginePage>
|
|
|
|
struct LastReqInfo{
|
|
QString group;
|
|
QString mutedDicts;
|
|
};
|
|
|
|
class ArticleWebPage : public QWebEnginePage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ArticleWebPage( QObject * parent = nullptr );
|
|
signals:
|
|
void linkClicked( const QUrl & url );
|
|
protected:
|
|
virtual bool acceptNavigationRequest( const QUrl & url, NavigationType type, bool isMainFrame );
|
|
private:
|
|
LastReqInfo lastReq;
|
|
};
|
|
|
|
#endif // ARTICLEWEBPAGE_H
|