I'm a complete Qt newbie (and my C++ is extremely rusty to boot).
I have the following listeners configured (and more) in a Qt4.8.0 app using a QWebView:
connect(webView, SIGNAL(loadFinished(bool)), SLOT(adjustLocation()));
connect(webView, SIGNAL(urlChanged(QUrl)), this, SLOT(adjustLocation(QUrl)));
connect(webView->page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(adjustLocation(QUrl)));
and
void MainWindow::adjustLocation(QUrl url) {
qDebug() << url.toString();
locationLineEdit->setText(url.toString());
}
void MainWindow::adjustLocation() {
QUrl url = webView->url();
adjustLocation(url);
}
But though the loadFinished signal seems to be triggered after a history.pushState, urlChanged doesn't seem to trigger, and anyway I cannot get the updated URL (webView->url() just outputs the original URL from when I loaded the web page).
The below code successfully gets the correct URL, but surely there's a better way than going via JavaScript?!
QWebFrame *frame = webView->page()->mainFrame();
QString href = frame->evaluateJavaScript("window.location.href").toString();
qDebug() << href;