Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    QtWebEngine and Windows RT

    Mobile and Embedded
    2
    9
    1969
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      brcontainer last edited by

      QtWebEngine support "Windows RT"?

      Or microsoft still blocks "non-microsoft technologies"?
      If such a blockage still exists, it would be possible to use the library's own "WinRT" (InternetExplorer / Trident) with "QWidgets"?

      Thanks

      QT project: https://github.com/brcontainer/qt-helper

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi,

        From the code source of QtWebEngine, it looks like WindowsRT is not in the supported platform list currently. However checking with the guys on the QtWebEngine mailing list might get you a more thorough answer.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply Reply Quote 0
        • B
          brcontainer last edited by

          Thanks SGaist! Other question:

          It is possible to "control" the "network" from "motor" native WinRT (trident) and XCODE (webkit cocoa) using "QNetWorkAccessManager"?

          Thanks!

          QT project: https://github.com/brcontainer/qt-helper

          1 Reply Last reply Reply Quote 0
          • SGaist
            SGaist Lifetime Qt Champion last edited by

            What do you mean by "control" the "network" ?

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            1 Reply Last reply Reply Quote 0
            • B
              brcontainer last edited by

              I need to redeploy the QNetWorkAccessManager for QtWebEngine (and Cocoa) page.

              Note: I'm downloading the "qt5.4-rc" I have to test all possibilities.

              Thanks!

              QT project: https://github.com/brcontainer/qt-helper

              1 Reply Last reply Reply Quote 0
              • SGaist
                SGaist Lifetime Qt Champion last edited by

                Sorry, I still don't follow… What do you mean by redeploy the QNetworkAccessManager ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply Reply Quote 0
                • B
                  brcontainer last edited by

                  Forgive me I have not been able to speak out, and thanks for their efforts in trying to understand my question.

                  I need overwrite the "QNetWorkAccessManager" class, using like this in QtWebkit:

                  network.cpp

                  @NetWork::NetWork(QObject *parent) :
                  QNetworkAccessManager(parent)
                  {
                  //Configure
                  }

                  QNetworkReply * NetWork::createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData) {
                  //Something...
                  }@

                  webpage.cpp

                  @#include "network.h"
                  ...
                  NetWork *net = new NetWork();
                  ...
                  this->setNetworkAccessManager(net);@

                  I wonder if it is possible to control the "network" in the webpage of QtWebEngine, Cocoa and WinRT (motor trident).

                  Thanks

                  QT project: https://github.com/brcontainer/qt-helper

                  1 Reply Last reply Reply Quote 0
                  • SGaist
                    SGaist Lifetime Qt Champion last edited by

                    For the QNetworkAccessManager part, this "wiki entry":http://qt-project.org/wiki/QtWebEnginePortingFromQtWebKit might be of interest

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply Reply Quote 0
                    • B
                      brcontainer last edited by

                      Thanks SGaist,

                      Qt WebEngine does not interact with QNetworkAccessManager, but I have an idea, I create a HTTP Proxy in same QT project and set "configs" of proxy in my WebView, what do you think?

                      My intention is to handle requests before they reach the server, and also handle some answers, such as when the user tries to use the browser to access local folders (in this situation I plan to create a customized page to access the folders) and even viewer "FEEDS"

                      If you believe that there is any other way to handle the "network" of "QtWebEngine" let me know, grateful.

                      QT project: https://github.com/brcontainer/qt-helper

                      1 Reply Last reply Reply Quote 0
                      • First post
                        Last post