Navigation

    Qt Forum

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

    • SOLVED QWebEngineView fails to access through sender()
      General and Desktop • c++ qwebengineview qobjectsender • • coyoteazul  

      4
      0
      Votes
      4
      Posts
      51
      Views

      oh my god! I can't believe i was so blind! Thanks a lot to both! I switched the connection back to QWebEngineView. I don't even remember why I thought that sending the signal from QWebEnginePage was a good idea, since i have to delete the pointer not to let it hanging. Now it seems to work, but pix comes out blank. Perhaps loadfinished is too quick, and triggers before javascript has finished generating the document? Is there a slower signal? Or perhaps a way to give js a tad more of time to load before calling render? Before using signals and slots I tried to wait it with a loop, but it seems the loop blocks js.
    • SOLVED Unable to load HTTPS url using QWebEngineView
      General and Desktop • qwebengineview qwebengine https qwebenginepage ssl error • • Ryna  

      5
      1
      Votes
      5
      Posts
      474
      Views

      https://stackoverflow.com/questions/58875159/how-to-ignore-ssl-certificate-errors-with-qwebengineview link helped me to resolve the issue. Now HTTPS page load after ignoring ssl warning is fine. Thanks for ideas :)
    • SOLVED How can I use a function from an external/custom .js file with QWebEngineView?
      General and Desktop • javascript qwebengineview qrc qwebenginepage html5 • • Slyzer  

      4
      0
      Votes
      4
      Posts
      451
      Views

      Ok so I managed to import the html by modeling my code similar to the example with: QString code = QStringLiteral("qt.jQuery('#first_page').load('html/first_page.html');"); //you can even nest it with: QString code = QStringLiteral( "qt.jQuery('#first_page').load('html/first_page.html', ()=>{" "qt.jQuery('#border_content').load('html/border_content.html', ()=>{" //some other html "qt.jQuery('#last_page').load('html/last_page.html');" "});" "});" ); unfortunately I now cannot use the qwebchannel.js script anymore and my css gets screwed :( even loading it with: QFile script_file(":/qtwebchannel/qwebchannel.js"); if(!script_file.open(QIODevice::ReadOnly)) qDebug()<<"Couldn't load Qt's QWebChannel API!"; QString qt_script = QString::fromLatin1(script_file.readAll()); script_file.close(); view->page()->runJavaScript(qt_script); did not help. Since it is a small project and I am on a short deadline right now I will put everything in one html file and mark this question als solved.
    • SOLVED QWebEngineView can not find javascript file in release but ok in Debug
      QtWebEngine • javascript qwebengineview qwebengine reference error • • Hunglx  

      2
      0
      Votes
      2
      Posts
      497
      Views

      I finally found the problème from qt documentation. My solution is to add : QTQUICK_COMPILER_SKIPPED_RESOURCES += testgooglemapwebengine.qrc in my .pro file.
    • UNSOLVED QWebEngineView closing
      QtWebEngine • qwebengineview oauthurlrequest • • GDamiano  

      1
      0
      Votes
      1
      Posts
      522
      Views

      No one has replied

    • UNSOLVED QWebEngineView - Disable auto word-wrap of tooltip (title)
      General and Desktop • qwebengineview tooltip wordwrap • • SamurayH  

      4
      0
      Votes
      4
      Posts
      552
      Views

      I've decided to report this issue as a bug here. Was you able to reproduce the issue ?
    • UNSOLVED QWebEngineView high DPI awareness
      QtWebEngine • qtwebengine qwebengineview dpi chrome • • mbise1993  

      1
      0
      Votes
      1
      Posts
      435
      Views

      No one has replied

    • UNSOLVED Override drag operation for QWebEngienView
      QtWebEngine • qtwebengine qwebengineview • • popov895  

      1
      0
      Votes
      1
      Posts
      226
      Views

      No one has replied

    • UNSOLVED QWebEngineView doesn't work with paid proxy.
      General and Desktop • c++ qwebengineview qt 5.11 • • arkadiusz97  

      5
      0
      Votes
      5
      Posts
      2209
      Views

      @dheerendra said in QWebEngineView doesn't work with paid proxy.: Since authentication is required, did you catch the signal proxyAuthenticationRequired from webEngine page ? I know now, that i have to use connect method to catch this signal, but i don't know, what do i have to do after.
    • UNSOLVED QWebView vs QWebEngineView Javascript performance.
      QtWebEngine • javascript qwebview qwebengineview • • Jersak  

      2
      0
      Votes
      2
      Posts
      1007
      Views

      Anyone has any idea?
    • UNSOLVED Qt 5.6 how to use QWebEngineView in my custom widget plugin?
      QtWebEngine • qwebengineview custom widget qtplugin • • ricklxm  

      1
      0
      Votes
      1
      Posts
      505
      Views

      No one has replied

    • UNSOLVED QWebEngineView freezes while autoscrolling a web page
      QtWebEngine • c++ qwebengineview qt5.9 scrolling web page • • lmofallis  

      1
      0
      Votes
      1
      Posts
      772
      Views

      No one has replied

    • Get error with QWebEngineView
      General and Desktop • error qwebengineview output • • HenrikSt.  

      4
      0
      Votes
      4
      Posts
      2176
      Views

      These messages aren't critical, you can ignore them. What's important is, that you don't crash the application anymore.
    • Program crashed but I don't know how to fix
      General and Desktop • error qwebengineview qml webview • • HenrikSt.  

      6
      0
      Votes
      6
      Posts
      1437
      Views

      The problem is the same as in your other thread: you need to take care of the destruction order of your qobjects.
    • UNSOLVED QWebEngineView Flickers on Resize
      General and Desktop • qwidget resize qwebengineview • • Erika  

      2
      0
      Votes
      2
      Posts
      1256
      Views

      Hi. already fixed in https://bugreports.qt.io/browse/QTBUG-46074
    • UNSOLVED QWebEnginePage contextmenu internalization - how?
      QtWebEngine • qt 5.7 qwebengineview • • vbox  

      1
      0
      Votes
      1
      Posts
      631
      Views

      No one has replied

    • UNSOLVED How to make qwebengineview support fullscreen?
      QtWebEngine • qwebengineview qt5.7 video fullscree • • bigcat  

      1
      0
      Votes
      1
      Posts
      894
      Views

      No one has replied

    • UNSOLVED QWebEngineView fails
      QtWebEngine • qwebengineview windows 7 qt5.7 • • allenck  

      1
      0
      Votes
      1
      Posts
      936
      Views

      No one has replied

    • SOLVED can't get JSON file from QNetworkReply
      General and Desktop • qnetworkaccessm json qwebengineview qnetworkrequest qnetreply • • nazimGT  

      2
      0
      Votes
      2
      Posts
      3567
      Views

      resolved !! i've chenged m_pNetworkAccessManager->get(request); by request.setRawHeader("Content-Type", "application/x-www-form-urlencoded"); QByteArray par=""; m_pNetworkAccessManager->post(request,par);
    • UNSOLVED QWebEngine DemoBrowser retrieve cookies and current URL
      General and Desktop • qwebengineview qwebengine qwebenginepage cookies • • Maxx Dovahkiin  

      1
      0
      Votes
      1
      Posts
      1968
      Views

      No one has replied

    • UNSOLVED Qt 5.6 WebEngine / QWebEngineView not working anymore (works fine with Qt 5.5)
      General and Desktop • qtwebengine qwebengineview • • Nando  

      2
      0
      Votes
      2
      Posts
      1822
      Views

      I had the same question as you,I think ,maybe your project is short of the '.js' file. You can add the '.js' file to the project-resource , then have a try. By the way ,In my project , It has the ',js' file,but there is still a quetion. In my projtct,I want load a HTML that use google maps api and show maps offline ,oc course I have doemloaded the map titles .the HTML can work in any browser, such as chrome, IE ,firefox and so on,but the html doesnot work in Qt5.6.0 which I use the QWebEngineWidget class. The error is : js: Uncaught TypeError:google.maps.LatLng is not a function js: Uncaught TypeError:google.maps.MAP is not a function So,this is my question,I haven't solved。
    • UNSOLVED Problem with running the application with QWebEngineView.
      QtWebEngine • qwebengineview qwebengine • • Harrix  

      4
      0
      Votes
      4
      Posts
      2942
      Views

      @Hans-Dijkema I have yet to try Qt 5.7 beta, but... it seems to me like you haven't installed QtWebEngine?...
    • UNSOLVED How to set a viewport with QtWebEngine?
      QtWebEngine • qwebengineview qwebengine viewport • • domusmaximus  

      1
      0
      Votes
      1
      Posts
      827
      Views

      No one has replied

    • Pass custome data from C++ to JS (QWebChannel)
      QtWebEngine • qwebengineview chromium qwebchannel blink custome data • • cr0_  

      1
      1
      Votes
      1
      Posts
      1453
      Views

      No one has replied

    • QWebEngineview don't support QWebChannel?
      QtWebEngine • qwebengineview qwebchannel • • kkkiio  

      1
      0
      Votes
      1
      Posts
      875
      Views

      No one has replied

    • Keyboard shortcuts for QWebEngineView navigation
      QtWebEngine • c++ qwebengineview • • ospf  

      5
      0
      Votes
      5
      Posts
      1584
      Views

      @p3c0 That worked, thanks for your help.
    • QWebEngineView taking up all the RAM without sight of cleaning it
      QtWebEngine • qt5.5 qwebengineview memory managmen ram • • bughtoo  

      2
      0
      Votes
      2
      Posts
      1088
      Views

      Hi and welcome to devnet, If you can reproduce this easily with a minimal compilable example, you should go to the bug report system to see if it's something known. If not please consider opening a new report providing that example and the guidelines to trigger the bug.
    • QWebEnginePage unable to connect HTTPS server
      QtWebEngine • qt5 qt5.5 qwebengineview qwebengine • • han_123  

      1
      0
      Votes
      1
      Posts
      906
      Views

      No one has replied

    • WebEngine - Screen Tearing
      QtWebEngine • qt5 qwebengineview • • jmorris_nv  

      1
      0
      Votes
      1
      Posts
      555
      Views

      No one has replied

    • WebGL
      QtWebEngine • qwebview qwebengineview webgl cesium • • kmbar2013  

      2
      0
      Votes
      2
      Posts
      2512
      Views

      Just an FYI, disabling network adapters (used by virtual machines) in Device Manager solved the sluggishness for me.
    • QWebEngineView set proxy
      QtWebEngine • qt5 qwebengineview qwebengine qwebkit proxy • • UndeadBlow  

      3
      0
      Votes
      3
      Posts
      2266
      Views

      @ThatDud3 well, Qt 5.5 have been released, but I don't see nothing about proxy in QWebEngineSettings XD It is real problem...
    • [Solved]Can QWebEngineView load and play local multimedia files?
      General and Desktop • qwebengineview • • unixman  

      8
      0
      Votes
      8
      Posts
      5044
      Views

      AFAIK yes, but you still need a build of ffmpeg that supports h.264.
    • Issue with QVBoxLayout while adding a QWebEngineView and QQuickView
      General and Desktop • qwebengineview • • ejos  

      1
      0
      Votes
      1
      Posts
      778
      Views

      No one has replied

    • How to superimpose a QML over the QWebEngineView
      General and Desktop • qml qwebengineview • • ejos  

      1
      0
      Votes
      1
      Posts
      714
      Views

      No one has replied

    • QQuickView and QWebEngineView
      General and Desktop • qwebengineview qquickitem • • ejos  

      1
      0
      Votes
      1
      Posts
      963
      Views

      No one has replied

    • Change html in all frames in QWebEngineView
      General and Desktop • qwebengineview qwebengine qwebengine netw • • andbiller  

      1
      0
      Votes
      1
      Posts
      684
      Views

      No one has replied

    • http proxy problem of QWebEngineView
      General and Desktop • qwebengineview • • Peng  

      4
      0
      Votes
      4
      Posts
      1585
      Views

      QWebEngineView use IE's proxy settings, just like google chrome