The QtWebKit module, part of the Qt framework, provides a web browser engine as well as classes to render and interact with web content.

learn more… | top users | synonyms

1
vote
0answers
41 views

Multiple process (or equivalent)

In the Google Chrome each tab (or window) is a different process (not only the tabs, but also plugins, extensions, etc.). How can I make something like multi-process in Qt+WebKit? Each time I open a ...
0
votes
0answers
37 views

Qt: QWebView with two instances of QApplication

We are developing our own widget that inherits from QWebView; we are using TDD (Test Driven Development) to do this. For every test we run, we create a QApplication, run the test code and delete the ...
0
votes
0answers
22 views

How to override chooseFile method of QWebPage

I am trying to override the chooseFile method of QWebPage in Python QTWebkit, but with no success. My Browser class looks like this: class Browser(QApplication): def __init__(self): ...
0
votes
0answers
45 views

QWebView & websockets & self-signed certificates

All. I have nginx webserver with proxying websockets. I generate CA certificates, and generate clients certificates, signed by CA certificates. In my application I subclass QNetworkAccessManager as: ...
0
votes
1answer
31 views

How to inject Javascript in a QWebFrame?

QObject::connect(webview->page()->mainFrame(), SIGNAL(initialLayoutCompleted()), webview->page()->mainFrame(), SLOT(evaluateJavaScript("alert(); null"))); My code can be compiled but ...
0
votes
3answers
144 views

Qt - loading htm file from resources

I've problem with open local html file in QWebView widget. So, I do it like this: QWebView *myWebView = new QWebView; myWebView->load(QUrl("qrc:/index.htm")); Sure, I have added index.htm in ...
1
vote
0answers
78 views

Add qtwebkit to qtcreator on a mac

I have installed qt creator on my mac. I want to create a mobile html5 project using the qtwebkit. I dont know how to add the qtwebkit to qt creator. I have tried to google it but i can't find clear ...
0
votes
1answer
37 views

How can I print a specific part of a QWebPage in Qt?

How can I print a specific part of QWebPage in Qt? QPrinter *printer = new QPrinter(); ui->webView->print(printer);
0
votes
0answers
94 views

Qt Application crashes

I am facing a qt application crash in Windows XP. This qt application plays flash videos from YouTube using QWebkit. I am getting the below mentioned error message in the assert dialog. ASSERT: ...
0
votes
1answer
132 views

How to ignore SSL errors in Qt5 QML QWebKit 3.0?

I've got a problem showing www.facebook.com in Qt5 QML QWebKit 3.0. The problem is with SSL certificate. There is a solution for Qt 4.*, but I need to implement this in the Qt 5.0.1 where all the API ...
1
vote
2answers
264 views

Qt/PyQt: How do I act on QWebView/QWebPage's “Open in New Window” action?

If I have an open QWebView, I like its default context menu with "Open in New Window" as an option for links. However, I can't seem to find a way to act when the user requests a link be opened in a ...
1
vote
2answers
94 views

PyQt QWebkit Javascript Function.bind does not exist (ECMAScript 5 missing functions)

Javascript in a web application runs the following loop: for (var name in this) { if(typeof(this[name]) == "function") { if((/^on_|^do_/).test(name)) { ...
0
votes
0answers
27 views

sproutcore does not work in qt qwebkit

did anybody meet the same problem with me? if you try to use browser written by qt webview to load a websit developed by sproutcore1, you can not click any button(look like disable gray). Really ...
2
votes
1answer
137 views

Import customers from QuickBooks (PHP WebKit)

For query I use QB WebKit, so my queries look like as: $customer = new QuickBooks_Object_Customer(); $customer->set(...); return QBXML_START . $customer->asQBXML('CustomerQueryRq') . QBXML_END; ...
0
votes
1answer
98 views

QtWebView — C++ — How to get javascript string returned from linkClicked event

I have been unable to find a definitive answer to my problem. I currently have a QWebView control load an html file that is on my hard-drive, that implements a vector map with javascript actions. ...
0
votes
0answers
68 views

CSS fail to work in QWebView

Suppose I have a link on page displayed on QWebView which points to another page. When I click it, the page loads but the css doesn't. I have pointed the css to resource file. What might be the ...
1
vote
1answer
106 views

Permanent cookies with QWebKit — where to get the QNetworkAccessManager?

I need to store cookies persistently in an application that uses QWebKit. I understand that I have to create a subclass of QNetworkCookieJar and attach it to a QNetworkAccessManager. But how do I ...
0
votes
0answers
39 views

Re-Parented flash window in secondary monitor is not visible

I am using QWebKit to launch a youtube video. If I click on full screen button it opens a new window called as "AdobeFlashFullScreen", window(which captures the entire monitor screen) , which I wanted ...
1
vote
1answer
118 views

Problems with file download

I have this QT script using webkit. I can download files no problem but I can't get the progress bar moving in the file dialog. I think the network reply has already been sent before I call the ...
2
votes
1answer
116 views

PyQt4 does not redirect me to the next page

The code below works fine except one thing, it does not follow the sign-up link. However if I go to my actual browser and in console type: document.getElementById("link-signup").click() It will ...
0
votes
0answers
82 views

LoadFinished false even for local html file load

We had developed an ".app" installer for MAC OSX using C++ / QT. We were facing issues with loadFinished signal being called with false intermittently even while loading html file which is from local ...
0
votes
2answers
116 views

Logout function in QWebView

I'm developing application in Qt 4.8.1. I trying to develope a simple web browser. I want to create function logout on site. As I understand the required information is stored in cookies. In ...
0
votes
1answer
421 views

POST request using QWebView request

Hi I'm working with pyqt4 and what I want to do is to craft an arbitrary POST request by using the QtWebKit request of my QWebPage/QWebView. By looking extensively around my understanding is that I ...
0
votes
1answer
72 views

QWebkit is not able to detect NPAPI plugin

I have developed one NPAPI based plugin and kept in under /usr/bin/mozilla/plugins directory. I have created one sample html page which merely embeds this npapi plugin. It is getting loaded by ...
1
vote
1answer
72 views

qwebkit google map

I do start a new application, using QT I wish to integrate google map 3.xx since 2 is deprecated... I have read alot on that subject But I still have the problem that my qwebview won't scroll to zoom ...
0
votes
0answers
174 views

not complete set my html code in sethtml in qwebview

i try set html to qwebview, but it does not complete...! my code is: void setHtml(QByteArray htmlCode, QUrl baseURL) { QWebView *view = new QWebView(this); qDebug() << "html in ...
0
votes
0answers
156 views

How to get Keypress event in QWebView window

I am using QWebView to display some flash content in this. I have been set the attribute of this window to be frameless and made it as a child window of some other process(Remote desktop Terminal ...
0
votes
0answers
115 views

Alternative ways for displaying a web page in Qt

When I visit this webpage, which is a simple map from Google Maps with, for example, Chrome or Firefox, everything is natural. You can double click to zoom in, you can drag the map and you can drag ...
0
votes
1answer
147 views

QWebKit doesn't handle click and dblclick for Google Maps

I just copy/pasted this code from google maps API in a my index.html <!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> ...
1
vote
0answers
115 views

Setting QObject ownship for QWebFrame javascript

I have a QObject that exists in a QWebFrame javascript environment through the addToJavaScriptWindowObject interface. This QObject has Q_INVOKABLE methods that return more QObject pointers (like a ...
0
votes
2answers
148 views

How to set QNetworkReply's content

This is my first post here, and I'm fairly new to Qt. I am using Qwebkit in order to load a web page, and I'm interested in NOT fully load some resources from web. To be specific, I'm trying to get ...
1
vote
1answer
167 views

QWebPage and multithreading

I have this code: class TestThread : public QThread { public: void run() { QFile file("test.html"); file.open(QIODevice::ReadOnly); QWebPage page; ...
0
votes
1answer
114 views

Qt Webkit output is not same like mozilla/IE for some website

I am using QWebKit class to display the webpages but for some websites output is not coming same as other standard browsers. For example the below mention site contain one flash video at the right ...
0
votes
1answer
244 views

POST request using QWebkit in Qt / C++

I would like to automate the process of filling out a form on the web, sending a request, and processing the resulting page over and over again (with different inputs). I'm able to access the page ...
0
votes
1answer
174 views

How to create Web History for my Browser

I'm new to Qt. I am Trying to create a Sample Browser Application. I had created the Browser application. Now i need to create the Web history for my application. I don't know how to do it. can ...
1
vote
1answer
200 views

QWebPage not working after the first load

I'm writing an application that scrapes some web pages using QWebPage. I'm having some trouble when the response is a Http redirect (e.g 302, 303, etc). The QWebPage simply does not follow the ...
1
vote
1answer
207 views

Open external links from flash player hosted on QWebKit

i have flash player running on QWebkit , and on the flash player there are some web links that needs to be open in external browser , what i did is : ...
1
vote
1answer
260 views

QWebKit + XPath + HTML. Is it possible?

Is it possible to parse HTML (HTML/HTML5, not XHTML) pages using XPath and Qt classes of QWebkit (and probably other standard or Qt classes) without using any external utilities like tidy? Thanks a ...
0
votes
1answer
171 views

Download a file using qwebkit

Good day to all. I started using X. I don't want to surf websites only, but download files too. What should I add to the code, to let it just download the file in a directory without any dialog ...
1
vote
2answers
752 views

How to get first redirect (301 or 302) event in QtWebKit

we are using QtWebKit 4.7 and want to know when a frame load does a redirect. At the moment we are counting the outgoing requests within a subclass of the QNetworkAccessManager, where we do overwrite ...
2
votes
6answers
875 views

how to use QWebPage in a non-GUI application

I want to use QWebPage in a non-GUI Qt application. By that, I mean that I don't want to communicate with the window server at all. Using QtGui is not a problem, though. QWebPage internally creates ...
0
votes
1answer
321 views

how to create QWebFrame instance

How can I create an instance of a QWebFrame? (In my case, I don't really need the QWebPage instance, a single QWebFrame would be enough.)
8
votes
2answers
879 views

How can I distribute OpenSSL with my Qt WebKit based application to Windows?

I have a Qt QWebKit based application that needs to use HTTPS to talk to web pages. I have downloaded the QtSDK, as well as the OpenSSL binaries (from here). My problem lies in deploying my ...
1
vote
1answer
830 views

What is the difference between QWebkit QWebSettings cache and QNetworkManager QNetworkDiskCache?

There are web attributes (void QWebSettings::setAttribute(WebAttribute attribute, bool on)): QWebSettings::LocalStorageDatabaseEnabled QWebSettings::OfflineWebApplicationCacheEnabled ...
2
votes
1answer
315 views

Why QWebkit doesn't resolve file:// and qrc:// when used in -webkit-scrollbar css?

Example #1: ::-webkit-scrollbar-button { background-image: url(file:///tmp/bg.png); } Example #2: ::-webkit-scrollbar-button { background-image: url(qrc://bg.png); } Above examples are ...
0
votes
1answer
198 views

Crash after QWebFrame::setHtml

I'm trying to set html content dynamically to document node in the main thread. QWebElement dynamicContent = ...
1
vote
1answer
352 views

Is it worth using QTextBrowser for parsing and modifying HTML page in the background instead of QWebPage?

For the pure purpose of learning C++ and Qt I'm writing a little Qt-based program, which reads HTML files (up to several hundreds) from a local directory, modifies them and writes them back into ...
-1
votes
1answer
561 views

Signal QWebPage::loadFinished(bool) returns twice?

I got a problem with QWebPage::loadFinished (bool) signal , it calls back twice , is that normal ? ( there's no link following at all , e.g HTTP status 302 ) Consider the following code , the whole ...
1
vote
1answer
230 views

QWebKit - Run page's javascript function?

Basically I want to go into my Router's settings, set a checkbutton and than call a function on the page, all programmatically. I know all the javascript to do this, and can do it via the Google ...
2
votes
1answer
2k views

QWebFrame addToJavaScriptWindowObject() objects are undefined in Javascript

I have started to dig in to C++ and Qt again, and have been mucking around with the WebKit Javascript/Qt bindings. I've got all the moving parts working, with the exception of my QObject subclass ...

1 2