Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. QtWebEngine and Windows RT

QtWebEngine and Windows RT

Scheduled Pinned Locked Moved Mobile and Embedded
9 Posts 2 Posters 2.3k Views
  • 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 Offline
    B Offline
    brcontainer
    wrote on last edited by
    #1

    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
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      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
      0
      • B Offline
        B Offline
        brcontainer
        wrote on last edited by
        #3

        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
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          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
          0
          • B Offline
            B Offline
            brcontainer
            wrote on last edited by
            #5

            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
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #6

              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
              0
              • B Offline
                B Offline
                brcontainer
                wrote on last edited by
                #7

                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
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #8

                  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
                  0
                  • B Offline
                    B Offline
                    brcontainer
                    wrote on last edited by
                    #9

                    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
                    0

                    • Login

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • Users
                    • Groups
                    • Search
                    • Get Qt Extensions
                    • Unsolved