zty199 4b3cc4276d Improve Features
Support run in Fullscreen mode;
Suppport "save as" when downloading files.
2020-11-29 03:02:11 +08:00

21 lines
357 B
C++

#ifndef WEBENGINEPAGE_H
#define WEBENGINEPAGE_H
#include <QWebEnginePage>
#include <QObject>
class WebEnginePage : public QWebEnginePage
{
public:
WebEnginePage(QObject *parent = nullptr);
protected:
QWebEnginePage *createWindow(WebWindowType type) override;
private slots:
void on_urlChanged(const QUrl url);
};
#endif // WEBENGINEPAGE_H