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.mm27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/plugins/platforms/ios/qiosscreen.mm b/src/plugins/platforms/ios/qiosscreen.mm
index efeacb8cb6..00deaa2fc0 100644
--- a/src/plugins/platforms/ios/qiosscreen.mm
+++ b/src/plugins/platforms/ios/qiosscreen.mm
@@ -41,6 +41,7 @@
#include "qiosscreen.h"
#include "qioswindow.h"
+#include <qpa/qwindowsysteminterface.h>
#include <sys/sysctl.h>
@@ -68,6 +69,7 @@ static QString deviceModelIdentifier()
QIOSScreen::QIOSScreen(unsigned int screenIndex)
: QPlatformScreen()
, m_uiScreen([[UIScreen screens] objectAtIndex:qMin(screenIndex, [[UIScreen screens] count] - 1)])
+ , m_orientationListener(0)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
@@ -97,6 +99,11 @@ QIOSScreen::QIOSScreen(unsigned int screenIndex)
[pool release];
}
+QIOSScreen::~QIOSScreen()
+{
+ [m_orientationListener release];
+}
+
QRect QIOSScreen::geometry() const
{
return m_geometry;
@@ -123,6 +130,26 @@ QSizeF QIOSScreen::physicalSize() const
return m_physicalSize;
}
+Qt::ScreenOrientation QIOSScreen::nativeOrientation() const
+{
+ return Qt::PortraitOrientation;
+}
+
+Qt::ScreenOrientation QIOSScreen::orientation() const
+{
+ return m_orientationListener ? m_orientationListener->m_orientation : nativeOrientation();
+}
+
+void QIOSScreen::setOrientationUpdateMask(Qt::ScreenOrientations mask)
+{
+ if (m_orientationListener && mask == Qt::PrimaryOrientation) {
+ [m_orientationListener release];
+ m_orientationListener = 0;
+ } else if (!m_orientationListener) {
+ m_orientationListener = [[QIOSOrientationListener alloc] initWithQIOSScreen:this];
+ }
+}
+
UIScreen *QIOSScreen::uiScreen() const
{
return m_uiScreen;