Fix QScreen::orientation() not always being updated after changing the update orienta...
authorSimon Hausmann <simon.hausmann@digia.com>
Wed, 26 Sep 2012 13:14:48 +0000 (15:14 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 26 Sep 2012 17:55:00 +0000 (19:55 +0200)
commitce1f994e9bcdea963a81a4bf562a8317cf6e0089
treea813d673456eca96462e7f9f59309a49d543d724
parent9362474805fa4d58a9f457c647aa8011b28b84d0
Fix QScreen::orientation() not always being updated after changing the update orientation mask

The back-end might report screen orientation changes at any point and we
record it in screen.d->orientation. However QScreen::orientation()
returns the orientation filtered according to the mask.

Changing the mask sends a notification to the back-end, which might send
another update as a result of a possible subscription to system services
(accelerometer). However on platforms where no subscription is required, where
the platform plugin ignores the mask and always sends the latest orientation,
we should "simulate" the update by updating the filtered orientation according
to the new mask. The function is cheap to call as it won't emit any signals
unless the orientation actually changes.

This patch also adds missing flush() calls after handleScreenOrientationChange
calls in the tests to ensure that the (synthetic) window system events are
actually delivered to QScreen/QGuiApplication.

Change-Id: Iebdd050f947e658ff5bc388629aa4cb31ab497fe
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
Reviewed-by: Laszlo Papp <lpapp@kde.org>
src/gui/kernel/qscreen.cpp
tests/auto/gui/kernel/qscreen/tst_qscreen.cpp