1. 17 Oct, 2016 - 1 commit
  2. 07 Oct, 2016 - 1 commit
  3. 04 Oct, 2016 - 2 commits
  4. 23 Sep, 2016 - 1 commit
  5. 31 Aug, 2016 - 1 commit
  6. 28 Aug, 2016 - 1 commit
  7. 23 Aug, 2016 - 1 commit
  8. 02 Aug, 2016 - 1 commit
  9. 22 Jul, 2016 - 1 commit
  10. 13 Jul, 2016 - 1 commit
  11. 02 Jul, 2016 - 1 commit
  12. 20 Jun, 2016 - 2 commits
  13. 10 Jun, 2016 - 1 commit
  14. 07 Jun, 2016 - 1 commit
  15. 03 Jun, 2016 - 1 commit
  16. 24 May, 2016 - 2 commits
  17. 11 May, 2016 - 1 commit
    • Alexandru Croitor's avatar
      [Simplebrowser] Fix command line option parsing. · bdaea370
      Alexandru Croitor authored
      
      Passing just command line options to Chromium prevents loading of the
      initial startup url. This happens because the startup url is
      overridden by the last command line argument, which happens to be a
      Chromium option, thus an invalid URL.
      
      Fix consists in using the last command line argument as the loading url
      only if it can be parsed as valid url.
      
      Change-Id: I3615ef57b6eddc5098de79cba1b1ba6b6af193ef
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      bdaea370
  18. 10 May, 2016 - 1 commit
  19. 09 May, 2016 - 1 commit
  20. 04 May, 2016 - 2 commits
    • Michal Klocek's avatar
      Quick fix for not working history in demobrowser · 5dad8663
      Michal Klocek authored
      
      Current implementation of history manager seems to
      be not straight forward. To display history we use QList to keep
      history items plus model adapter in form of HistoryModel
      (QAbstractTableModel) plus HistoryFilterModel to avoid
      duplication, plus HistoryTreeModel to make a tree view with
      split for dates, plus TreeProxyModel on top to enable
      sorting. This approach unfortunately falls apart when items
      should be deleted from the model by treeView. This ends
      badly with corrupted cached values.
      
      This fix removes history items using history manager.
      It also abandons HistoryTreeModel since frequent sourceReset calls make
      it unusable. If split for dates it desired the better approach
      would be to implement history tree model already at HistoryManager
      level to avoid unmaintainable code.
      
      Task-number: QTBUG-49913
      Task-number: QTBUG-50255
      Change-Id: Ic9cebb52b623bd453119e11b5e907eaa90609e34
      Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@theqtcompany.com>
      5dad8663
    • Alexandru Croitor's avatar
      [Demobrowser] Fix command line option parsing. · 4c2a17d8
      Alexandru Croitor authored
      
      Passing just command line options to Chromium prevents loading of the
      initial startup url. This happens because the startup url is
      overridden by the last command line argument, which happens to be a
      Chromium option, thus an invalid URL.
      
      Fix consists in iterating through the command line arguments, until
      a non-option argument is found (doesn't start with a dash), and use
      that as the startup URL.
      
      Change-Id: Ibe2946b25b2e023c094a85e50d2ccbd5bfce2977
      Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>
      4c2a17d8
  21. 02 May, 2016 - 1 commit
  22. 21 Apr, 2016 - 3 commits
  23. 20 Apr, 2016 - 3 commits
  24. 15 Apr, 2016 - 2 commits
    • Kai Koehne's avatar
      SimpleBrowser: Fix loading icon · d49bc176
      Kai Koehne authored
      
      Change-Id: I008b649b43069978b6ce19b2faf5a557dd67c756
      Reviewed-by: default avatarMichal Klocek <michal.klocek@theqtcompany.com>
      d49bc176
    • Alexandru Croitor's avatar
      Demobrowser: Fix black screen after exiting fullscreen mode on OS X. · 4474bca6
      Alexandru Croitor authored
      
      When exiting fullscreen while viewing a full screen video, the video is
      replaced with a black screen, and does not switch back to the initial
      page.
      
      This happens when hide() is called on a native window while being in
      fullscreen, which hides the window, but does not exit full screen mode,
      thus showing a black screen.
      
      The workaround fix consists of two parts:
      1) Make sure to delete the fullscreen window object, to release the
      OS virtual screen it occupies (visible in mission control as a black
      rectangle).
      2) Hide and show the main page window, to force exit fullscreen mode.
      
      Change-Id: I364d4427e84957ed97f57a14e2cfc2c95aed6f48
      Task-number: QTBUG-52058
      Reviewed-by: default avatarKai Koehne <kai.koehne@theqtcompany.com>
      4474bca6
  25. 13 Apr, 2016 - 2 commits
  26. 08 Apr, 2016 - 1 commit
  27. 07 Apr, 2016 - 1 commit
  28. 31 Mar, 2016 - 1 commit
  29. 30 Mar, 2016 - 1 commit
    • Allan Sandfeld Jensen's avatar
      Add API for context menu data · 6454b6b2
      Allan Sandfeld Jensen authored
      
      For QWebEnginePage users to be able to make custom context menu or
      extend the default context menu, they need information about the
      context.
      
      This patch adds a QWebEngineContextMenuData class that contains
      contextual information when a context menu is being requested.
      
      This is also means we can finally generate a custom context-menu in
      the demobrowser the same way we did in QtWebKit.
      
      Task-number: QTBUG-51079
      Change-Id: I695b8cbf648bdc7f119b0ed51ab685cf2f8de8e4
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>
      6454b6b2
  30. 25 Mar, 2016 - 1 commit