| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
he focus policy
refactor duplicated code in the mouse and wheel event handlers that
sets the focus widget based on the widget's (or its ancestors) focus
policy
|
|
|
|
|
|
|
|
|
| |
QGraphicsView will convert QTouchEvents to QGraphicsSceneTouchEvents
and send them to the scene. The scene will then send the touch events
to the appropriate item. Like mouse event support, the item that
accepts the touch begin is the item that will get all subsequent touch
events. if no item accepts the touch begin event, then no touch events
are sent to any item (and mouse events are sent instead).
|
|
|
|
|
| |
like Qt::WA_AcceptTouchEvents, QGraphicsItems don't receive touch
events unless touch events are explicitly enabled.
|
|
|
|
|
|
| |
these events contain a list of all touch points. note that the
coordinates for QTouchEvent are floating point, since many devices
offer sub-pixel resolution.
|
|
|
|
|
| |
this attribute must be set for a widget to get touch events (otherwise
the widget will only get mouse events).
|
|
|
|
| |
GraphicsScene* equivalents)
|
|
|
|
| |
Reviewed-by: Andy Shaw
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
70604503a0365edaeff82ffad7b71f90641fa592 )
Changes in WebKit since the last update:
++ b/WebKit/qt/ChangeLog
2009-03-20 Erik L. Bunce <elbunce@xendom.com>
Reviewed by Tor Arne Vestbø.
Fix QWebPage::WebActions action states to more closely match when they are
actually applicable and remove erroneous documentation.
* Most WebActions implemented using editor commands now use the
Editor::Command::isEnabled() to control their availability.
* SelectAll is always enabled (since it's editor command is).
* SetTextDirection{} family of WebActions are available when canEdit() is true
and not just canEditRichly().
Fix and clarify documentation about the availability of various web actions.
* Api/qwebpage.cpp:
(QWebPagePrivate::updateAction):
(QWebPagePrivate::updateEditorActions):
* tests/qwebpage/tst_qwebpage.cpp:
(tst_QWebPage::textSelection):
|
|\ \
| |/ |
|
| |
|
|
|