pick up the target window for a mouse event when none is specified
Change-Id: Iae0402f63f39a2728b94abe68fa22592d97ea9f3 Reviewed-on: http://codereview.qt.nokia.com/3885 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
This commit is contained in:
parent
dc44b86a6e
commit
11f867c34a
@ -546,9 +546,6 @@ void QGuiApplicationPrivate::processWindowSystemEvent(QWindowSystemInterfacePriv
|
|||||||
|
|
||||||
void QGuiApplicationPrivate::processMouseEvent(QWindowSystemInterfacePrivate::MouseEvent *e)
|
void QGuiApplicationPrivate::processMouseEvent(QWindowSystemInterfacePrivate::MouseEvent *e)
|
||||||
{
|
{
|
||||||
if (!e->window)
|
|
||||||
return;
|
|
||||||
|
|
||||||
QEvent::Type type;
|
QEvent::Type type;
|
||||||
// move first
|
// move first
|
||||||
Qt::MouseButtons stateChange = e->buttons ^ buttons;
|
Qt::MouseButtons stateChange = e->buttons ^ buttons;
|
||||||
@ -561,6 +558,9 @@ void QGuiApplicationPrivate::processMouseEvent(QWindowSystemInterfacePrivate::Mo
|
|||||||
|
|
||||||
QWindow *window = e->window.data();
|
QWindow *window = e->window.data();
|
||||||
|
|
||||||
|
if (!window)
|
||||||
|
window = QGuiApplication::topLevelAt(e->globalPos.toPoint());
|
||||||
|
|
||||||
QPointF localPoint = e->localPos;
|
QPointF localPoint = e->localPos;
|
||||||
QPointF globalPoint = e->globalPos;
|
QPointF globalPoint = e->globalPos;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user