summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/ios/qiosapplicationstate.h
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-04-16 15:32:30 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-04-18 11:32:11 +0000
commite0e1c7ec2da121fa2b3acc8e76eb96e959954608 (patch)
tree83af971e85a1ecbc7b0ea60b2ce8bba60218d585 /src/plugins/platforms/ios/qiosapplicationstate.h
parenta75f25a43fd4bc5dab659dfc8d79a120258cec5f (diff)
iOS: Trigger manual layout of root view controller when coming out of background
When rotating the device when the application is in the background iOS will ask the root view controller to layout its views when then foregrounding the application, but at that point the application state is still in the suspended state, meaning we block any view resizing or rendering. To ensure the views are resized correctly, we trigger a manual layout after the application comes out of the suspended state. Task-number: QTBUG-67719 Change-Id: I1ef0a4133d4b94edaac7b0f3cb4e49e367eb76d4 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
Diffstat (limited to 'src/plugins/platforms/ios/qiosapplicationstate.h')
-rw-r--r--src/plugins/platforms/ios/qiosapplicationstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/platforms/ios/qiosapplicationstate.h b/src/plugins/platforms/ios/qiosapplicationstate.h
index a68147a72a..8a15a4a51b 100644
--- a/src/plugins/platforms/ios/qiosapplicationstate.h
+++ b/src/plugins/platforms/ios/qiosapplicationstate.h
@@ -56,8 +56,8 @@ public:
static Qt::ApplicationState toQtApplicationState(UIApplicationState state);
Q_SIGNALS:
- void applicationStateWillChange(Qt::ApplicationState);
- void applicationStateDidChange(Qt::ApplicationState);
+ void applicationStateWillChange(Qt::ApplicationState oldState, Qt::ApplicationState newState);
+ void applicationStateDidChange(Qt::ApplicationState oldState, Qt::ApplicationState newState);
};
QT_END_NAMESPACE