A utility type for the QWebEnginePage::navigationRequested signal. More...
Header: | #include <QWebEngineNavigationRequest> |
CMake: | find_package(Qt6 COMPONENTS WebEngineCore REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::WebEngineCore) |
qmake: | QT += webenginecore |
Since: | Qt 6.2 |
Instantiated By: | WebEngineNavigationRequest |
Inherits: | QObject |
void | accept() |
bool | isMainFrame() const |
QWebEngineNavigationRequest::NavigationType | navigationType() const |
void | reject() |
QUrl | url() const |
void | actionChanged() |
Contains information about a navigation request.
To accept or reject a request, call accept() or reject().
The default if not handled is to accept the navigation.
See also QWebEnginePage::navigationRequested.
[read-only]
isMainFrame : const bool
This property holds whether the navigation issue is requested for a top level page.
Access functions:
bool | isMainFrame() const |
[read-only]
navigationType : const NavigationType
This property holds the method used to navigate to a web page.
Access functions:
QWebEngineNavigationRequest::NavigationType | navigationType() const |
[read-only]
url : const QUrl
This property holds the URL of the web page to go to.
Access functions:
QUrl | url() const |
[invokable]
void QWebEngineNavigationRequest::accept()
Accepts a navigation request.
Note: This function can be invoked via the meta-object system and from QML. See Q_INVOKABLE.
[invokable]
void QWebEngineNavigationRequest::reject()
Rejects a navigation request.
Note: This function can be invoked via the meta-object system and from QML. See Q_INVOKABLE.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qwebenginenavigationrequest.html