Skip to content

Qt WebKit

Questions about Qt WebKit and related topics? Post here!
1.5k Topics 5.9k Posts
  • QtWebkit Build Error

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How to update QtWebKit

    2
    0 Votes
    2 Posts
    3k Views
    N
    I am not sure what problems you have faced. As I was able to compile and cross-compile QtWebkit 2.2 downloaded from Gitorious without any issues on qt 4.8
  • [Solved] Debugging scripts that run in a QWebView widget

    12
    0 Votes
    12 Posts
    19k Views
    V
    Hello entuland, Could you please advise what solution was selected. I have the same question and still have no solution. Thank you in advance, Vadim
  • [Problem] - Import Webkit in a Qt Project

    2
    0 Votes
    2 Posts
    2k Views
    A
    bq. directory not found Check this.
  • Will an application using QtWebkit be fully cross platform?

    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS
    QtWebKit is based on WebKit engine, the same that drives Safari and Chrome browsers. There should be no problems with running it cross-platform. As for HTML5 and AJAX, I think it's also supported, but have not checked myself.
  • Very very poor scrolling using QtWebKit

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Object with embed tag doesn't work properly in 4.8

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How enable remote debugger for QWebView

    5
    0 Votes
    5 Posts
    3k Views
    J
    Yes, I'm looking remote web inspector.
  • Porting webkit to really small embedded devices

    3
    0 Votes
    3 Posts
    2k Views
    S
    try using skia or cairo port for graphics, i think you should time heavily on cutting down modules of Webkit. But 10MB/32MB is very tough to accomodate
  • [Solved] Advice needed: Reload page on "F5"

    12
    0 Votes
    12 Posts
    7k Views
    sierdzioS
    If nothing changed during my lengthy absence from this forum, you should now change the topic's title/ subject to include "[Solved]" at the beginning. I've also tagged it for you.
  • [Solved] 'webivew' does not name a type

    7
    0 Votes
    7 Posts
    7k Views
    D
    the problem has been solved the problem was because webview requires tab and tab requires webview so there will be error now i have done something different thanks all
  • 0 Votes
    5 Posts
    10k Views
    S
    Yes this may be the problem I'm having since I run Ubuntu 11.10. Haven't had the time to investigate further. Thanks for the tip though!
  • Simple Encryption/Decryption in QWebView

    5
    0 Votes
    5 Posts
    3k Views
    A
    I think you best bet is to subclass [[doc:QNetworkAccessManager]] and [[doc:QNetworkReply]]. In your subclass of QNAM, you reimplement the createRequest method to return your own subclass of QNetworkReply. Your custom reply class can manipulate the data as it streams in or just when it is read out.
  • Extending QWebInspector

    3
    0 Votes
    3 Posts
    2k Views
    A
    Maybe you should ask this on WebKit forums, I don't think you can do this over Qt without making modifications/extending WebKit source... P.S.: If you find something, please let me know, I'm interesting in that too...
  • Can't load full html code from page

    5
    0 Votes
    5 Posts
    3k Views
    S
    Thank you! I'll try that:)
  • QT WebKit 4.7.4/4.8.0b - CSS3 webkit-mask-image and webkit-gradient

    5
    0 Votes
    5 Posts
    6k Views
    C
    I've found the solution: I just needed to set the graphics system to raster @ int main(int argc, char *argv[]) { QApplication::setGraphicsSystem("raster"); QApplication app(argc, argv); ... } @
  • QGraphicsWebView setRenderHints alternative

    2
    0 Votes
    2 Posts
    3k Views
    C
    Sorry, my bad! I was using an older version of Qt when tested this. I set the render hints like this in the constructor of the classes inherited from QGraphicsWebView and QGraphicsView: @ setRenderHint(QPainter::SmoothPixmapTransform); setRenderHint(QPainter::Antialiasing); setRenderHint(QPainter::TextAntialiasing); setRenderHint(QPainter::HighQualityAntialiasing); @ but the scaled images still looks pixelated. (The images are scaled from CSS by setting the width property). Is there a way to make those images look nicer?
  • Qt webkit fails to load external javascripts

    2
    0 Votes
    2 Posts
    1k Views
    A
    Have you tried Qt 4.8.1? And take a look in QWebSettings class about external scripts....
  • Full support for CSS3?

    4
    0 Votes
    4 Posts
    2k Views
    A
    4.8.1 from GIT
  • SVG Interaction Events

    2
    0 Votes
    2 Posts
    2k Views
    J
    So, does anybody know if this is possible? It's impossible to properly use HighCharts (a JavaScript charting framework).