Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. It's possible to add Widget with INTERNET EXPLORER renderer?
QtWS25 Last Chance

It's possible to add Widget with INTERNET EXPLORER renderer?

Scheduled Pinned Locked Moved General and Desktop
10 Posts 2 Posters 3.2k 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.
  • D Offline
    D Offline
    dcbasso
    wrote on last edited by
    #1

    Hello all,

    First off all thanks for everyone that's help me with this question and second I know the new Qt now support Webkit, but I really need to make use of IE engine inside Qt. The page that I will load only works on IE (at this moment only in IE, in a future release the page will work at any browser).

    So, it's possible to make use of IE renderer using some Qt Plugin/DLL or anything?
    If someone has something to share, please any tip will be very usefull!

    Thank again,

    1 Reply Last reply
    0
    • A Offline
      A Offline
      andre
      wrote on last edited by
      #2

      There is nothing pre-build. However, you may be able to leverage ActiveQt to embed an activeX Trident-based HTML view. The API won't be as convenient as using the Qt webkit integration though. Note that I did not try this myself.

      1 Reply Last reply
      0
      • D Offline
        D Offline
        dcbasso
        wrote on last edited by
        #3

        Thanks one more time Andre!

        I found this: http://qt-project.org/doc/qt-4.8/activeqt-webbrowser.html

        1 Reply Last reply
        0
        • D Offline
          D Offline
          dcbasso
          wrote on last edited by
          #4

          Appears very unstable the example, I found the example include in new QtCreator 5.1.1 and test... but the application crashs without doing anything!

          I will see more here... just a report about this feature and code example.

          Windows Message Error (Sorry it's in Portuguese):
          @
          Assinatura do problema:
          Nome do Evento de Problema: APPCRASH
          Nome do Aplicativo: webbrowser.exe
          Versão do Aplicativo: 0.0.0.0
          Carimbo de Data/Hora do Aplicativo: 524326aa
          Nome do Módulo de Falhas: Qt5Guid.dll
          Versão do Módulo de Falhas: 5.1.1.0
          Carimbo de Data/Hora do Módulo de Falhas: 521a5442
          Código de Exceção: c0000005
          Deslocamento de Exceção: 0001786a
          Versão do sistema operacional: 6.1.7601.2.1.0.768.2
          Identificação da Localidade: 1046
          Informações Adicionais 1: 0a9e
          Informações Adicionais 2: 0a9e372d3b4ad19135b953a78882e789
          Informações Adicionais 3: 0a9e
          Informações Adicionais 4: 0a9e372d3b4ad19135b953a78882e789@

          1 Reply Last reply
          0
          • D Offline
            D Offline
            dcbasso
            wrote on last edited by
            #5

            Andre, where I can send a Bug report about this example:

            http://qt-project.org/doc/qt-5.0/activeqt/activeqt-webbrowser.html

            Thanks a lot!

            1 Reply Last reply
            0
            • A Offline
              A Offline
              andre
              wrote on last edited by
              #6

              https://bugreports.qt-project.org/secure/Dashboard.jspa I guess

              1 Reply Last reply
              0
              • D Offline
                D Offline
                dcbasso
                wrote on last edited by
                #7

                I post the bug error there: QTCREATORBUG-10244.

                See you.

                1 Reply Last reply
                0
                • D Offline
                  D Offline
                  dcbasso
                  wrote on last edited by
                  #8

                  just to shared I resolve the problem above!
                  I remove all references of Progressbar and works "fine"!

                  @
                  MainWindow::MainWindow()
                  {
                  setupUi(this);

                  connect(addressEdit, SIGNAL(returnPressed()), actionGo, SLOT(trigger()));
                  connect(actionBack, SIGNAL(triggered()), WebBrowser, SLOT(GoBack()));
                  connect(actionForward, SIGNAL(triggered()), WebBrowser, SLOT(GoForward()));
                  connect(actionStop, SIGNAL(triggered()), WebBrowser, SLOT(Stop()));
                  connect(actionRefresh, SIGNAL(triggered()), WebBrowser, SLOT(Refresh()));
                  connect(actionHome, SIGNAL(triggered()), WebBrowser, SLOT(GoHome()));
                  connect(actionSearch, SIGNAL(triggered()), WebBrowser, SLOT(GoSearch()));
                  

                  // pb = new QProgressBar(statusBar());
                  // pb->setTextVisible(false);
                  // pb->hide();
                  // statusBar()->addPermanentWidget(pb);

                  WebBrowser->dynamicCall("Navigate(\"qt.nokia.com\")");
                  

                  }
                  @

                  @
                  void MainWindow::on_WebBrowser_ProgressChange(int a, int b)
                  {
                  // if (a <= 0 || b <= 0) {
                  // pb->hide();
                  // return;
                  // }
                  // pb->show();
                  // pb->setRange(0, b);
                  // pb->setValue(a);
                  }
                  @

                  1 Reply Last reply
                  0
                  • A Offline
                    A Offline
                    andre
                    wrote on last edited by
                    #9

                    [quote author="dcbasso" date="1380215697"]I post the bug error there: QTCREATORBUG-10244.

                    See you.
                    [/quote]

                    That's unfortunate. It is not a bug in QtCreator, but in the Qt documentation.

                    1 Reply Last reply
                    0
                    • D Offline
                      D Offline
                      dcbasso
                      wrote on last edited by
                      #10

                      Thanks Andre, it's my first time on bug report at Qt.
                      Leena Miettinen already changed my reported bug and now Friedemann Kleint is looking.

                      See you.

                      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