Skip to content

QtWebEngine

Discussions and questions on QtWebEngine
1.3k Topics 4.0k Posts
  • QWebEngine static

    1
    0 Votes
    1 Posts
    725 Views
    No one has replied
  • Set Useragent?

    4
    0 Votes
    4 Posts
    2k Views
    JKSHJ
    Ah sorry... I didn't notice you were using Qt WebEngine. I don't know if that's possible, sorry. If you don't get any answers here, try asking at the Interest mailing list (you need to subscribe first).
  • QtWebEngine on Android/iOS

    7
    0 Votes
    7 Posts
    6k Views
    V
    There is a QtWebView which is probably will do the job, but so far there in not much controls to control
  • SIGABRT on Linux with FancyBrowser example [SOLVED]

    5
    0 Votes
    5 Posts
    2k Views
    UndeadBlowU
    @ThatDud3 that works, thanks you.
  • How to use WebChannel from a c++ client

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    If you take the examples, it's a C++ Qt application which UI happens to be using HTML.
  • WebEngineView and navigator

    navigator webrtc javascript
    3
    0 Votes
    3 Posts
    2k Views
    SGaistS
    Hi, QtWebEngine is a very new module and since this forum is community driven, it'll need some time to build the knowledge around it. You can also check the interest mailing list for help.
  • QWebEngine - Ram increased when playing video.

    1
    0 Votes
    1 Posts
    647 Views
    No one has replied
  • Project ERROR: Unknown module(s) in QT: quick

    unknown module
    3
    0 Votes
    3 Posts
    2k Views
    V
    @Leonardo Thanks a lot! Somehow OpenGL requirement skipped through my nets. All builds well now.
  • Enabling spellcheck in QTWebEngine

    1
    0 Votes
    1 Posts
    936 Views
    No one has replied
  • How to specify chrome flags in quicknanobrowser?

    2
    1 Votes
    2 Posts
    1k Views
    T
    If you mean command-line parameters perhaps the answer here could shed a light... http://forum.qt.io/topic/52375/qwebengine-how-to-disable-chrome-sandbox-using-quicknanobrowser-qt5-4-1
  • WebRTC in QtWebEngine

    webrtc
    2
    1 Votes
    2 Posts
    2k Views
    SGaistS
    Hi and welcome to devnet, AFAIK, there's no such example available. basysKom has done something shown here but I don't know if there's any source available
  • Project ERROR: Unknown module(s) in QT: webenginewidgets

    6
    1 Votes
    6 Posts
    32k Views
    SGaistS
    @musimbate The QtWebEngine module suffers the same restrictions as the QtWebKit for Android and iOS. For a list of currently supported platforms, have a look here
  • QWebEngineView print() method?

    2
    0 Votes
    2 Posts
    3k Views
    p3c0P
    @mdew Looking at this and this it seems we wont have it in Qt 5.5 too.
  • Qt5WebEngineCore and calloc

    webe calloc 5.4.1
    2
    0 Votes
    2 Posts
    2k Views
    A
    I have created a bug for this and will see where it goes from there. QTBUG-45459
  • LocalStorage and Javascript Interface support

    localstorage javascript interface
    2
    0 Votes
    2 Posts
    2k Views
    A
    @amorawski Hi, if anybody would be interested in this - I didn't find any other way then by using native system browsers. Basically you need to extend the QQuickItem, then on iOS you can create the browser using ObjectiveC (using PlatformNativeInterface), on Android you need to use JNI (so you create native view on top of the QtView). Cool thing is that even animations work in both cases (on android you need to synchronize WebView position with the QQuickItem position beeing rendered on the QtView). For communication with javascript - for android you can use addJavascriptInterface, for iOS the best solution I have found is passing the params though URL on hidden iframe, and catching Load event on native side, fetching params from the URL). Cheers, art.
  • WebView on the top of al lwindows

    1
    0 Votes
    1 Posts
    608 Views
    No one has replied
  • Render Qt Application in web browser

    13
    0 Votes
    13 Posts
    6k Views
    C
    If i'm not mistaken, COM is a microsoft spec, so other may compiler implement it differently... In fact i've a project that use COM that use some features that are only present with the windows SDK, if use MingGW i get tons of errors...
  • 0 Votes
    2 Posts
    2k Views
    G
    There is some additional information on this issue in the JIRA at https://bugreports.qt.io/browse/QTBUG-45122
  • QWebEngine - Deploy problem (QWebProcess.exe)

    3
    1 Votes
    3 Posts
    3k Views
    M
    @yubb You're having problem deploying too? I guess they should make a wiki/guide with clear instructions on how to deploy it. It's a bit complex ATM and not automated, I went back to using QWebKit for my browser until it's easier. Good luck
  • 1 Votes
    2 Posts
    3k Views
    T
    AFAIK there is no way to do this in Qt 5.4.1 I'm also waiting for an option to pass command line parameters to be able to set a proxy - that's the only way to set proxy in Blink (and I'm afraid we'll have to forget about proxyForUrl - not a big deal but... Webkit could be removed after 5.6 so we'll have to stick to old versions...) but you can try Qt 5.5 alpha announced here http://blog.qt.io/blog/2015/03/17/qt-5-5-alpha-available/ According to this section "Updated Qt WebEngine and Qt WebView" they are working on settings "Qt WebEngine now provides APIs for ... as well as settings" Honestly I don't know if that includes command line parameters/settings... BTW Still no binaries so you'll have to build it yourself or wait for beta HTH