Quote Originally Posted by ejoshva View Post
have a QQuickWidget(ReaderMain.cpp) which has a qml (ReaderView.qml) . Also I have a QWebEngineView (WebEngineView.cpp). This WebEngineView I have extended to the qml through QMLREGISTERTYPE in ReaderMain.cpp and it's defined in another QML(BrowserWindow.qml) which is in turn included in ReaderView.qml.
Probably a typo, but QWebEngineView is the widget base view for QtWebEngine.
I.e. it is derived from QWidget, not QQuickItem.

All elements that need to be part of the visualization in a QtQuick2 scene need to be derived (directly or indirectly) from QQuickItem.

Cheers,
_