#ifndef WEBPAGE_H #define WEBPAGE_H #include class WebPage : public QWebEnginePage { Q_OBJECT public: explicit WebPage(QWebEngineProfile *profile, QObject *parent = nullptr); signals: void certificateErrorMessage(const QString &message); protected: bool certificateError(const QWebEngineCertificateError &certificateError); }; #endif // WEBPAGE_H