summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qscreen_p.h
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2012-06-05 14:17:24 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-06 07:41:17 +0200
commit80653bf4ce8d03f4af2fe8cc2f3751d32bd31d75 (patch)
tree92c8f2d94a8348e61651391f1aec0fdf2950c359 /src/gui/kernel/qscreen_p.h
parent09001e72dc527cb50d84c15d7afdfb4b4116c883 (diff)
Added QScreen::setOrientationUpdateMask().
It might be too expensive to always have an accelerometer sensor running, so introduce API so that the application has to explictly ask to get the orientation updates it's interested in. Change-Id: Ib7dc5ad8807718409f744ebef53f4476aa05175d Reviewed-by: Ian Monroe <ian.monroe@nokia.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com> Reviewed-by: Kevin Ottens <kevin.ottens.qnx@kdab.com>
Diffstat (limited to 'src/gui/kernel/qscreen_p.h')
-rw-r--r--src/gui/kernel/qscreen_p.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gui/kernel/qscreen_p.h b/src/gui/kernel/qscreen_p.h
index b0e1b8671a..ca29acdd08 100644
--- a/src/gui/kernel/qscreen_p.h
+++ b/src/gui/kernel/qscreen_p.h
@@ -58,6 +58,7 @@ class QScreenPrivate : public QObjectPrivate
public:
QScreenPrivate(QPlatformScreen *screen)
: platformScreen(screen)
+ , orientationUpdateMask(0)
{
orientation = screen->orientation();
geometry = screen->geometry();
@@ -66,18 +67,24 @@ public:
refreshRate = screen->refreshRate();
updatePrimaryOrientation();
+
+ filteredOrientation = orientation;
+ if (filteredOrientation == Qt::PrimaryOrientation)
+ filteredOrientation = primaryOrientation;
}
void updatePrimaryOrientation();
+ QPlatformScreen *platformScreen;
+
+ Qt::ScreenOrientations orientationUpdateMask;
Qt::ScreenOrientation orientation;
+ Qt::ScreenOrientation filteredOrientation;
Qt::ScreenOrientation primaryOrientation;
QRect geometry;
QRect availableGeometry;
QDpi logicalDpi;
qreal refreshRate;
-
- QPlatformScreen *platformScreen;
};
QT_END_NAMESPACE