www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - QWebView requesting QtE5WebEng32.so on windows

reply Dr.No <jckj33 gmail.com> writes:
So I went to try out QWebView on Windows from this wrapper:

https://github.com/MGWL/QtE5

all the examples went fine until I tried QWebView:

https://github.com/MGWL/QtE5/blob/master/examples/webview.d

I compile using this command line:

 dmd -m32 webview.d qte5.d -oflol
but when I run I get this error:
 Error load: QtE5WebEng32.so
I thought this was just a typo and what he really meant was QtE5WebEng32.dll but even so, I can't find such dll even using
 windeployqt --webkit2 --release
Is the library's author around so that we can fix this?
Jul 21 2018
next sibling parent Seb <seb wilzba.ch> writes:
On Saturday, 21 July 2018 at 19:11:08 UTC, Dr.No wrote:
 So I went to try out QWebView on Windows from this wrapper:

 https://github.com/MGWL/QtE5

 all the examples went fine until I tried QWebView:

 https://github.com/MGWL/QtE5/blob/master/examples/webview.d

 I compile using this command line:

 dmd -m32 webview.d qte5.d -oflol
but when I run I get this error:
 Error load: QtE5WebEng32.so
I thought this was just a typo and what he really meant was QtE5WebEng32.dll but even so, I can't find such dll even using
 windeployqt --webkit2 --release
Is the library's author around so that we can fix this?
Try opening an issue at GitHub at the respective repository. Not everyone checks the D.learn group every day.
Jul 22 2018
prev sibling parent MGW <mgw yandex.ru> writes:
On Saturday, 21 July 2018 at 19:11:08 UTC, Dr.No wrote:
 So I went to try out QWebView on Windows from this wrapper:

 https://github.com/MGWL/QtE5

 all the examples went fine until I tried QWebView:
Prior to version Qt-5.5 WebKit was used, and for later versions of chromium-based WebEngine. You probably have a WebKit-based version and need to use: Loader(dll.Qt5widgets + dll.QtE5Web, true)). LoadQt (...) for Windows 32/64 WebEngine contains a typo ... Must be DLL
Jul 23 2018