summaryrefslogtreecommitdiffstats
path: root/lib/web_event_factory.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Split out the Widgets and QtQuick integrationPierre Rossi2013-07-311-3/+2
| | | | | | | | | | | | | | | 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: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
* Forward touch events.Jocelyn Turcotte2013-07-291-3/+45
| | | | | | | This lets the page receive touch events sent to the QWidget/QQuickItem. Change-Id: Ic358d4963d6af3df57d37a02b471cd442e8947ce Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Move API layer-only classes back from the shared static lib.Jocelyn Turcotte2013-06-191-0/+600
| | | | | | | Since ContentBrowserClientQt::OverrideCreateWebContentsView now takes care of using our Qt layer at runtime without relying on the static RenderWidgetHostView::CreateViewForWidget, we can now avoid linking this layer into the render process.
* Fix undefined symbols in debug builds.Jocelyn Turcotte2013-06-101-600/+0
| | | | | | | process uses the same code as lib and decides at runtime which code to run. Fix the debug build by making sure that all infrastructure code is available in both process and lib by building common code not shared directly through chromium sources in a separate static lib.
* Add standard license boilerplateSimon Hausmann2013-05-311-1/+1
|
* Event mapping fixupPierre Rossi2013-05-311-7/+455
| | | | | | | | | | among other things: - Better modifiers mapping - Mapping Qt key codes to windows keycodes thanks to the big-ass switch "salvaged" from WebCore's PlatformKeyboardEventQt - Subsequently introduce Copyrights and license header (the keycode mapping was BSD-licensed)
* Wheel eventsPierre Rossi2013-05-161-19/+86
|
* Basic event translationPierre Rossi2013-05-151-0/+85