Skip to content
  • QT 5.6 msvc2013 *WITH* webkitwidgets

    Solved General and Desktop msvc msvc2013 webkitwidgets
    2
    0 Votes
    2 Posts
    2k Views
    SGaistS
    Hi, QtWebKit has been deprecated in 5.5 and won't be released as prebuilt module starting with 5.6. You still can build it yourself from sources though. You can find Qt 5.5.1 here
  • 0 Votes
    2 Posts
    2k Views
    M
    I fixed it like so: Comment out the default w.show() in my main.cpp. I created a Q_INVOKABLE class method on main window called showAppWindow() that merely does a this->show(). I did the steps to inject my C++ object (called cpp) into my Javascript via the C++ <==> Webkit bridge. In my index.html file, at the bottom before the ending BODY tag, I added this: <script type="text/javascript"> try { if (cpp) { setTimeout('cpp.showAppWindow();',100); } } catch(e){} </script>