Questions tagged [qtwebengine]

QtWebEngine integrates the chromium rendering engine into Qt.

QtWebEngine integrates the Chromium rendering engine into Qt. Since QtWebKit was marked as deprecated in Qt 5.5, QtWebEngine is now the main web platform for Qt applications development.

QtWebEngine is only available for Qt 5.4 and newer. The list of supported platforms is yet restricted.

Qt official documentation is here

Project homepage

485 questions
0
votes
1 answer

Qt/QML: Putting WebEngineView in a ListView and calling loadHtml()

If I have a WebEngineView in a ListView delegate, how can I call loadHtml when the delegate is loaded? For example: ListView { model: myModel delegate: Component { Item: { WebEngineView { …
Addy
  • 2,414
  • 1
  • 23
  • 43
0
votes
1 answer

Opening an URL in external browser when newViewRequested signal emited

I Use WebEngineView QML Type to show a web page that have some link that need to open in a new tab. Links are somethings like Go to google in new tab I want to open the URL of newViewRequested signal…
mostafa88
  • 532
  • 1
  • 8
  • 20
0
votes
1 answer

Migrating from QWebKitWidgets to QWebEngineWidgets with project file supporting both

I am currently adding support of QWebEngineWidgets to my older applications but I don't want to loose QWebKitWidgets. because in some embeded platforms the qt version is still 5.3. I wonder if the following solution I made by myself is correct and…
AMCoded
  • 1,374
  • 2
  • 24
  • 39
0
votes
0 answers

trying to create an adaptor file for qt application via xml

below is the xml code for creating adaptor Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
d4deepak
  • 35
  • 8
0
votes
2 answers

Qt Display QImage or pixel map in QtWebEngine view (from C++ to HTML)

In Qt, I want to display image (for example QImage) or any kind of pixel map from C++ to WebEngine's html. How to do this? For example, in my html (displayed by WebEngineView) there is: And now I want to be able to…
zupazt3
  • 966
  • 9
  • 30
0
votes
1 answer

How to use Qt webEngine instead of Qt webkit

I added to .pro file QT += webenginewidgets, but qmake give me error: :-1: error: Unknown module(s) in QT: webenginewidgets I would like to port project from 5.4.0 to 5.8.0. EDIT: I have read that I can't use MinGW for the web engine with Qt, and…
Alice
  • 43
  • 8
0
votes
0 answers

QWebEngineView constructor silently exits

For a Windows computer without the necessary OpenGL capabilities, trying to create a QWebEngineView object silently causes the process to exit(). There is no error message, no exception, but just an exit. My question is how to catch this condition…
Dov Grobgeld
  • 4,783
  • 1
  • 25
  • 36
0
votes
0 answers

How to build qt webkit ot webengine from source?

Please can u give me a step by step instrunctions on how to build qt webkit or webengine from source, I've been searching for hours , and thanks in advance NOTE :I already installed qt but without the webkit
MkAnis
  • 1
  • 2
0
votes
0 answers

QWebview, webview->load(QUrl) makes the application crash

I am working in C++/Qt Embedded project where fedora operating is used. I use QWebview to display html pages. but when i load the page using webview->load(Qurl), It crashes. I have also tried webview->setHtml(). The same works fine in windows. My…
0
votes
1 answer

How to enable qtwebkit webcore logs ?

Im relatively a noob to QT . I wanted to understand how a browser talks to qtwebkit and how do i enable the logs for all the in the html level of webcore inside qt. Also Where does QTwebkit generally write the log files. im using QT 5 anyhelp would…
0
votes
2 answers

Mendeley can't find "Qt WebEngine Plugins" (desktop app for linux)

I recently upgraded my linux (debian). Since then I Mendeley is not working: it starts and after a couple of seconds starts fetching and crashes immediately. This is the error message that it is giving: Qt WebEngine Plugins directory not found.…
aLbAc
  • 337
  • 3
  • 18
0
votes
1 answer

How to prevent creating strange folders while using QWebEngineView?

I need to show some dynamic web content in my application (let it be application help materials). I used Qt5.4 with QWebView there. But after switching to Qt5.6 I noticed that QWebKit is deprecated and not supported any more. Thus I decided to…
Vasyl
  • 404
  • 1
  • 6
  • 19
0
votes
1 answer

Yocto SDK, QtWebEngine: Unknown module(s) in QT: webengine

I'm doing my first steps with Qt and QtWebEngine on an embedded board (i.MX6), using Yocto. Using provided example recipes, like the quicknanobrowser, works nicely on the target. So I can't confirm this answer which claims that WebEngine is not…
Georg P.
  • 2,785
  • 2
  • 27
  • 53
0
votes
1 answer

cannot build qtwebengine for raspberry pi 2 from qt5.6 source

I am trying to compile qtwebengine for raspberry pi using [http://wiki.qt.io/RaspberryPi2EGLFS ](link url) AND compilation terminates with following errors : ... ... .obj/qquickwebengineview.o:qquickwebengineview.cpp:function…
GSR
  • 1
  • 2
0
votes
1 answer

Embed a QWebEngineView process inside QTabWidget

I'm trying to integrate a QWebEngineView widget that runs as a separate process(QProcess) inside a QTabWidget page. So far the QWebEngineView process is being started properly but its showing the webpage in a separate window instead of showing it…
Maxx
  • 592
  • 18
  • 42