Unknown module(s) in QT: webkitwidgets webkit
Hi, First I built and installed QT5 in Ubuntu 13.10 without webkit: ./init-repository —no-webkit # we build WebKit separately ./configure -developer-build -opensource -confirm-license make -j 40 make...
View ArticleDisable sound in QWebPage
Is it possible to disable sound in QWebPage ? Till now I’ve managed to completely disable javascript pop-ups etc using this code: class CustomWebPage : public QWebPage { protected: ...
View ArticleHow can I develop and host web application using Qt ?
How can I develop website using Qt and host that website into a hosting server ? Also is there have any web hosting company for that?
View ArticleData Retrieval from NOAA API
Hi All: First let me say I’m fairly new to all of this, but I’m picking it up quickly. My experience has mostly been HPC with Fortran until now. What I’m trying to do is fetch from the web a dataset...
View ArticleUsing Qt WebKit
Hello all, I want to create a C++ app with a HTML page attached to it. I was succesfull in creating the project and add a HTML page and was able to run it. I can now see my HTML page with buttons and...
View ArticleIntegrating native functionality with QT Webkit ?
Does QT webkit allows to have a hybrid model in which the web content can interact with natve cpp code ? In short, does it follow ‘Phone gap’ like model, or is it just a web content render-er alone ?
View ArticleQWebView how to load only a ?
Hi, I managed to load an URL in a QWebView using this: QUrl url("http://www.nfe.fazenda.gov.br/"); ui->webView->setUrl( url ); But my goal is to load/show only one...
View ArticleQWebView memory deallocation
Hello all! I’m building application which constantly creates a deletes QWebView object. After some time the memory consumption is growing significantly. I build the minimal example, which demonstrates...
View ArticleQWebView doesn't free its memory
I want to download several pages, do something with them, and free the memory they’ve been using. Here, the same page is downloaded 10 times: #include <QApplication> #include...
View ArticleFile dialog from <input type="file"> causes main window to lose focus
Hello. I am completely new to C++ and Qt as well, so this may be a dumb question. I have a simple application based on Html5ApplicationViewer. Everything is fine, but when a file dialog is opened by...
View ArticleSending external events to QtWebView components
All, Here is my requirement. 1. My Qt WebKit applictaion loads the html page which has Html Buttons and javascript. 2. An external event [comes from different process via sockets] should be captured...
View ArticleQWebkit + extracting dynamic DOM data
Hello! I am looking for decision for extracting calendar data from pages like this: http://www.dukascopy.com/swiss/russian/marketwatch/calendars/eccalendar/ There are js-widget + js-applet. And they...
View ArticleQNetWorkRequest SSL
How can I make my QwebView/QNetWorkRequest work with SSL? QT return this errors (is clear that the error occurs because I did not configure SSL in my application): QSslSocket: cannot resolve...
View ArticleQt QWebView White Screen After Codesign For App Store
Env: Qt 5.2 rc1 QML Mixed with C++ backend on 10.8 MBPro Issue: Qt QWebView White Screen After Codesign For App Store For speed and deployment purposes, I used QWebView on the C++ side to display...
View ArticleQtWebkit doesn't handle Javascript array property accessors well
Hello all, I am having trouble trying to make Javascript array property accessors work properly in QtWebkit shipped with Qt 4.8. For example, if I do the following in the QtWebkit web inspector: var _a...
View ArticleQtWebKit 3.0 problem with WebView and flash
Hello everyone, I have problem with WebView. I don’t know how to configured to use flash in WebView. Even does not work youtube message “To play movies you need Flash player”. I used also...
View ArticleGoogle hangout not working in qtweb browser on ubuntu 12.04 ?
Hi, I started google hangout in qt web browser but it was showing black screen.In other browsers same machine it was working fine.Please help me to start a hangout on qt web browser.The browser version...
View ArticleIs there a way to always put an Pixmap on top of a QWebPage?
Hi, all: I’m wondering is there a way to always put an pixmap on top of a QWebPage? So that the widget doesn’t work the way it should be, but only displaying a picture? Cheers Pei
View ArticleQtwebkit language problem in windows xp and xp sp3
I am making a browser in windows with qwebview .In window vista+7+8 its showing the language correctly but in windows xp its not abe to show some websites http://www.goolgule.com/ [goolgule.com] . When...
View ArticleHow to filter out «back» events in a web view?
Hello, all! I develop a form based upon QWebView (and have QWebView and QWebPage inherited for additional work). It’s important that a user can press Backspace without returning to whatever page it was...
View Article