QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application.
-2
votes
0answers
17 views
how can I install webkit for python in ubuntu 12.10? [closed]
I am trying to install webkit in ubuntu12.10 pc. But through google search I can't find a better solution.
I want to create a web browser with webkit
currently when I try
>>> import ...
1
vote
0answers
22 views
phantomjs compile with webGL
I am trying to compile phantomjs to add webGL. Apparently it is possible because of: https://groups.google.com/forum/#!msg/phantomjs/yagAkrYl6eg/rltehGAyt9QJ .
...
0
votes
1answer
125 views
How To: Install Spyder (Python IDE) on CentOS 6.4
I've been spending the past few days trying to install Spyder (the Python IDE) on CentOS 6.4. There are a couple of issues with installing Spyder on CentOS 6.4: the Qt RPM package does not include ...
5
votes
1answer
194 views
page-break-inside doesn't work in table cells with rowSpan?
I want to make PDF rendering of my big report table. But it seems that phantomjs doesn't support the rowSpan attribute. Here is the example:
phantomjs rasterize.js ...
0
votes
1answer
44 views
Load QImage inside QWebView
I have the below code
QWebView webView;
QImage img = QImage::fromData((unsigned char *)data, size); // comes from some data source
webView.setHtml("<html><body><img ...
0
votes
0answers
16 views
Can't override openLinkInNewWindow action
I'm trying to override the openLinkInNewWindow action of a QWebPage, but that doesn't work,
Here in the constructor of the inherited class, I have,
QAction *openLinksInNewWind = ...
0
votes
0answers
23 views
Is it possible to take a part of HTML DOM and create separate window keeping same JS content in QtWebKit?
I have one QtWebKit-window with html-page in it. There some draggable divs I want to act as 'native' windows and still share same JS-context.
Is it possible or I have to create separate window with Qt ...
0
votes
1answer
69 views
How to Clean Up subprocess.Popen Instances Upon Process Termination
I have a JavaScript application running on a Python / PyQt / QtWebKit foundation which creates subprocess.Popen objects to run external processes.
Popen objects are kept in a dictionary and ...
0
votes
0answers
51 views
PDF with QWebView: missing refresh/repaint after loading
I use the QWebView (python 3.3 + pyside 1.1.2 + Qt 4.8) as FileViewer. Picture, Text, HTML, ... all fine, but PDF has a display problem. I tested two possible ways.
internal pdf viewer: after use ...
0
votes
0answers
33 views
Qt and JavaScript Garbage Collection
I am looking for a way to call the JavaScript garbage collector from within QWebFrame. I have searched the Qt Docs and have found the QWebFrame::addToJavaScriptWindowObject method. I think this may be ...
1
vote
2answers
112 views
CSS3 equivalent to width:calc(100% - 10px)
I'm searching for an alternative to migrate my CSS - already working on FF and Chrome -, because QtWebKit it's not rendering some CSS3 feature yeat.
I have the following stuff:
.fit {
width: ...
1
vote
2answers
34 views
QWebView which version of webkit supported?
I am new to Qt. What I understand is Qt is porting webview from webkit. [Correct me if i am wrong]. and I could not able to find which version of the webkit is ported into Qt 5.0 or higher version.
...
1
vote
0answers
45 views
Python QtWebKit 2nd link not downloaded
I am trying to download the content of both the links.The first link works properly and the content is downloaded as a html file.But the content of the 2 nd link(a text file) is not downloaded.Please ...
2
votes
1answer
53 views
QtWebKit: How can I detect a URL changed via the HTML5 history API
We're currently using QtWebKit to build an application, part of which displays the product catalogue page of our website. On that webpage we're using the jQuery.history plugin to keep track of sorting ...
0
votes
0answers
16 views
QWebPage chooseFile function override
I am trying to upload a file programmatically to an input type file.
My goal is to press the choose file button on a website and instead of seeing the dialog insert a file with software.
I understand ...
1
vote
1answer
36 views
How to prevent QtWebkit load images?
I don't need images in the page loaded in QWebView. With a minimum example, how do I do it?:
import sys
from PyQt4 import QtCore, QtGui, QtWebKit
if __name__ == '__main__':
app = ...
0
votes
0answers
41 views
How can I get the text cursor position on an editable QWebView?
I've tried using the cursor() property on numerous objects including on the QWebView itself, but that seems to return the position of the mouse cursor and not the text cursor. I'm trying to do ...
1
vote
1answer
71 views
d3.event object in QtWebKit
I'm trying to use d3js inside a qtWebKit. In particular I've created the following test page:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
rect.pane {
cursor: move;
...
0
votes
1answer
50 views
QtWebView VS D3.js
So, I have this school project I'm doing and I needed a visualization tool for the results of some of the processing being done by the software I'm developing.
Since I'm using Qt for the software, I ...
1
vote
2answers
70 views
Hide all divs but one (Qt Webkit)
I want to set the style of every element in my HTML document to be "display: none;", except one. I can't edit the HTML source file. I'm using Qt Webkit to try and do this, and this is my code so far:
...
1
vote
0answers
187 views
Insert web frame with WebRTC support in own application
We are about to extend an existing application based on Qt 5 to support video/audio-chat using WebRTC.
We already tried to use the Qt 5.0.2 built-in QtWebkit widget without success as getUserMedia() ...
0
votes
1answer
27 views
PyQt4 new modul
I want to do some things with the PyQt4 framework. So I decided to do some browser like thing. Here is the code. Its just simple:
import sys
from PyQt4 import QtGui, QtCore, QtWebKit
class ...
0
votes
1answer
68 views
While downloading a file from a website using python and webkit getting HTTP Error 500: Server Error
I am trying to download file from the website www.nsf.gov. In the browser, first I have to make a search request.Then, I have to click on the export file option to download the file.
If, I try to do ...
0
votes
0answers
66 views
How to forge request using createRequest by subclassing QNetworkAccessManager?
I would like to download the dynamic generated image from a website. The website is has javascript code and click button to turn to previous image and next image. I inspected the http request and ...
0
votes
1answer
43 views
the sound don't stop when QWebView window closed (loaded with youtube video)
I load a youtube video with QWebView by the following code ,when the video is playing I close the QWebView window ,but I still can hear the voice from that video even when QWebView window is closed,
...
1
vote
0answers
108 views
PhantomJS WebPage memory consumption?
Is there a programmatic (since i want to do it automatically at runtime) way to see how much memory a webpage uses when running it through PhantomJs?
I am also using casperjs if that could be ...
0
votes
0answers
69 views
QWebFrame object has no attribute documentElement
My code:
import sys
import time
from PyQt4.QtGui import QApplication
from PyQt4.QtCore import QUrl
from PyQt4.QtWebKit import *
class Browser(QWebView):
def __init__(self):
...
0
votes
0answers
103 views
QWebview - Reopen closed window (error only occurs when using events eg. onclick)
I'm developing a basic web browser in QT5 (IDE Qt Creator 2.6.2).
If I click on a link\anchor with target:
<a target="newWindow" href="http://stackoverflow.com">Test</a>
or execute an ...
0
votes
0answers
150 views
webkit browser doesn't support jquery touchswipe and kinetic?
I'm using Qt5.0.1 which comes with webkit 537.21
It has a demo browser:
/opt/Qt5.0.1/5.0.1/gcc/examples/webkitwidgets/browser$ ./browser http://localhost:8000/myUrlHere
I use it to test my web ...
0
votes
0answers
25 views
track javascript function calls from QtWebkit
When a user clicks (or simply moves the mouse) in some webkit browser, sometimes javascript functions are called. Is there any possibility to track events of these calls from QtWebkit?
1
vote
0answers
110 views
Qt Webkit Bridge: C++ access to JavaScript
I am using a QWebView and call to setHtml() to display some HTML/JavaScript pages. I am passing data updates using QWebFrame::evaluateJavaScript by passing it a QString containing a call to a ...
0
votes
0answers
77 views
Webkit QtTestBrowser debugging in QtCreator, Ubuntu. The debugger skips breakpoints
I have adjusted Qt Creator to build webkt qt as in this manual http://trac.webkit.org/wiki/BuildingQtOnLinux :
Using QtCreator to build QtWebKit
To better debug QtWebKit, we can use QtCreator.
Open ...
0
votes
0answers
62 views
WebKit qt compilation error
I have downloaded sources from here:
http://trac.webkit.org/wiki/QtWebKitContrib
I have built webqit qt:
./build-webkit --qt --qmake=/home/sashko/Qute/Qt5.0.1/5.0.1/gcc/bin/qmake --no-svg --debug ...
0
votes
1answer
48 views
Setting CSS style through web pages and QWidgets
I'm creating a Qt application with some web pages loaded on QWebViews and also some plain QWidgets, all inside a QMainWindow. Both the webpages and widgets are going to have some checkboxes here and ...
0
votes
0answers
63 views
PyQt4 QWebView external resource content
class Browser(QWebView):
def __init__(self):
QWebView.__init__(self)
self.loadFinished.connect(self._result_available)
self.loadStarted.connect(self._load_started)
...
1
vote
2answers
122 views
QTWebview does not load image from css
I am using QTWebview in a window application. When I load a page by setHtml function, my web view sometimes does not load content images.
This problem especially occur after several pages are loaded.
...
0
votes
1answer
103 views
webRTC: getusermedia in qtwebkit2.3 is not working
I am doing a project in qt in which new i am trying to enable webRTC in the fancy-browser.
I want to us QT4.8 for this so i have downloaded qtWebKit2.3 and i have build successfully by ...
0
votes
0answers
31 views
QTWeb upload file location
I am implementing a web application for window using QTWeb. In web view, I use <input type=file>to upload an image from local disk to my web. I catch the action upload of this control and patch ...
2
votes
0answers
278 views
How to make PyQt webkit fast for modern browsing?
I have been playing around with PyQt4 and have realised that it does not live up to my expectations. Consider the code
import sys
from PyQt4.QtCore import Qt
from PyQt4.QtGui import QPalette, ...
0
votes
1answer
125 views
QtWebkit: How to hook a virtual keyboard on <input> fields
I'm working on an embedded Webkit browser (with Qt 4.8.0 on linux) that runs with a remote control on a TV set.
I have pretty much everything working so far, and I'm now trying to handle the ...
0
votes
0answers
132 views
make qt5 qtwebkit support v8 javascript engin?
i have install qt5 and compile the qtbrowser demo , when i use it i found it not use the V8 engin , is anyone know how to change the qt5 qtwebkit to use V8 engin . thanks !
2
votes
2answers
362 views
How to set value of input(type=“file”) with QWebElement?
I'm trying to upload a photo to vk.com using QtWebKit module. The problem I'm facing is inability to properly fill input(type="file")'s value. Here's some related code I use:
def upload():
print ...
1
vote
1answer
128 views
Qt Multiple system tray icons
I'm not sure what's doing this but I think it's when I want the app to close abruptly (for example when the user chooses not to continue after an SSL error the application will close) using the method ...
1
vote
0answers
81 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
0answers
84 views
Communication between QT desktop application and embedded webkit
I'm newbie in QT programming. Qt can embed webkit control inside Qt desktop application. Is exists any way to communicate between C++ Qt desktop application and website opened in webkit? For example, ...
0
votes
3answers
167 views
Running webkit2png from a php script works in Terminal, but not in browser
I have a following php script -
<?php
$command = "python webkit2png/webkit2png -D screenshots http://stackoverflow.com";
$command = escapeshellcmd($command);
system($command);
When run from ...
0
votes
0answers
121 views
WebView with Qt Necessitas
I have a Qt application that contains a QWebView view, which I have successfully built for Android, using the Necessitas HTML5Application template.
However, I am unable to use hardware accelerated ...
0
votes
0answers
19 views
Modify history of QWebPage
Is it possible to add a URL to the history of a QWebPage? I see there is an interface QWebHistoryInterface for this that defines a method addHistoryEntry, but I'm not sure how that is related to the ...
0
votes
0answers
114 views
Alternative for Qt Webkit? [closed]
I am using Qt Webkit Version 2.14 on linux to run a jquery application. But due to some memory leakage in webkit the application becomes slugish when i run that in a real time device(i.e. an Oven). So ...
1
vote
0answers
54 views
Accessing the DOM of a QtWebKit Application
I have a Windows application, whose User Interface was done in QtWebKit.
So, I have an .exe with the QtWebKit container. Since I have to do automated GUI testing on it, I need to find a way to ...




