summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/gui/kernel')
-rw-r--r--tests/auto/gui/kernel/kernel.pro5
-rw-r--r--tests/auto/gui/kernel/qscreen/qscreen.pro8
-rw-r--r--tests/auto/gui/kernel/qscreen/tst_qscreen.cpp167
-rw-r--r--tests/auto/gui/kernel/qwindow/qwindow.pro7
-rw-r--r--tests/auto/gui/kernel/qwindow/tst_qwindow.cpp225
5 files changed, 410 insertions, 2 deletions
diff --git a/tests/auto/gui/kernel/kernel.pro b/tests/auto/gui/kernel/kernel.pro
index 16bda68629..e473463828 100644
--- a/tests/auto/gui/kernel/kernel.pro
+++ b/tests/auto/gui/kernel/kernel.pro
@@ -4,13 +4,14 @@ SUBDIRS=\
qdrag \
qevent \
qfileopenevent \
- qinputpanel \
qguimetatype \
qguivariant \
+ qinputpanel \
qkeysequence \
qmouseevent \
qmouseevent_modal \
qpalette \
+ qscreen \
qshortcut \
qtouchevent \
-
+ qwindow \
diff --git a/tests/auto/gui/kernel/qscreen/qscreen.pro b/tests/auto/gui/kernel/qscreen/qscreen.pro
new file mode 100644
index 0000000000..4ed8eefa1a
--- /dev/null
+++ b/tests/auto/gui/kernel/qscreen/qscreen.pro
@@ -0,0 +1,8 @@
+CONFIG += testcase
+TARGET = tst_qscreen
+
+QT += core-private gui-private testlib
+
+SOURCES += tst_qscreen.cpp
+
+CONFIG += insignificant_test # QTBUG-22554
diff --git a/tests/auto/gui/kernel/qscreen/tst_qscreen.cpp b/tests/auto/gui/kernel/qscreen/tst_qscreen.cpp
new file mode 100644
index 0000000000..1d00032b56
--- /dev/null
+++ b/tests/auto/gui/kernel/qscreen/tst_qscreen.cpp
@@ -0,0 +1,167 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <qscreen.h>
+
+#include <QtTest/QtTest>
+
+class tst_QScreen: public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void angleBetween_data();
+ void angleBetween();
+ void transformBetween_data();
+ void transformBetween();
+};
+
+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;
+}
+
+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);
+
+ QCOMPARE(QScreen::angleBetween(a, b), expected);
+ QCOMPARE(QScreen::angleBetween(b, a), (360 - expected) % 360);
+}
+
+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());
+}
+
+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);
+
+ QCOMPARE(QScreen::transformBetween(a, b, rect), expected);
+}
+
+#include <tst_qscreen.moc>
+QTEST_MAIN(tst_QScreen);
diff --git a/tests/auto/gui/kernel/qwindow/qwindow.pro b/tests/auto/gui/kernel/qwindow/qwindow.pro
new file mode 100644
index 0000000000..9fb49e8ceb
--- /dev/null
+++ b/tests/auto/gui/kernel/qwindow/qwindow.pro
@@ -0,0 +1,7 @@
+CONFIG += testcase
+TARGET = tst_qwindow
+
+QT += core-private gui-private testlib
+
+SOURCES += tst_qwindow.cpp
+
diff --git a/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp b/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp
new file mode 100644
index 0000000000..4171f0f797
--- /dev/null
+++ b/tests/auto/gui/kernel/qwindow/tst_qwindow.cpp
@@ -0,0 +1,225 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <qwindow.h>
+
+#include <QtTest/QtTest>
+
+class tst_QWindow: public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void mapGlobal();
+ void positioning();
+ void isActive();
+};
+
+
+void tst_QWindow::mapGlobal()
+{
+ QWindow a;
+ QWindow b(&a);
+ QWindow c(&b);
+
+ a.setGeometry(10, 10, 300, 300);
+ b.setGeometry(20, 20, 200, 200);
+ c.setGeometry(40, 40, 100, 100);
+
+ QCOMPARE(a.mapToGlobal(QPoint(100, 100)), QPoint(110, 110));
+ QCOMPARE(b.mapToGlobal(QPoint(100, 100)), QPoint(130, 130));
+ QCOMPARE(c.mapToGlobal(QPoint(100, 100)), QPoint(170, 170));
+
+ QCOMPARE(a.mapFromGlobal(QPoint(100, 100)), QPoint(90, 90));
+ QCOMPARE(b.mapFromGlobal(QPoint(100, 100)), QPoint(70, 70));
+ QCOMPARE(c.mapFromGlobal(QPoint(100, 100)), QPoint(30, 30));
+}
+
+class Window : public QWindow
+{
+public:
+ Window()
+ {
+ reset();
+ setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint);
+ }
+
+ void reset()
+ {
+ m_received.clear();
+ }
+
+ bool event(QEvent *event)
+ {
+ m_received[event->type()]++;
+
+ return QWindow::event(event);
+ }
+
+ int received(QEvent::Type type)
+ {
+ return m_received.value(type, 0);
+ }
+
+private:
+ QHash<QEvent::Type, int> m_received;
+};
+
+void tst_QWindow::positioning()
+{
+ QRect geometry(80, 80, 40, 40);
+
+ Window window;
+ window.setGeometry(geometry);
+ QCOMPARE(window.geometry(), geometry);
+ window.show();
+
+ QTRY_COMPARE(window.received(QEvent::Resize), 1);
+ QTRY_COMPARE(window.received(QEvent::Map), 1);
+
+ QMargins originalMargins = window.frameMargins();
+
+ QCOMPARE(window.pos(), window.framePos() + QPoint(originalMargins.left(), originalMargins.top()));
+ QVERIFY(window.frameGeometry().contains(window.geometry()));
+
+ QPoint originalPos = window.pos();
+ QPoint originalFramePos = window.framePos();
+
+ window.setWindowState(Qt::WindowFullScreen);
+ QTRY_COMPARE(window.received(QEvent::Resize), 2);
+
+ window.setWindowState(Qt::WindowNoState);
+ QTRY_COMPARE(window.received(QEvent::Resize), 3);
+
+ QTRY_COMPARE(originalPos, window.pos());
+ QTRY_COMPARE(originalFramePos, window.framePos());
+ QTRY_COMPARE(originalMargins, window.frameMargins());
+
+ // if our positioning is actually fully respected by the window manager
+ // test whether it correctly handles frame positioning as well
+ if (originalPos == geometry.topLeft() && (originalMargins.top() != 0 || originalMargins.left() != 0)) {
+ QPoint framePos(40, 40);
+
+ window.reset();
+ window.setFramePos(framePos);
+
+ QTRY_VERIFY(window.received(QEvent::Move));
+ QTRY_COMPARE(framePos, window.framePos());
+ QTRY_COMPARE(originalMargins, window.frameMargins());
+ QCOMPARE(window.pos(), window.framePos() + QPoint(originalMargins.left(), originalMargins.top()));
+
+ // and back to regular positioning
+
+ window.reset();
+ window.setPos(originalPos);
+ QTRY_VERIFY(window.received(QEvent::Move));
+ QTRY_COMPARE(originalPos, window.pos());
+ }
+}
+
+void tst_QWindow::isActive()
+{
+ Window window;
+ window.setGeometry(80, 80, 40, 40);
+ window.show();
+
+ QTRY_COMPARE(window.received(QEvent::Map), 1);
+ QTRY_COMPARE(window.received(QEvent::Resize), 1);
+ QTRY_VERIFY(QGuiApplication::focusWindow() == &window);
+ QVERIFY(window.isActive());
+
+ Window child;
+ child.setParent(&window);
+ child.setGeometry(10, 10, 20, 20);
+ child.show();
+
+ QTRY_COMPARE(child.received(QEvent::Map), 1);
+
+ child.requestActivateWindow();
+
+ QTRY_VERIFY(QGuiApplication::focusWindow() == &child);
+ QVERIFY(child.isActive());
+
+ // parent shouldn't receive new map or resize events from child being shown
+ QTRY_COMPARE(window.received(QEvent::Map), 1);
+ QTRY_COMPARE(window.received(QEvent::Resize), 1);
+ QTRY_COMPARE(window.received(QEvent::FocusIn), 1);
+ QTRY_COMPARE(window.received(QEvent::FocusOut), 1);
+ QTRY_COMPARE(child.received(QEvent::FocusIn), 1);
+
+ // child has focus
+ QVERIFY(window.isActive());
+
+ Window dialog;
+ dialog.setTransientParent(&window);
+ dialog.setGeometry(110, 110, 30, 30);
+ dialog.show();
+
+ dialog.requestActivateWindow();
+
+ QTRY_COMPARE(dialog.received(QEvent::Map), 1);
+ QTRY_COMPARE(dialog.received(QEvent::Resize), 1);
+ QTRY_VERIFY(QGuiApplication::focusWindow() == &dialog);
+ QVERIFY(dialog.isActive());
+
+ // transient child has focus
+ QVERIFY(window.isActive());
+
+ // parent is active
+ QVERIFY(child.isActive());
+
+ window.requestActivateWindow();
+
+ QTRY_VERIFY(QGuiApplication::focusWindow() == &window);
+ QTRY_COMPARE(dialog.received(QEvent::FocusOut), 1);
+ QTRY_COMPARE(window.received(QEvent::FocusIn), 2);
+
+ QVERIFY(window.isActive());
+
+ // transient parent has focus
+ QVERIFY(dialog.isActive());
+
+ // parent has focus
+ QVERIFY(child.isActive());
+}
+
+#include <tst_qwindow.moc>
+QTEST_MAIN(tst_QWindow);