[[qanda:topic_unsolved]] How can I put a web browser into my own OpenGL?
What I am asking is how do I put a web browser into my environment (or game engine) as a texture in OpenGL that I can impose onto a monitor screen from a world model?
View Article[[qanda:topic_unsolved]] QWebEnginePage's print preview...
Here is my code: paintRequested signal is connected to paint function: connect(&previewDialog, &QPrintPreviewDialog::paintRequested, this, &PrintHandler::paint); paint function void...
View Article[[qanda:topic_unsolved]] Memory is not released after QWebEngineView was...
@Dramcryx Did you try valgrind for an alternative view/clues?
View Article[[qanda:topic_unsolved]] Open a link in new dialog when left mouse or double...
@jsulm has already given the right answer. In case anyone arrives at this page and has a similar question but using QML, here is an example of handing the signal in QML: WebEngineView { id: thisWeb...
View Article[[qanda:topic_unsolved]] Uncaught ReferenceError by using QWebEngineView in...
I am using QWebEngineView to display plotly / React widgets in a Qt application. I use QWebChannel to communicate between C++ code and JavaScript code. It was running OK with Qt 5.9.4 version but since...
View Article[[qanda:topic_unsolved]] QWebEnginePage::printToPdf creates empy page
@Tarae I know from experience that what @jsulm says is indeed the case! QWebEnginePage loads asynchronously, if you set off a page print before that's completed you get how the page is now --- which is...
View Article[[qanda:topic_unsolved]] QtWebEngine without audio and video
Most my time surfing on the internet, i spend it reading only text and i'm not that interested in media content. i was thinking that it will be nice if i can build my self a small browser that only...
View Article[[qanda:topic_unsolved]] Injecting Javascript into all webpages.
Hey all! Looking for a way to inject a javascript eyetracking library into all webpages opened in my qt webengine based browser. I've tried adding it as a source file to my project, but that prevents...
View Article[[qanda:topic_unsolved]] How save the problem-QtWebEngineWidgets must be...
@yuandaren said in How save the problem-QtWebEngineWidgets must be imported before a QCoreApplication instance is created: QtWebEngineWidgets must be imported before a QCoreApplication instance is...
View Article[[qanda:topic_unsolved]] Steps for QT custom build version 5.13/14 with...
To build QT with qt-xcb, I will need below packages installed on this. yum install libxcb libxcb-devel xcb-util xcb-util-devel mesa-libGL-devel libxkbcommon-devel Also as per documentation we have to...
View Article[[qanda:topic_unsolved]] Exit full screen in WebEngineView QtQuick
Part of my QtQuick app will go fullscreen when the webpage requests it. I am able to successfully get into full screen when it is requested, however I seem to be unable to get out. I know I am doing...
View Article[[qanda:topic_unsolved]] Browser geolocation doesn't work with...
I am novice to QT, and I have a task to implement simple desktop wrapper on QT for our website. Everything works well except for geolocation. Every time browser has to request permission for...
View Article[[qanda:topic_unsolved]] not renewing (trying to set QWebEngineView on UI)
Hi and welcome to devnet, Before doing any kind of styling modification, I would first go with just FramelessWindow and the addition of your web view to it. Comment out all the rest of the code and...
View Article[[qanda:topic_unsolved]] QWebEnginePage::printToPdf output differs from Chrome
@Tarae You could print each of them to file and then have a look at the PDF, e.g. the font sizes, to see if you can see how they differ and what you might do about it?
View Article[[qanda:topic_unsolved]] example simplebrowser may crash on loading url...
@wjb-x said in example simplebrowser may crash on loading url while using webenginecore lib which was built from qt source 5.14.2 by myself: How could i solve this problem? Did you check the stack...
View Article[[qanda:topic_unsolved]] Zoom In / Out with CTRL + WheelUp / CTRL...
Hi, i want to use ctrl+wheelup or down to Zoom In or Zoom Out in the simplebrowser example of Qt. In BrowserWindow.h I ovverrided the wheelEvent : void wheelEvent(QWheelEvent *event) override; and in...
View Article[[qanda:topic_unsolved]] what is the difference between running js inside...
Hi, today, I am using mermaid.js to render the code ```mermaid graph TD A[方形] --> B(圆角) B --> C{条件a} C --> |a=1| D[结果1] C --> |a=2| E[结果2] F[竖向流程图] ``` (please ignore this brackets, because...
View Article[[qanda:topic_unsolved]] window.URL.createObjectURL in QWebEngineView?
I'm trying to create a BLOB (audio/ogg) from a network request. I want to load the BLOB into a audio tag in HTML, but I found out QWebEngine doesn't support it. Does someone know why?
View Article[[qanda:topic_solved]] QtWebEngine signing issues
@krobinson You, sir, are a steely-eyed missile man. Saved me so much time. For what it's worth, the console output I got when I was experiencing this issue was: # # Fatal process OOM in CodeRange...
View Article[[qanda:topic_unsolved]] How to send and receive data through local WiFi...
@bhanupro Your two computers will be connected to the network over TCP/IP. QNetworkAccessManager Class can be used to send requests and receive replies. Or you can use QTcpSocket Class directly There...
View Article