summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/ios/qiosscreen.mm
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/ios/qiosscreen.mm')
-rw-r--r--src/plugins/platforms/ios/qiosscreen.mm49
1 files changed, 1 insertions, 48 deletions
diff --git a/src/plugins/platforms/ios/qiosscreen.mm b/src/plugins/platforms/ios/qiosscreen.mm
index a2fd10bdd4..87ddc63f4a 100644
--- a/src/plugins/platforms/ios/qiosscreen.mm
+++ b/src/plugins/platforms/ios/qiosscreen.mm
@@ -39,6 +39,7 @@
**
****************************************************************************/
+#include "qiosglobal.h"
#include "qiosscreen.h"
#include "qioswindow.h"
#include <qpa/qwindowsysteminterface.h>
@@ -88,54 +89,6 @@
@end
-QT_BEGIN_NAMESPACE
-
-Qt::ScreenOrientation toQtScreenOrientation(UIDeviceOrientation uiDeviceOrientation)
-{
- Qt::ScreenOrientation qtOrientation;
- switch (uiDeviceOrientation) {
- case UIDeviceOrientationPortraitUpsideDown:
- qtOrientation = Qt::InvertedPortraitOrientation;
- break;
- case UIDeviceOrientationLandscapeLeft:
- qtOrientation = Qt::InvertedLandscapeOrientation;
- break;
- case UIDeviceOrientationLandscapeRight:
- qtOrientation = Qt::LandscapeOrientation;
- break;
- case UIDeviceOrientationFaceUp:
- case UIDeviceOrientationFaceDown:
- qtOrientation = static_cast<Qt::ScreenOrientation>(-1); // not supported ATM.
- break;
- default:
- qtOrientation = Qt::PortraitOrientation;
- break;
- }
- return qtOrientation;
-}
-
-UIDeviceOrientation fromQtScreenOrientation(Qt::ScreenOrientation qtOrientation)
-{
- UIDeviceOrientation uiOrientation;
- switch (qtOrientation) {
- case Qt::LandscapeOrientation:
- uiOrientation = UIDeviceOrientationLandscapeRight;
- break;
- case Qt::InvertedLandscapeOrientation:
- uiOrientation = UIDeviceOrientationLandscapeLeft;
- break;
- case Qt::InvertedPortraitOrientation:
- uiOrientation = UIDeviceOrientationPortraitUpsideDown;
- break;
- case Qt::PrimaryOrientation:
- case Qt::PortraitOrientation:
- default:
- uiOrientation = UIDeviceOrientationPortrait;
- break;
- }
- return uiOrientation;
-}
-
/*!
Returns the model identifier of the device.