// Application headers.
#include "UrlRequestInterceptor.h"
+// KDE Framework headers.
+#include <KLocalizedString>
+
+// Qt framework headers.
+#include <QMessageBox>
+
// Construct the class.
UrlRequestInterceptor::UrlRequestInterceptor(QObject *parentObjectPointer) : QWebEngineUrlRequestInterceptor(parentObjectPointer) {}
// Reapply the domain settings if the host is changing.
if (requestingHost != requestedHost)
- {
emit applyDomainSettings(requestedHost);
- }
}
break;
// Block HTTP ping requests.
urlRequestInfo.block(true);
+ // Instantiate an HTTP ping blocked message box.
+ QMessageBox httpPingBlockedMessageBox;
+
+ // Set the icon.
+ httpPingBlockedMessageBox.setIcon(QMessageBox::Information);
+
+ // Set the window title.
+ httpPingBlockedMessageBox.setWindowTitle(i18nc("HTTP Ping blocked dialog title", "HTTP Ping Blocked"));
+
+ // Set the text.
+ httpPingBlockedMessageBox.setText(i18nc("HTTP Ping blocked dialog text", "This request has been blocked because it sends a naughty HTTP ping to %1.",
+ urlRequestInfo.requestUrl().toString()));
+
+ // Set the standard button.
+ httpPingBlockedMessageBox.setStandardButtons(QMessageBox::Ok);
+
+ // Display the message box.
+ httpPingBlockedMessageBox.exec();
+
break;
}