Skip to content

Qt WebKit

Questions about Qt WebKit and related topics? Post here!
1.5k Topics 5.9k Posts
  • How can I print a QWebPage to a QPdfWriter?

    1
    0 Votes
    1 Posts
    676 Views
    No one has replied
  • QML: WebView don't read youtube video

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    FaridsarlF
    Hi, I have exported my project verse Qt 5.7 using WebEngineView and it work good. Thanks
  • Error during linking of Javascriptcore

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    SGaistS
    Hi, Glad you found out and thanks for sharing ! Since you have it building now, please mark the thread as solved using the "Topic Tool" button so that other forum users may know a solution has been found :)
  • qwebview unable to load page only one page

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    ?
    @petrzmax Glad to hear you solved it. Please use the "topic tools" button to mark this thread as solved. Cheers!
  • linking error in qtwebkit5.2.0 build

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    danjinmasterD
    I have allotted 10GB ram to my virtual box..still getting same error...
  • Webkit and QGLWidget

    Unsolved
    1
    0 Votes
    1 Posts
    547 Views
    No one has replied
  • Qt5-Webkit fails to build

    15
    0 Votes
    15 Posts
    10k Views
    SGaistS
    What distribution are you using exactly ? I've built Qt on a Pi using raspbian without any trouble however I didn't had the need for QtWebKit so I didn't bother with that module since what I needed already required a very long build time.
  • Remote Web Inspector

    Unsolved
    1
    0 Votes
    1 Posts
    807 Views
    No one has replied
  • Javascript debugging in qt webkit

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • QtWebKit build failed in Qt 5.6.0 with vs2013

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    raven-worxR
    @flyingtree thats not quite the way to rebuild qtwebkit. Assuming you've configured Qt from source. makefile available in qtwebkit cd qtwebkit make distclean make else cd qtwebkit qmake make
  • Multitouch on qwebview

    Unsolved
    1
    0 Votes
    1 Posts
    604 Views
    No one has replied
  • Whitelisting http requests from QWebFrame::evaluateJavaScript

    Unsolved
    2
    0 Votes
    2 Posts
    911 Views
    p3c0P
    Hi@Wei-Seattle In the old QWebView there was a way to set custom a QNetworkAccessManager where in one can re-implement some of its methods to intercept the requests. If you are using the old version check the following post: https://forum.qt.io/topic/51631/how-can-we-restrict-qwebview-not-to-download-some-js-and-css-files/2 But if are using a latest i.e Qt WebEngine then you will need to update to Qt 5.6 where they have added new API's to do so. As per this doc. We’ve also added a new Qt WebEngineCore module for new low-level APIs. This includes features such as support for custom URL schemes, intercepting and blocking network requests and for tracking and blocking cookies.
  • Qt WebKit on AIX -- need help/advice

    Unsolved
    1
    0 Votes
    1 Posts
    839 Views
    No one has replied
  • Not opening _blank links in control WebView qml

    Unsolved
    1
    0 Votes
    1 Posts
    691 Views
    No one has replied
  • how render weblg pages in webkit

    Unsolved webgl webkit
    1
    0 Votes
    1 Posts
    552 Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    McLionM
    Got it solved :-) QWebFrame * webGUIframe = qobject_cast<QWebFrame *>(sender()); QWebView * webGUI = (QWebView*)(webGUIframe->parent())->parent(); webGUI->page()->mainFrame()->addToJavaScriptWindowObject("NativeBridge", this);
  • Is there any way to make webkit use specific network interface

    Solved
    2
    0 Votes
    2 Posts
    821 Views
    slowargoS
    Just figured out that the correct way is using QNetworkAccessManager: QNetworkConfigurationManager manager; QList<QNetworkConfiguration> listCfg = manager.allConfigurations(); foreach(const QNetworkConfiguration& now, listCfg){ if (now.name() == strIf) { ui->frameWeb->page()->networkAccessManager()->setConfiguration(now); break; } }
  • How to load a .p12 key into the QSslKey object?

    Solved qsslkey qnetworkaccessm qsslconfigurati
    3
    0 Votes
    3 Posts
    3k Views
    GoneWithTheFoodG
    @luca yes you are right. :) Just now I've tried to export the private key from the .p12 file with the openssl API. This key could be constructed into QSslKey object now. Thanks a lot. But to configure in such a way is a little bit too complicated. Is there any class or method I can use, so that I can directly import the .p12 file into the QSslConfiguration object?
  • QWebView can't load the SketchUp 3D warehouse web page??

    Solved qwebview
    2
    0 Votes
    2 Posts
    1k Views
    K
    Setting the LocalStorageEnabled setting to true fixed this one!
  • Build qt-webkit failed

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    waferW
    When I remove "-fvisibility=hidden -fvisibility-inlines-hidden" from the CXXFLAGS, it works. I think that is because ~QString() is inline, the option above hide the destructor, so destructor can't be found.