diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-23 00:06:31 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-12-18 10:33:28 -0500 |
commit | 5836786246464a16f1d122d1c9a7c8fcb1f0e272 (patch) | |
tree | de5f0f0fb1b9b8518d3b76b77420d0e90f36be89 /src/yuzu/util/url_request_interceptor.h | |
parent | 51a7681957131e0018af5122b214994dd51f93e3 (diff) |
util: Add URL Request Interceptor for QWebEngine
Diffstat (limited to 'src/yuzu/util/url_request_interceptor.h')
-rw-r--r-- | src/yuzu/util/url_request_interceptor.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/yuzu/util/url_request_interceptor.h b/src/yuzu/util/url_request_interceptor.h new file mode 100644 index 000000000..8a7f7499f --- /dev/null +++ b/src/yuzu/util/url_request_interceptor.h @@ -0,0 +1,30 @@ +// Copyright 2020 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#ifdef YUZU_USE_QT_WEB_ENGINE + +#include <QObject> +#include <QWebEngineUrlRequestInterceptor> + +class UrlRequestInterceptor : public QWebEngineUrlRequestInterceptor { + Q_OBJECT + +public: + explicit UrlRequestInterceptor(QObject* p = nullptr); + ~UrlRequestInterceptor() override; + + void interceptRequest(QWebEngineUrlRequestInfo& info) override; + + QUrl GetRequestedURL() const; + +signals: + void FrameChanged(); + +private: + QUrl requested_url; +}; + +#endif |