How do I use QWebView in a computer project and get the specification of attributes and methods for QWebView in the documentation?
-
Which release of Qt 6 are you using ?
-
I am unsure but isn't that module in the list of "extras" to install in the maintenance tool/online installer ?
-
@SGaist Personally when I do a search for "qt6 installer maintenance tool", it does not give me very useful information in my opinion and then, I thought that when the library was installed, there were no more other modules to download. And if it is possible, please give me the procedure to install a module for qt or a link. Thank you!
-
If you installed Qt using the online installer, you can find the maintenance tool executable in the folder where the installation was done.
-
On this link: https://doc.qt.io/qt-6/qwebengineview.html
You'll notice at the top in a box that says
qmake
with a module dependencyQT += webenginewidgets
.With every class, make sure that the module is added in the .pro file, and after run qmake.
In QtCreator that would be at the top under the
Build
option. -
@TheLumbee When I add "QT += webenginewidgets" in
the .pro file and I include in the file of one of my projects "#include <QWebEngineView>" , I am told that the file does not exist. Is there an order to follow for this?
I use windows 10 and here is the result of my compiler output:
![0_1645480356339_da0dfd40-7b43-4cb1-9d04-29227cd3468a-image.png](Uploading 100%) -
@gouneken Please explain "add in the .pro file and do an include." I'm unsure what that means.
What is telling you which file doesn't exist? Be more specific than you think is necessary. Your question can be interpreted many ways.
Also, what operating system are you using? And post a snippet of your code along with compiler output errors. That would also be helpful in resolving your issue.
-
One question, I thought qtwebenginewidgets was an optional module and I recently downloaded the module, so I already downloaded two modules that my qt framework didn't have. Namely, qwebview and qwebengine modules. They are indeed present in my library folder, but my project sees them as non-existent. Since I uploaded them after my project was created and my project contains technical files that were created with it, I was wondering if that could be the reason my project isn't considering them and if that's the case how to update my project to take into account the changes of the library?