Search code examples
c++qtwebbrowserwebkit

What is an QWebKit analog


After i spent couple days to figure out how use QWebKit library in my QT application for my browser, i found that it removed year ago.

And no info what i can use instead, and also no information WHY such good feature was removed, it was easy to create web page just writing couple lines of code.

P.S. i'm already downloaded all kits but it didn"t help:

enter image description here


Solution

  • The QWebKit API was designed for synchronous function calls, which runs on the main thread and on loading heavy web pages can block your GUI.

    The alternative is the QWebEngineView.

    Qt WebEngine uses a multi-process architecture, he's designed for asynchronous function calls. And also based on chromium.

    To Port to web-engine read this