Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QWebPage::loadFinished() でスロットを接続する以外に、そのステータスをポーリングする方法はありますか? その割合を直接返す関数は見つかりませんでした。
次のように、QWebPageのloadProgressシグナルに接続できます。
connect(webView, SIGNAL(loadProgress(int)), this, SLOT(loadProgress(int)));
これにより、進行状況が増加するにつれてロードされたパーセンテージが報告されます。