The QWebEngineHistoryItem class represents one item in the history of a web engine page. More...
Header: | #include <QWebEngineHistoryItem> |
CMake: | find_package(Qt6 COMPONENTS WebEngineCore REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::WebEngineCore) |
qmake: | QT += webenginecore |
Since: | Qt 5.4 |
QWebEngineHistoryItem(const QWebEngineHistoryItem &other) | |
QWebEngineHistoryItem & | operator=(const QWebEngineHistoryItem &other) |
~QWebEngineHistoryItem() | |
QUrl | iconUrl() const |
bool | isValid() const |
QDateTime | lastVisited() const |
QUrl | originalUrl() const |
void | swap(QWebEngineHistoryItem &other) |
QString | title() const |
QUrl | url() const |
Each web engine history item represents an entry in the history stack of a web page, containing information about the page, its location, and the time when it was last visited.
See also QWebEngineHistory and QWebEnginePage::history().
Constructs a history item from other. The new item and other will share their data, and modifying either this item or other will modify both instances.
Assigns the other history item to this. This item and other will share their data, and modifying either this item or other will modify both instances.
Destroys the history item.
Returns the URL of the icon associated with the history item.
See also url(), originalUrl(), and title().
Returns whether this is a valid history item.
Returns the date and time when the page associated with the item was last visited.
Returns the original URL associated with the history item.
See also url().
Swaps the history item with the other item.
Returns the title of the page associated with the history item.
See also url() and lastVisited().
Returns the URL associated with the history item.
See also originalUrl(), title(), and lastVisited().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qwebenginehistoryitem.html