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