qwebview Questions
1
Solved
Memory size of QtWebKit process increases with every new page load. Cleaning memory cache doesn't help. Does anyone know how to solve it?
This simple example crashes after some time of operation:
...
2
I suspect this is so basic that no one bothered to document it.
I want to write an HTML file from my program, and then load that file into a QWebview object.
When I have QtCreator open, I can nav...
3
Solved
Searching through the Internet, I've come across so many ways, mostly nonfunctional, nonspecific, or partially functional, to do various things with QWebView and opening URLs.
After much swearing ...
Jablon asked 1/12, 2013 at 3:14
3
Solved
I want to develop an application with two main widgets one is a text editor and the other one is for graphic viewer.
The basic idea is to let the user hover over any block of code in the text ar...
Cornelia asked 26/9, 2013 at 12:6
1
Solved
Bug in Qt5.2.1:
The only problem was corrected in QPrintPreviewDialog but when the print is printed on paper the failure still exists.
With QPrintPreviewDialog pages work perfect, but on "paper" ...
3
Solved
2
I have a QWebView, which works fine. Then, using code from spynner, I attempt to bind the useragent method to a custom method. This appears to work in spynner (with a QWebPage), but not here. Any h...
1
Solved
I've bundled some HTML and PNGs in my Qt app's resources file (for the help system). Unfortunately I can't find a way for the HTML to display images. I've tried various combinations of the QWebView...
3
Solved
So let's say I'm trying to click a link in the QWebView, here is what I have:
// extending QWebView
void MyWebView::click(const QString &selectorQuery)
{
QWebElement el = this->page()->...
1
Solved
How to display webpage in HTML format in console.
import sys
from PyQt4.QtGui import QApplication
from PyQt4.QtCore import QUrl
from PyQt4.QtWebKit import QWebView
app = QApplication(sys.argv)
vi...
1
Solved
Does anybody know how to get a picture from qwebview? My situation is, there is no scope to use the image url and then a QNetworkRequest. I just need to 'extract' the image from the QWebview.
2
Solved
I am using a QWebView in this way:
QWebView *window = new QWebView();
window->setUrl(QString("my url"));
window->show();
And it works. I can see the html page I want.
The problem is this....
1
Solved
I have a web page loaded in a QWebView. In there, I would like to have JavaScript call a function of my application. That function would then returns some strings that JavaScript would dynamically ...
Least asked 8/3, 2012 at 9:15
1
I am working with Qt's QWebView, and have been finding lots of great uses for adding to the webkit window object.
One thing I would like to do is nested objects... for instance:
in Javascript I c...
Killie asked 28/4, 2010 at 3:20
1
Solved
I need to render some HTML content (created by the application) and I'm wondering whether I should use QTextBrowser or QWebView. Although they seem quite similar, the doc doesn't discuss the differ...
Bartram asked 1/12, 2011 at 5:52
2
Solved
As described in the title my problem is that qwebview doesn't load a html file correctly if it resides in my resources. It loads it perfectly if I load it from outside of the resources as normal lo...
Vicinage asked 26/2, 2011 at 10:17
© 2022 - 2024 — McMap. All rights reserved.