summaryrefslogtreecommitdiffstats
path: root/lib/qquickwebcontentsview.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix linking of QtWebEngineProcessAndras Becsi2013-07-041-1/+0
| | | | | | | | | | | | | | Since the global factory function content::CreateWebContentsView is also needed by the web process and we exclude all implementations we have to place the definition of it in the shared static lib. However, to prevent the need for moving platform layer classes back to the shared static lib we have to revert back to use ContentBrowserClient::OverrideCreateWebContentsView in the API layer to create our platform WebContentsViewQt and make the global factory function definition empty. Change-Id: I9d46524b22458b26a043c80df02b4a5fa7d91a55 Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
* Deduplicate data in private view classesAndras Becsi2013-06-251-6/+0
| | | | | | | | Move common data from WebContentsView private classes to the common base class WebContentsViewQtClient. Change-Id: I77484691a24d14403c8a6e434d6fb33ac557637e Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
* Extract QQuickWebContentsViewPrivate declaration into its own headerAndras Becsi2013-06-251-14/+1
| | | | | Change-Id: Iad87d10b1dca699a9b6b0ab60a4b90b19f515434 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
* Move RenderWidgetHostViewQt out of the content namespace.Jocelyn Turcotte2013-06-191-2/+2
|
* Allow the API class to provide the page widget rendering implementation.Jocelyn Turcotte2013-06-191-10/+29
| | | | | | | - Rename NativeViewQt to RenderWidgetHostViewQtDelegate to keep the context obvious. - Use an interface to handle the parenting instead of the NativeViewContainerQt mechanism that was needed with the Shell.
* Remove an unused member from WebContentsDelegateQt.Jocelyn Turcotte2013-06-191-1/+1
|
* Hide the p-impl pointer the same way as QObject to be able to use Q_D and Q_Q.Jocelyn Turcotte2013-06-191-4/+22
|
* define CONTENT_IMPLEMENTATION directly in the common .gypi filePierre Rossi2013-06-191-3/+0
|
* Use QQmlProperty::write instead of Binding item.Zeno Albisser2013-06-181-0/+2
|
* Add initial API layer for widgets.Zeno Albisser2013-06-181-1/+1
|
* Add initial API layer for QtQuick and connect the signals accordingly.Zeno Albisser2013-06-181-3/+45
|
* Quick cleanup.Jocelyn Turcotte2013-06-121-3/+1
|
* Start simplifying WebContentsDelegateQtPierre Rossi2013-06-121-2/+5
| | | | Mostly removing duplicated code so far.
* Get rid of BlinqApplication.Jocelyn Turcotte2013-06-111-0/+10
| | | | | | | | 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
* Use QUrl::fromUserInput in the QtQuick viewPierre Rossi2013-06-111-4/+1
|
* And shell is out !Pierre Rossi2013-06-101-2/+2
| | | | | | | Introduce a few more bits of our own very basic implementations (URLRequestContextGetter and NetworkDelegate subclasses). Still need to figure out the appropriate dependancies in blinq.gypi
* Cleanup unneeded global variables.Jocelyn Turcotte2013-06-101-8/+0
|
* Replace Shell with WebContentsDelegateQt.Zeno Albisser2013-06-101-15/+12
|
* Call WebContents directly in API classes instead of delegating through ShellJocelyn Turcotte2013-06-061-4/+12
|
* Properly implement a QWidget and QtQuick APIJocelyn Turcotte2013-06-061-0/+114
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.