Tagged Questions
QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application.
6
votes
3answers
1k views
QtWebkit synchronous loading
I'm using a QWebPage without a QWebView because I want to render the contents of an HTML file onto a QPixmap/QImage.
I want the loading of the page to be done synchronously, not asynchronously which ...
5
votes
1answer
674 views
How to fire user-like event in QWebElement
Is it real to fire user-like events (like mouse click on link) for QWebElement?
I.e., for instance, given QWebElement from current frame (using QWebKit) for html tag ("") I want programmatically ...
4
votes
5answers
453 views
Web technologies in GUI apps
What's your experience in using web technologies (HTML, XML, CSS, JavaScript) to implement part of the functionality of a GUI application? Pros and cons, please.
No servers, relational databases, ...
4
votes
3answers
368 views
Is there a summary of differences in rendering/behavior between QtWebKit and Chrome/Safari WebKit?
I wrote a simple Qt application (Windows+Mac) that uses QtWebKit to render
a web site inside a window.
But I already saw differences in layout and behavior between our app and Chrome
(that uses ...
4
votes
4answers
3k views
How to know when a web page is loaded when using QtWebKit?
Both QWebFrame and QWebPage have void loadFinished(bool ok) signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded ...
3
votes
2answers
68 views
Why is QWebView.loadFinished called several times on some sites e.g. youtube?
As per the documentation, loadFinished should be emitted only after all the page elements have finished loading. This should mean that it'll be called only once, however I've noticed that on some ...
3
votes
1answer
170 views
Using QTWebKit to display a website stored in memory
Currently I have my HTML, JS, CSS, graphics, etc stored locally on hard disk and access them using QWebFrame::SetUrl( QUrl::fromLocalFile( "appFolder\html\index.html" )). At some point I am going to ...
3
votes
3answers
1k views
Using PySide's QtWebKit under Windows with py2exe
I'm making an application in Python using PySide and Qt, and I need to open a webpage, so I used QtWebKit's QWebView.
On my development machine it works just fine, both running the code directly and ...
3
votes
3answers
1k views
How to tell QWebPage not to load specific type of resources?
How to tell QWebPage not to load specific type of resources like js, css or png?
3
votes
1answer
411 views
How to make QT support HTML 5 database?
I am using Qt 4.7.1 and embedded a webview in my app. But I got the following error when trying to visit http://webkit.org/demos/sticky-notes/ to test the HTML 5 database feature
Failed to open the ...
3
votes
1answer
2k views
How to Create a webservice by QT
I am looking for a tool or plugin that help me to create web service as DOT NET does for Linux
thanks
===============================
After search, I found that Qt has not any thing to write web ...
3
votes
1answer
2k views
Expose C++ object to Javascript in Qt
Is there any way I can expose a C++ object/function to JavaScript running inside the QtWebKit browser in Qt? It's possible to expose ActionScript objects to JS code running inside the WebKit browser ...
3
votes
2answers
411 views
how to get response in QtWebKit
Hello all
im beginner with QtWebKit i build simple web frame that loaded page ( server side )
and when from this page i submit data i like to catch the response string from the server in the c++ side ...
3
votes
4answers
4k views
How to get Javascript in a QWebView to create new instances of C++ based classes?
I've successfully added an C++ object to a QWebFrame with addToJavaScriptWindowObject,
and can call a slot on that object from javascript.
But what I really want to do is have one of those slots ...
2
votes
1answer
35 views
How to bundle Flash player plugin with my Qt app and point QtWebKit to that path?
I am trying to build a cross-platform Qt app where I need to show some flash content in a QWebPage. Is it possible to bundle the Flash player plugin within my app so that there is no dependency on ...
2
votes
1answer
228 views
Why is QTWebKit so much behind Google Chrome (Chromium)
I have used the newest release of QtWebKit, that is version 2.2. But I must say it is nowhere near the current release of chromium. It lacks many CSS properties, it lacks anti aliasing, it renders ...
2
votes
1answer
373 views
Qt-webkit WebSocket protocol
Which WebSocket protocol is supported by Qt-webkit?
For example, the following list has the WebSocket protocol lists.
The WebSocket protocol: draft-hixie-thewebsocketprotocol-76
2
votes
2answers
288 views
Python QtWebKit save webpage to file
What's the best and simplest way to save a webpage displayed with QWebView() to file?
from PyQt4.QtCore import *
from PyQt4.QtWebKit import *
from PyQt4.QtGui import *
from PyQt4.QtScript import *
...
2
votes
2answers
194 views
QtWebkit support for CSS and Javascript
We are planning to use Qtwebkit for Help viewer in our application, we need to support HTML 4.0, CSS and Javascript at the least. Just wondering if its a good option to use. Is it like a browser when ...
2
votes
1answer
522 views
Qt, QtWebKit and <video> support
What kind of source material support embedded QtWebKit browser has? Does it support MPEG-4, WebM or Theora and is this support available through compilation?
I was mostly looking desktop platforms ...
2
votes
1answer
248 views
C# Qyoto bindings for webkit on WinCE platform
is it possible to use QTWebKit on WinCE (5.0, 6.0) using .NET Compact Framework (2.0 and higher)? If yes, any idea where to start from(are compiled binaries available somewhere)?
I was reading about ...
2
votes
1answer
280 views
Modifying a QVariantMap with JavaScript
The QtWebKit Bridge documentation states the following -
Compound (JSON) objects JavaScript
compound objects, also known as JSON
objects, are variables that hold a
list of key-value pairs, ...
2
votes
0answers
312 views
How can i enable cache on qt webkit
I'm using webkit on qt platform, and I need to enable the cache function to use html5 apps that uses cache.manifest.
But, I'm using the OfflineWebApplicationCacheEnabled method, but this is not ...
2
votes
0answers
149 views
Rendering a QWebElement into a QWidget crashes my application
I'm trying to render a QWebElement into a QWidget but my app crashes, however if I render it into an QImage everything works great.
Here is my code:
// using this code my application is crashing
...
2
votes
1answer
280 views
Cannot access Qt object methods through javascript using QtWebkit
Using QtWebkit's javascript bridge, I have created a class to interface the data in my web frame with the rest of my Qt code. it recognises the object, but none of its methods.
//executed with main ...
2
votes
1answer
630 views
QtWebkit: How to check HTTP status code?
I'm writing a thumbnail generator as per an example in the QtWebkit documentation. I would like to avoid screenshots of error pages such as 404 not found or 503 Internal server error.
However, the ...
2
votes
1answer
506 views
-webkit-box-shadow blur with QtWebKit?
Is there any way to achieve working blur for -webkit-box-shadow at the time? Reading through the comments of this bug report, i recognized that this is still an issue, although the bug report is ...
2
votes
1answer
679 views
PyQt + QtWebkit behind a proxy
I'm writing a PyQt (Python bindings for the all-powerful Qt library) application and a small part of my application needs a web browser (hint, OAuth). So I started using QtWebkit, which is fantastic ...
2
votes
1answer
286 views
catch link clicks in QtWebView and open in default browser
I am opening a page in QtWebView (in PyQt if that matters) and I want to open all links in the system default browser. I.e. a click on a link should not change the site in the QtWebView but it should ...
2
votes
0answers
589 views
Loading page with frames for a screenshot
I have an app that renders a web page in a iframe, and then loads X number of images in a div that overlays the frame.
So I have this python script that loads the url, and takes a screenshot. It ...
2
votes
1answer
410 views
Very slow remote page load performance in QtWebKit (Windows)
I get very slow load times on QtWebKit on Windows 7, through ADSL.
I am using the Qt Demo Browser, on a Core2 Quad, 64 bit Windows 7, 4GB ram, 2gb processor.
through a VPN.
Simplest example: google ...
2
votes
1answer
2k views
Retrieve position of a google maps v3 marker to Qt in a desktop app with QtWebKit
I'm building a Qt app with Python where you can point and click at a (google) map and get the coordinates of the location. The map is shown through a QWebView loading a simple HTML page and the user ...
2
votes
1answer
682 views
QWebFrame::evaluateJavaScript vs. script-tag in HTML
I want to develop an application that uses QtWebKit and JQuery.
What I need to know is, is there any difference between reading JQuery from a file and evaluateJavaScript it, or embedding it as a ...
2
votes
1answer
759 views
Accessing an image from a webpage in PyQt4 QtWebkit
If a page has fully loaded on a QWebView, how can I get the data for a certain image (probably through the dom?)
2
votes
1answer
1k views
Qt: Force QWebView to click on a web element, even one not visible on the window
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 = ...
2
votes
1answer
729 views
QWebElement manipulation of a QWebPage in a separate thread
I have a QWebPage created in the main thread (you can't create it anywhere else). I would like to manipulate this page using the QWebElement API introduced in Qt 4.6, but in a separate thread. So that ...
2
votes
1answer
417 views
QtWebKit Manager
I've been asked to research a way to manage a QTWebKit module outside of QT. The idea is to use QTWebKit as an interface(GUI) for an application. The desired (Manager) should work as a communication ...
2
votes
1answer
1k views
Disable drag/drop in QtWebkit
I am trying to create an HTML GUI for an application using Qt's WebKit... so far everything is going smooth with a minor problem, I don't want people to be able to drag and drop images from my GUI. I ...
2
votes
2answers
370 views
QWebElement information where on page it is rendered?
Looks like access to DOM and rendering details of HTML tags are not availabel in qt 4.5.x .
Current snapshot QWebElement looks like proper class to be used there
Anybody can give me info if is it ...
2
votes
3answers
1k views
How to access DOM of a web page in QtWebKit?
How to access DOM of a web page in QtWebKit?
I don't see any methods exposing DOM in QtWebKit...
2
votes
4answers
2k views
How do I develop a plug-in for QtWebKit?
I am trying to develop a plug-in for QtWebkit. But I am not able to find how to develop a plugin for QtWebKit, hopefully one that can be invoked by JavaScript. Does anyone know of any tutorials or ...
1
vote
1answer
42 views
QTWebkit “headless” mode
I'm trying to parse some HTML with QT / C++. However, I don't want to show any rendered HTML page. Is it possible? How?
1
vote
0answers
30 views
How to get a DOM elements click handler using capybara-webkit or native QtWebKit?
I'm using capybara-webkit and would like to get the event handler(s) bound to the click event of an element in the DOM. An answer even using native QtWebKit calls would probably be enough for me to ...
1
vote
0answers
100 views
Why QtWebkit 4.8.0 ( Webkit 2.2 ) dont support Audio & Video?
If I install Qt 4.7.4 with QtWebKit 2.0.2 (built for Visual Studio 2008) I immediately run one of the delivered examples (e.g. the Fancy Browser) which uses the QtWebKit. Then I browse to ...
1
vote
0answers
51 views
QWebPage loadFinished signal not called when using thread?
I am trying to execute a network request with webkit in a secondary thread and also do all the processing like scrapping data in the same thread. However, I am puzzled why the QWebPage's signal ...
1
vote
0answers
123 views
Automated GUI Testing for Qt WebKit application
I'm writing a Qt application that uses a QWebView to host the UI. Similar to the ImageAnalyzer example in the Qt SDK samples.
I would like to test this UI using an automated method. A scripting ...
1
vote
1answer
249 views
QWebView / Qt WebKit won't open some SSL pages; redirects not allowed?
Clean install of Qt SDK 1.1.4 on Windows 7 with Visual C++ 2008 SP1; I'm using Qt Creator. Why does this code not load some web pages?
#include <QtGui/QApplication>
#include ...
1
vote
1answer
131 views
How to set the application name in spynner/PyQt4?
I have had searched the web to find the way to put a name in the top of a PyQt4 application border. I saw setCaption() method ( like in ...
1
vote
1answer
55 views
QtWebKit Linux Phonon Support Status
Does anybody know what the status of video playback in QtWebKit is? According to these release notes: http://trac.webkit.org/wiki/QtWebKit, it seems like playback is supported (on Nokia phones?) ... ...
1
vote
1answer
53 views
Can I access the form elements of a flash form from qtwebkit?
I have a qtwebkit browser with Mozilla NPAPI plugins from which I access a web page. This page contains flash forms and I need to be able to access and manipulate its elements.
Does anyone knows if ...