Questions tagged [qtwebkit]

QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application.

QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. It provides facilities for rendering of HyperText Markup Language (HTML), Extensible HyperText Markup Language (XHTML) and Scalable Vector Graphics (SVG) documents, styled using Cascading Style Sheets (CSS) and scripted with JavaScript.

In Qt5 Qt WebKit Widgets provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. At the same time Web content can be enhanced with native controls.

QtWebKit is based on the Open Source WebKit engine.

QtWebKit is marked as deprecated in Qt 5.5 and considered for removal in future releases of Qt. It is advised to use Qt WebEngine for development of new applications.

646 questions
0
votes
2 answers

Qt5 WebKit not detecting NPAPI plugin

#include "mainwindow.h" #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); QWebView *view = new QWebView(); QWebSettings::PluginsEnabled; …
Shaurya Chaudhuri
  • 3,772
  • 6
  • 28
  • 58
0
votes
1 answer

Frames generated in rendering and painting an HTML page

How do I get the timings and layouts of different frames generated while painting an HTML page which involves javascript manipulations and CSS3 animations by a webkit browser?
Ruchir
  • 313
  • 1
  • 3
  • 9
0
votes
1 answer

How to port Qt webkit on the iMX board

I have cross compiled the QT web kit for iMX6 board. now i have to dump it on board and test it. So how to dump it on to the board and how to test it or open the browser.
0
votes
2 answers

How to filter out «back» events in a [Qt] web view?

I develop an application with WebKit-based forms and it’s important that, when on a form, a user can press Backspace without returning to previous page. How do I do this in QtWebKit? I found out that one can inherit a class from QWebPage and…
0
votes
1 answer

How to play HTML5 video using Qt WebKit

I have created one QtWebkit based app , and trying to load below mention URL, which if we open in Firefox , it will show as a HTML5 video. http://www.youtube.com/watch?v=JYc2jP4LLGo&html5=True In my application I am getting youtube html5 player…
user2893899
  • 103
  • 1
  • 2
  • 8
0
votes
1 answer

Enabling webgl in qtbrowser

Myself a beginner in Qt. I need to enable webgl in my qtbrowser. So what all changes i need to make in the code of webkit in qt4.8. Thanks in Advance. …
mary r
  • 93
  • 1
  • 2
  • 8
0
votes
1 answer

Which one for a desktop app with a good looking UI : QtWebkit or Qml?

I have been researching about these two technologies for creating a good looking desktop using Qt. However I see people talking about Qml as the next big thing for desktop apps since it provides all those "good" eye candy effects for a desktop…
scarecrow
  • 6,624
  • 5
  • 20
  • 39
0
votes
1 answer

QtWebkit accents in linux

I have made an app using QtWebkit. In the same html page, it works fine while using accents (spanish) on Windows, but it does not work on linux (Ubuntu). I can not underderstand why, Ubuntu works fine with any other program, with any other browser…
Juanin
  • 602
  • 1
  • 8
  • 16
0
votes
1 answer

Setting input to QWebElement

I have a HTML page with I'm using QtWebkit and I'm already able to get the QWebElement of the INPUT type. How do I set its value to a specific string (file path) so I can submit the form?
0
votes
1 answer

how to add a HTML element to a QT WebView

I have a desktop c++/qt gui app, that is using QWebview as its central widget. I am struggling to do something which seems fairly trivial. I want to add an element to a web page from qt like the following example

When Are You Going…

user866190
  • 855
  • 5
  • 14
  • 31
0
votes
1 answer

Scrollbar render misplaced in QTwebkit Qwebview

I have a weird scrollbar bug using Qwebview in Qt5. the scrollbars appears on the opposite side, while the action is still performed on the right side. For example, the rightside scrollbar can me moved from the right, but visually the bar moves on…
Vincent Duprez
  • 3,772
  • 8
  • 36
  • 76
0
votes
1 answer

QtWebKit: Failed to addToJavaScriptWindowObject when two QWebView binding to one obj

I have two QWebView instances(webView1 and webView2), both of them have a same statement like this: webView->page()->mainFrame()->addToJavaScriptWindowObject("JSCallable", parent); which parent refers to a same instance that have public slots for…
helsinki
  • 743
  • 7
  • 14
0
votes
1 answer

how to play video from blob uri in gstreamer

i am doing a project in which i am trying to implement webrtc in qt webkit. I have managed to make the webcam on but i am not able to show any video. While debuging i saw i am getting the url of the stream from webcam as…
user2623122
0
votes
0 answers

How to know when an input field is focused from a QML Webview in Qt5

I'm working on an UI in QML for an embedded linux (for now raspberry pi/raspbian, but the HW will change pretty soon). I'm using Qt 5.0.2 I integrated a QWebKit browser using the QML WebView. I want to be able to know when an input field is focused,…
Arthur Saint-Genis
  • 167
  • 1
  • 2
  • 12
0
votes
0 answers

QtWebkit select text by itself after pressing space

I tried to google this question, but google don't know about this issue. I'm using Qt 4.8.1 QtWebkit 2.2.3+Javascript for implement some kind of Html-Editor. It is hard to explain the problem by text so I maid some screenshots (link in the end of…
Paul
  • 1
  • 1