Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qwebkit
    Log in to post

    • UNSOLVED Using firefox as default browser of QWebkit
      Qt WebKit • qwebkit • • Naser 0  

      8
      0
      Votes
      8
      Posts
      930
      Views

      Hello @Naser-0, Did you managed to compile it? Im struggling with qwebkit on my Rpi as well. Regards
    • UNSOLVED [SOLVED] Embedding Google Maps API into QWebView using .html, dataset used in .html is changed during runtime, can't update .html embedded into QWebView.
      Qt WebKit • javascript qwebkit google maps reloading error updateinruntime • • kayrauzun  

      1
      0
      Votes
      1
      Posts
      1660
      Views

      No one has replied

    • UNSOLVED QWebKit and hdhomerun streaming
      Mobile and Embedded • qml qwebkit video streaming • • Mark81  

      10
      0
      Votes
      10
      Posts
      3859
      Views

      Hi, I'm having the same issue regarding the QML Video RTP source : GStreamer; Unable to pause - "rtp://@231.1.128.20:8854" No URI handler implemented for \"rtp\"." Did you eventually got this video stream to run on Qt @Mark81 ? I'm also guessing some unsupported, most probably lacking gstream stuff.. still looking into it. I use Qt5.7.0
    • SOLVED Problems getting QtWebKit to Ubuntu
      General and Desktop • ubuntu 14.04 qwebkit • • antonlindgren  

      2
      0
      Votes
      2
      Posts
      853
      Views

      I installed 5.4 instead of 5.5, and now it appears to be working :)
    • UNSOLVED Qt 5.3.2 + gstreamer 1.0
      Mobile and Embedded • qmultimedia qwebkit qt 5.3.2 • • Morix Dev  

      1
      0
      Votes
      1
      Posts
      769
      Views

      No one has replied

    • UNSOLVED PDF export heat up i.mx6
      Mobile and Embedded • qprinter i.mx6 qwebkit • • PhTe  

      6
      0
      Votes
      6
      Posts
      2270
      Views

      Hey, thanks for your help. It figured out, that the problem was not the export process. Sorry :) It was the message window i show when the export is complete. I dont know why but it caused the gpu to heat up even if it was closed.
    • SOLVED Parsing HTML content
      General and Desktop • html qwebkit • • Bagavathi  

      5
      0
      Votes
      5
      Posts
      1791
      Views

      Good point, I should have added that if it's only to parse html tables, the XML parser should be enough.
    • Qwebkit links with .org do not work - SOLVED
      Qt WebKit • qt5.4 qwebkit qwebpage windows desktop • • UKBasedUser  

      4
      0
      Votes
      4
      Posts
      1708
      Views

      Solved from https://forum.qt.io/topic/17139/solved-how-to-use-ssl-support-without-manualy-building-qt-libraries/6 added CONFIG += openssl-linked copied from the QtSdk the (MingW) libeay32.dll and ssleay32.dll in the same folder as the executable
    • QWebView - need to use either firefox or google chrome as user agent?
      General and Desktop • qwebview qwebkit user agent • • nikki16  

      1
      0
      Votes
      1
      Posts
      857
      Views

      No one has replied

    • QWebEngineView set proxy
      QtWebEngine • qt5 qwebengineview qwebengine qwebkit proxy • • UndeadBlow  

      3
      0
      Votes
      3
      Posts
      2543
      Views

      @ThatDud3 well, Qt 5.5 have been released, but I don't see nothing about proxy in QWebEngineSettings XD It is real problem...
    • Web crawler app using QWebPage
      General and Desktop • qwebkit qwebpage web page web crawler • • jelicicm  

      16
      0
      Votes
      16
      Posts
      6411
      Views

      @jelicicm After some analysis I'm to unsure about the detailed working of it. However QXmlStreamReader can help you in extracting the links which you can probably use in your web crawler implemention as shown in that example. Also to implement something as simple as searching you can instead resort to QTextStream. Set the html content as byte array to it. The iterate over it, extract the line and check if the particular word exists in it using QString::contains.