1. 11 Apr, 2017 - 1 commit
  2. 26 Jan, 2017 - 1 commit
  3. 10 Jan, 2017 - 1 commit
  4. 19 Dec, 2016 - 1 commit
  5. 29 Nov, 2016 - 1 commit
  6. 01 Oct, 2016 - 1 commit
  7. 22 Sep, 2016 - 1 commit
  8. 31 Aug, 2016 - 2 commits
    • Michal Klocek's avatar
      Add context menu request to qml api · 3f73e471
      Michal Klocek authored
      
      Introduce qml APIs to support custom context menus.
      
      [ChangeLog][QtWebEngine][QML] Added ability to show custom
      context menu.
      
      Task-number: QTBUG-52554
      Change-Id: Ief0cbbbf221f4c6849e16bbba7417dccee59ad61
      Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
      3f73e471
    • Michal Klocek's avatar
      Add dialog requests to qml api · 3cbe59e2
      Michal Klocek authored
      
      Introduce qml APIs to support custom dialogs:
       * http and proxy authentication
       * javascript dialogs
       * file pickers
       * color pickers
       * form validation messages
      
      [ChangeLog][QtWebEngine][QML] Added ability to provide custom dialogs
      for HTTP and proxy authentication, JavaScript alerts, file and color
      picking, and form validation messages.
      
      Task-number: QTBUG-51190
      Change-Id: I559ca59264750feb36ba7d3dba0bf0647509306d
      Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
      3cbe59e2
  9. 02 Aug, 2016 - 1 commit
  10. 02 Jul, 2016 - 1 commit
  11. 13 Jun, 2016 - 1 commit
  12. 23 May, 2016 - 1 commit
    • Frank Meerkoetter's avatar
      Fix compile issue · fd247c68
      Frank Meerkoetter authored
      
      Building qtwebengine failed with Yocto2.1/GCC5.3 with an IMX.6 ARM
      target. Adding the include fixed the issue.
      
      compiling .moc/moc_qquickwebengineview_p.cpp
      .moc/moc_qquickwebengineview_p.cpp: In static member function 'static void QQuickWebEngineView::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)':
      .moc/moc_qquickwebengineview_p.cpp:866:72: error: invalid use of incomplete type 'class QColor'
               case 15: *reinterpret_cast< QColor*>(_v) = _t->backgroundColor(); break;
                                                                              ^
      In file included from /data/projects/fsl-community-bsp/build/tmp/sysroots/wandboard/usr/include/qt5/QtCore/qobject.h:48:0,
                       from /data/projects/fsl-community-bsp/build/tmp/sysroots/wandboard/usr/include/qt5/QtCore/QObject:1,
                       from .moc/../api/qquickwebenginescript_p.h:52,
                       from .moc/../api/qquickwebengineview_p.h:52,
                       from .moc/moc_qquickwebengineview_p.cpp:9:
      /data/projects/fsl-community-bsp/build/tmp/sysroots/wandboard/usr/include/qt5/QtCore/qmetatype.h:1886:1: note: forward declaration of 'class QColor'
      
      Change-Id: If58315d4c0b5087705687ae582ffe86702063937
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      fd247c68
  13. 06 May, 2016 - 1 commit
  14. 20 Apr, 2016 - 1 commit
  15. 18 Apr, 2016 - 1 commit
    • Michal Klocek's avatar
      Update spellchecker APIs · 7d172fcf
      Michal Klocek authored
      
      * marks new properties in QQuickWebEngineProfile as FINAL
      * removes QT_NO_SPELLCHECK from API headers
      * renames spellCheckLanguages() to availableDictionaries()
      * removes "togle spellcheck" methods and actions
      * use WEBENGINE_CONFIG instead of CONFIG for disable the feature at
      compile time: WEBENGINE_CONFIG+=no_spellcheck
      
      Done-With: Peter Varga <pvarga@inf.u-szeged.hu>
      Task-number: QTBUG-52371
      Change-Id: I8c8eff497b9e7afe0cec2edc97dec248151487f2
      Reviewed-by: default avatarMichael Brüning <michael.bruning@theqtcompany.com>
      7d172fcf
  16. 13 Apr, 2016 - 2 commits
  17. 09 Apr, 2016 - 1 commit
  18. 08 Apr, 2016 - 1 commit
  19. 16 Mar, 2016 - 1 commit
  20. 16 Feb, 2016 - 1 commit
  21. 01 Feb, 2016 - 2 commits
    • Michal Klocek's avatar
      Add spell checker support · 4713387c
      Michal Klocek authored
      
      Integrate chromium spell checker:
      * add spellchecker and dependencies to build
      * underline misspelled words in html text areas
      * right-click context menu shows up to 4 options to
        correct the misspelled word
      * toggle spell check from context menu
      * add new qml and widget api calls to qwebengineprofile
        to enable/disable spell check, select spell check language,
        get list of supported languages/dictionaries
      * register new qml spell check properties for QtWebEngine 1.3
      * CONFIG+="no_spellcheck" to remove spellcheck support
      
      Change-Id: Ie61434ab9493597d7759a6f33794f6859c4e3a4c
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>
      4713387c
    • Jani Heikkinen's avatar
      Unify license header usage. · 676b9f24
      Jani Heikkinen authored
      
      Update files using old header.LGPL3 to use header.LGPL
      Update files using old header.FLD to use new header.FDL
      Update files using old header.BSD to use new header.BSD
      
      Change-Id: I36a67aaa8c3ca6c7946308defc9c03c3571a7d23
      Reviewed-by: default avatarKai Koehne <kai.koehne@theqtcompany.com>
      676b9f24
  22. 15 Jan, 2016 - 1 commit
  23. 08 Jan, 2016 - 1 commit
  24. 07 Jan, 2016 - 1 commit
  25. 03 Jan, 2016 - 1 commit
  26. 17 Dec, 2015 - 1 commit
    • Michal Klocek's avatar
      Fix fullscreen mode in qml api · 1c547c6a
      Michal Klocek authored
      
      Current implementation was not working correctly
      for quicknanobrowser when entering and leaving
      fullscreen video, in cases where the browser itself
      was already fullscreen. Use ExitFullScreen
      to leave fullscreen in demo code. Use onFullScreenRequested
      handler to track if fullscreen mode is on.
      
      Change-Id: I022d5e830b189897d34a9a8747381d041101c692
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>
      1c547c6a
  27. 15 Dec, 2015 - 1 commit
  28. 11 Dec, 2015 - 1 commit
  29. 16 Nov, 2015 - 2 commits
  30. 19 Oct, 2015 - 1 commit
  31. 12 Oct, 2015 - 3 commits
  32. 09 Oct, 2015 - 2 commits
  33. 10 Sep, 2015 - 1 commit