Questions tagged [qwebkit]

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

150 questions
0
votes
1 answer

Authorization VK.COM with QWebView

I am trying to download the authorization page for VK.COM, but keep getting a white browser window. In that case loadFinished(bool). Code for example: QWebView* view = new QWebView; view->load (QUrl…
Grovello
  • 11
  • 3
0
votes
1 answer

Embedding a TinyMCE editor in PyQT QWebkit

as the question states, I wish to embed a tinymce editor in a PyQT webkit component. As far as I understand, evaluateJavascript allows for js functions to be called. However, when I try loading tinymce.min.js, the editor does not display anything at…
igmnlt
  • 220
  • 2
  • 7
0
votes
1 answer

QWebFrame setContent Slows GUI

I'm trying to preload a few webpages in a series of hidden QWebFrames before I show them. However, I've found that the setContent method for a QWebFrame causes the GUI to become unresponsive. I've tried putting the actual network activity in a…
K. Barresi
  • 1,275
  • 1
  • 21
  • 46
0
votes
1 answer

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 then happens nothing. evaluateJavascript is not the problem,…
user2047330
  • 119
  • 1
  • 9
0
votes
3 answers

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 resources. But in QWebView there is white screen. I…
Russell Crowe
  • 67
  • 2
  • 8
0
votes
2 answers

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. The html file loads a jvectormap US States Map. The…
0
votes
0 answers

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 file system. I found some other posts regarding…
Engineer
  • 227
  • 2
  • 19
0
votes
2 answers

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 webView->page()->networkAccessManager()->cookieJar() I…
NeedForS
  • 33
  • 4
0
votes
1 answer

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 mozilaa, but same page when I am trying to load via…
Ashish Mittal
  • 643
  • 3
  • 12
  • 32
0
votes
0 answers

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