1. 09 Sep, 2014 - 1 commit
  2. 29 Aug, 2014 - 1 commit
  3. 30 Jul, 2014 - 1 commit
    • Allan Sandfeld Jensen's avatar
      Add api to get the favicon URL · a99922af
      Allan Sandfeld Jensen authored
      
      Adds one of the missing pieces of the QWebFrame and QWebView APIs.
      Unlike the QtWebKit version this only fetches the favicon URL, and not
      the icon. This is because we do not want to implement an icon database,
      and that the icon would be loaded asynchronous anyway, bringing no
      guarantee to be a valid icon/image yet.
      
      Change-Id: I227311ae3676044da850e687b82bee752b5079c8
      Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
      a99922af
  4. 29 Apr, 2014 - 1 commit
  5. 15 Apr, 2014 - 1 commit
    • Jocelyn Turcotte's avatar
      Cleanup the QtWebEngineWidgets public headers and API · beb4ff33
      Jocelyn Turcotte authored
      
      Headers were left intact to leave a trace of the evolution compared
      to the QtWebKit API and to make it easier to work until we had a
      basic subset of the API implemented.
      
      With the upcoming release, this patch removes this convenience in the
      aim of starting polishing the headers and the documentation for the
      upcoming release.
      
      Change-Id: Iae436b4ec041d771a7002575e122835802bc9f3e
      Reviewed-by: default avatarMichael Bruning <michael.bruning@digia.com>
      beb4ff33
  6. 19 Mar, 2014 - 1 commit
  7. 28 Feb, 2014 - 1 commit
    • Jocelyn Turcotte's avatar
      Add HTTP and proxy authentication signals directly to QWebEnginePage · 970ccc7f
      Jocelyn Turcotte authored
      
      This allows handling calls that would be signaled by QNetworkAccessManager
      in QtWebKit.
      This pulls QtNetwork as a dependency of the QtWebEngineWidgets module
      to be able to use QAuthenticator, but isn't required otherwise.
      
      Only the request URL is available in the case of HTTP authentication
      (no access to HTTP request headers that the QNetworkReply would allow)
      and only the proxy host name in the case case of proxy authentication.
      
      This keeps the API synchronous the same way, as QtWebKit did, in
      favor of source compatibility at the cost of requiring a modal
      dialog, even though the implementation doesn't require it.
      
      Change-Id: I9e021def38e6107c9e66d2de8f86bd0328d543df
      Reviewed-by: default avatarMichael Bruning <michael.bruning@digia.com>
      970ccc7f
  8. 20 Aug, 2013 - 3 commits
  9. 19 Aug, 2013 - 1 commit
  10. 31 Jul, 2013 - 1 commit
    • Pierre Rossi's avatar
      Split out the Widgets and QtQuick integration · 67d042d0
      Pierre Rossi authored
      
      This is the first step to making proper Qt Modules out of QtWebEngine.
      The Widgets integration becomes a proper C++ Qt Module while we make
      the QtQuick side a QML plugin for now (could probably be promoted if
      the need arises).
      
      Code-wise, this means the introduction of a WebContentsAdapterClient
      interface that is subclassed by the private implementation of our API
      classes for delegation of things that are UI specific. Functionality
      from WebContents and the like is exposed via the WebContentsAdapter.
      
      Change-Id: I4ca3395b9fe8502a24e36002cfd5af44067bb6e8
      Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
      67d042d0
  11. 19 Jun, 2013 - 2 commits
  12. 18 Jun, 2013 - 1 commit
  13. 11 Jun, 2013 - 1 commit
    • Jocelyn Turcotte's avatar
      Get rid of BlinqApplication. · e67c21a0
      Jocelyn Turcotte authored
      Rename the class to WebEngineContext and keep it as a ref-counted member
      of pages instead. Also:
      - Change the user-agent product to QtWebEngine
      - Don't pass actual command line arguments to Chromium anymore
      - Allow attaching to the event loop through Before/AfterRun instead of blocking
      e67c21a0
  14. 10 Jun, 2013 - 1 commit
  15. 06 Jun, 2013 - 1 commit
    • Jocelyn Turcotte's avatar
      Properly implement a QWidget and QtQuick API · 5bf14ccc
      Jocelyn Turcotte authored
      This layers things properly to be able to implement the UI in the
      example application instead of directly in shell_qt.cpp.
      
      This is still using global variables to allow the Shell platform
      code to do callbacks to the API classes. This should go away once
      we properly implemented a WebContentsDelegate.
      5bf14ccc
  16. 05 Jun, 2013 - 1 commit
    • Zeno Albisser's avatar
      Implement support for QtQuick2. · db4b7526
      Zeno Albisser authored
      The current preliminary implementation uses the QQuickPaintedItem.
      
      The RasterWindow is being replaced by an abstract NativeViewQt
      class, which can be instantiated as QWidgetNativeView or QQuickNativeView.
      The NativeViewContainerQt builds a wrapper around an instance of these classes
      and serves as a common api towards chromium.
      
      Due to the current design where the view is being created by the shell,
      we introduce a browser_window.qml which provides a very basic browser UI.
      The content is then being injected into an item within that browser window.
      
      Just executing the example the "regular" way will launch the Widgets example.
      To launch the QtQuick2 example, the environment variable QQUICKWEBENGINE must
      be defined.
      db4b7526
  17. 31 May, 2013 - 1 commit
  18. 15 May, 2013 - 1 commit