2011-10-04 11:11:30 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-10-04 11:11:30 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-10-04 11:11:30 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <qscreen.h>
|
2012-07-26 11:23:28 +00:00
|
|
|
#include <qpa/qwindowsysteminterface.h>
|
2011-10-04 11:11:30 +00:00
|
|
|
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
class tst_QScreen: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void angleBetween_data();
|
|
|
|
void angleBetween();
|
|
|
|
void transformBetween_data();
|
|
|
|
void transformBetween();
|
2012-01-11 12:16:24 +00:00
|
|
|
void orientationChange();
|
2011-10-04 11:11:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void tst_QScreen::angleBetween_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<uint>("oa");
|
|
|
|
QTest::addColumn<uint>("ob");
|
|
|
|
QTest::addColumn<int>("expected");
|
|
|
|
|
|
|
|
QTest::newRow("Portrait Portrait")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< 0;
|
|
|
|
|
|
|
|
QTest::newRow("Portrait Landscape")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< 270;
|
|
|
|
|
|
|
|
QTest::newRow("Portrait InvertedPortrait")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::InvertedPortraitOrientation)
|
|
|
|
<< 180;
|
|
|
|
|
|
|
|
QTest::newRow("Portrait InvertedLandscape")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< 90;
|
|
|
|
|
|
|
|
QTest::newRow("InvertedLandscape InvertedPortrait")
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< uint(Qt::InvertedPortraitOrientation)
|
|
|
|
<< 90;
|
|
|
|
|
|
|
|
QTest::newRow("InvertedLandscape Landscape")
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< 180;
|
2012-01-13 09:31:11 +00:00
|
|
|
|
|
|
|
QTest::newRow("Landscape Primary")
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< uint(Qt::PrimaryOrientation)
|
|
|
|
<< QGuiApplication::primaryScreen()->angleBetween(Qt::LandscapeOrientation, QGuiApplication::primaryScreen()->primaryOrientation());
|
2011-10-04 11:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QScreen::angleBetween()
|
|
|
|
{
|
|
|
|
QFETCH( uint, oa );
|
|
|
|
QFETCH( uint, ob );
|
|
|
|
QFETCH( int, expected );
|
|
|
|
|
|
|
|
Qt::ScreenOrientation a = Qt::ScreenOrientation(oa);
|
|
|
|
Qt::ScreenOrientation b = Qt::ScreenOrientation(ob);
|
|
|
|
|
2012-01-13 09:31:11 +00:00
|
|
|
QCOMPARE(QGuiApplication::primaryScreen()->angleBetween(a, b), expected);
|
|
|
|
QCOMPARE(QGuiApplication::primaryScreen()->angleBetween(b, a), (360 - expected) % 360);
|
2011-10-04 11:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QScreen::transformBetween_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<uint>("oa");
|
|
|
|
QTest::addColumn<uint>("ob");
|
|
|
|
QTest::addColumn<QRect>("rect");
|
|
|
|
QTest::addColumn<QTransform>("expected");
|
|
|
|
|
|
|
|
QRect rect(0, 0, 480, 640);
|
|
|
|
|
|
|
|
QTest::newRow("Portrait Portrait")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform();
|
|
|
|
|
|
|
|
QTest::newRow("Portrait Landscape")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform(0, -1, 1, 0, 0, rect.height());
|
|
|
|
|
|
|
|
QTest::newRow("Portrait InvertedPortrait")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::InvertedPortraitOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform(-1, 0, 0, -1, rect.width(), rect.height());
|
|
|
|
|
|
|
|
QTest::newRow("Portrait InvertedLandscape")
|
|
|
|
<< uint(Qt::PortraitOrientation)
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform(0, 1, -1, 0, rect.width(), 0);
|
|
|
|
|
|
|
|
QTest::newRow("InvertedLandscape InvertedPortrait")
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< uint(Qt::InvertedPortraitOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform(0, 1, -1, 0, rect.width(), 0);
|
|
|
|
|
|
|
|
QTest::newRow("InvertedLandscape Landscape")
|
|
|
|
<< uint(Qt::InvertedLandscapeOrientation)
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QTransform(-1, 0, 0, -1, rect.width(), rect.height());
|
2012-01-13 09:31:11 +00:00
|
|
|
|
|
|
|
QTest::newRow("Landscape Primary")
|
|
|
|
<< uint(Qt::LandscapeOrientation)
|
|
|
|
<< uint(Qt::PrimaryOrientation)
|
|
|
|
<< rect
|
|
|
|
<< QGuiApplication::primaryScreen()->transformBetween(Qt::LandscapeOrientation, QGuiApplication::primaryScreen()->primaryOrientation(), rect);
|
2011-10-04 11:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QScreen::transformBetween()
|
|
|
|
{
|
|
|
|
QFETCH( uint, oa );
|
|
|
|
QFETCH( uint, ob );
|
|
|
|
QFETCH( QRect, rect );
|
|
|
|
QFETCH( QTransform, expected );
|
|
|
|
|
|
|
|
Qt::ScreenOrientation a = Qt::ScreenOrientation(oa);
|
|
|
|
Qt::ScreenOrientation b = Qt::ScreenOrientation(ob);
|
|
|
|
|
2012-01-13 09:31:11 +00:00
|
|
|
QCOMPARE(QGuiApplication::primaryScreen()->transformBetween(a, b, rect), expected);
|
2011-10-04 11:11:30 +00:00
|
|
|
}
|
|
|
|
|
2012-01-11 12:16:24 +00:00
|
|
|
void tst_QScreen::orientationChange()
|
|
|
|
{
|
2012-06-05 12:17:24 +00:00
|
|
|
qRegisterMetaType<Qt::ScreenOrientation>("Qt::ScreenOrientation");
|
|
|
|
|
2012-01-11 12:16:24 +00:00
|
|
|
QScreen *screen = QGuiApplication::primaryScreen();
|
|
|
|
|
2012-06-05 12:17:24 +00:00
|
|
|
screen->setOrientationUpdateMask(Qt::LandscapeOrientation | Qt::PortraitOrientation);
|
|
|
|
|
2012-01-11 12:16:24 +00:00
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::LandscapeOrientation);
|
2012-09-26 13:14:48 +00:00
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
2012-01-13 09:31:11 +00:00
|
|
|
QTRY_COMPARE(screen->orientation(), Qt::LandscapeOrientation);
|
2012-01-11 12:16:24 +00:00
|
|
|
|
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::PortraitOrientation);
|
2012-09-26 13:14:48 +00:00
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
2012-01-13 09:31:11 +00:00
|
|
|
QTRY_COMPARE(screen->orientation(), Qt::PortraitOrientation);
|
2012-06-05 12:17:24 +00:00
|
|
|
|
|
|
|
QSignalSpy spy(screen, SIGNAL(orientationChanged(Qt::ScreenOrientation)));
|
|
|
|
|
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::InvertedLandscapeOrientation);
|
2012-09-26 13:14:48 +00:00
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
2012-06-05 12:17:24 +00:00
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::InvertedPortraitOrientation);
|
2012-09-26 13:14:48 +00:00
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
2012-06-05 12:17:24 +00:00
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::LandscapeOrientation);
|
2012-09-26 13:14:48 +00:00
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
2012-06-05 12:17:24 +00:00
|
|
|
|
|
|
|
QTRY_COMPARE(screen->orientation(), Qt::LandscapeOrientation);
|
|
|
|
QCOMPARE(spy.count(), 1);
|
2012-09-26 13:14:48 +00:00
|
|
|
|
|
|
|
spy.clear();
|
|
|
|
QWindowSystemInterface::handleScreenOrientationChange(screen, Qt::InvertedLandscapeOrientation);
|
|
|
|
QWindowSystemInterface::flushWindowSystemEvents();
|
|
|
|
QTRY_COMPARE(screen->orientation(), Qt::LandscapeOrientation);
|
|
|
|
QCOMPARE(spy.count(), 0);
|
|
|
|
|
|
|
|
screen->setOrientationUpdateMask(screen->orientationUpdateMask() | Qt::InvertedLandscapeOrientation);
|
|
|
|
QTRY_COMPARE(screen->orientation(), Qt::InvertedLandscapeOrientation);
|
|
|
|
QCOMPARE(spy.count(), 1);
|
2012-01-11 12:16:24 +00:00
|
|
|
}
|
|
|
|
|
2011-10-04 11:11:30 +00:00
|
|
|
#include <tst_qscreen.moc>
|
|
|
|
QTEST_MAIN(tst_QScreen);
|