QWebview not showing on Widget box

2.9k Views Asked by At

I am using Qt 5.6, and the problem is that QWebView is not appearing on the widget box. It looks like the widget is not installed, but I haven't found any way to install it.

QWebView issue

2

There are 2 best solutions below

0
bhupinder On

In Qt 5.6 You need to use QWebEngineView then you can load your web page in qwidget.

0
demonplus On

Build-in support of QWebView/QWebKit was removed from Qt 5.6, see details here. You still can use them if you will build Qt from sources and include QWebKit.

Or you can port you application to use Qt Web Engine, see here.