aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-08-22 16:36:42 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-01-10 18:01:27 +0100
commit1cd494fbfb3eaf21717697c3c7df39b214b48ee3 (patch)
tree6ec56567a6f3355b1814ac18169d354239a729fc /src/qmltest
parent8550dff55c62b4f2b588513014b5cad8fe2c5f5b (diff)
Generate registrations for all imports
Now that we can generate all QML type information at build time, we should also use it. Move the types for QtTest into the testlib import plugin. They don't need to be exported from QtQuickTest. Trigger the resource initialization of the shapes library from the plugin so that we retain a dependency and the linker doesn't optimize the module initialization away. Change-Id: Icc8cb338aa03ef1e3085e29356a5db7b73ba0a01 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qmltest')
-rw-r--r--src/qmltest/dependencies.json1
-rw-r--r--src/qmltest/qmltest.pro10
-rw-r--r--src/qmltest/quicktestevent.cpp471
-rw-r--r--src/qmltest/quicktestevent_p.h133
-rw-r--r--src/qmltest/quicktestresult_p.h1
-rw-r--r--src/qmltest/quicktestutil.cpp111
-rw-r--r--src/qmltest/quicktestutil_p.h89
7 files changed, 5 insertions, 811 deletions
diff --git a/src/qmltest/dependencies.json b/src/qmltest/dependencies.json
new file mode 100644
index 0000000000..b2c4125178
--- /dev/null
+++ b/src/qmltest/dependencies.json
@@ -0,0 +1 @@
+["QtQuick 2.0", "QtQuick.Window 2.0"]
diff --git a/src/qmltest/qmltest.pro b/src/qmltest/qmltest.pro
index d6e4669769..6864203ba4 100644
--- a/src/qmltest/qmltest.pro
+++ b/src/qmltest/qmltest.pro
@@ -4,7 +4,7 @@ QMAKE_DOCS = $$PWD/doc/qtqmltest.qdocconf
DEFINES += QT_NO_URL_CAST_FROM_STRING QT_NO_FOREACH
QT = core testlib-private
-QT_PRIVATE = quick quick-private qml-private gui core-private gui-private
+QT_PRIVATE = quick quick-private qml-private gui core-private
# Testlib is only a private dependency, which results in our users not
# inheriting testlibs's MODULE_CONFIG transitively. Make it explicit.
@@ -17,18 +17,16 @@ qtHaveModule(widgets) {
SOURCES += \
$$PWD/quicktest.cpp \
- $$PWD/quicktestevent.cpp \
- $$PWD/quicktestresult.cpp \
- $$PWD/quicktestutil.cpp
+ $$PWD/quicktestresult.cpp
HEADERS += \
$$PWD/quicktestglobal.h \
$$PWD/quicktest.h \
- $$PWD/quicktestevent_p.h \
$$PWD/quicktestresult_p.h \
- $$PWD/quicktestutil_p.h \
$$PWD/qtestoptions_p.h
qtConfig(qml-debug): DEFINES += QT_QML_DEBUG_NO_WARNING
load(qt_module)
+
+CONFIG += metatypes install_metatypes
diff --git a/src/qmltest/quicktestevent.cpp b/src/qmltest/quicktestevent.cpp
deleted file mode 100644
index 56faff9f7e..0000000000
--- a/src/qmltest/quicktestevent.cpp
+++ /dev/null
@@ -1,471 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** 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-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "quicktestevent_p.h"
-#include <QtTest/qtestkeyboard.h>
-#include <QtQml/qqml.h>
-#include <QtQuick/qquickitem.h>
-#include <QtQuick/qquickwindow.h>
-#include <qpa/qwindowsysteminterface.h>
-
-QT_BEGIN_NAMESPACE
-
-namespace QTest {
- extern int Q_TESTLIB_EXPORT defaultMouseDelay();
-}
-
-QuickTestEvent::QuickTestEvent(QObject *parent)
- : QObject(parent)
-{
-}
-
-QuickTestEvent::~QuickTestEvent()
-{
-}
-
-int QuickTestEvent::defaultMouseDelay() const
-{
- return QTest::defaultMouseDelay();
-}
-
-bool QuickTestEvent::keyPress(int key, int modifiers, int delay)
-{
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyPress(window, Qt::Key(key), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-bool QuickTestEvent::keyRelease(int key, int modifiers, int delay)
-{
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyRelease(window, Qt::Key(key), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-bool QuickTestEvent::keyClick(int key, int modifiers, int delay)
-{
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyClick(window, Qt::Key(key), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-bool QuickTestEvent::keyPressChar(const QString &character, int modifiers, int delay)
-{
- QTEST_ASSERT(character.length() == 1);
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyPress(window, character[0].toLatin1(), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-bool QuickTestEvent::keyReleaseChar(const QString &character, int modifiers, int delay)
-{
- QTEST_ASSERT(character.length() == 1);
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyRelease(window, character[0].toLatin1(), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-bool QuickTestEvent::keyClickChar(const QString &character, int modifiers, int delay)
-{
- QTEST_ASSERT(character.length() == 1);
- QWindow *window = activeWindow();
- if (!window)
- return false;
- QTest::keyClick(window, character[0].toLatin1(), Qt::KeyboardModifiers(modifiers), delay);
- return true;
-}
-
-#if QT_CONFIG(shortcut)
-// valueToKeySequence() is copied from qquickshortcut.cpp
-static QKeySequence valueToKeySequence(const QVariant &value)
-{
- if (value.type() == QVariant::Int)
- return QKeySequence(static_cast<QKeySequence::StandardKey>(value.toInt()));
- return QKeySequence::fromString(value.toString());
-}
-#endif
-
-bool QuickTestEvent::keySequence(const QVariant &keySequence)
-{
- QWindow *window = activeWindow();
- if (!window)
- return false;
-#if QT_CONFIG(shortcut)
- QTest::keySequence(window, valueToKeySequence(keySequence));
-#else
- Q_UNUSED(keySequence);
-#endif
- return true;
-}
-
-namespace QtQuickTest
-{
- enum MouseAction { MousePress, MouseRelease, MouseClick, MouseDoubleClick, MouseMove, MouseDoubleClickSequence };
-
- int lastMouseTimestamp = 0;
-
- // TODO should be Qt::MouseButtons buttons in case multiple buttons are pressed
- static void mouseEvent(MouseAction action, QWindow *window,
- QObject *item, Qt::MouseButton button,
- Qt::KeyboardModifiers stateKey, const QPointF &_pos, int delay=-1)
- {
- QTEST_ASSERT(window);
- QTEST_ASSERT(item);
-
- if (delay == -1 || delay < QTest::defaultMouseDelay())
- delay = QTest::defaultMouseDelay();
- if (delay > 0) {
- QTest::qWait(delay);
- lastMouseTimestamp += delay;
- }
-
- if (action == MouseClick) {
- mouseEvent(MousePress, window, item, button, stateKey, _pos);
- mouseEvent(MouseRelease, window, item, button, stateKey, _pos);
- return;
- }
-
- if (action == MouseDoubleClickSequence) {
- mouseEvent(MousePress, window, item, button, stateKey, _pos);
- mouseEvent(MouseRelease, window, item, button, stateKey, _pos);
- mouseEvent(MousePress, window, item, button, stateKey, _pos);
- mouseEvent(MouseDoubleClick, window, item, button, stateKey, _pos);
- mouseEvent(MouseRelease, window, item, button, stateKey, _pos);
- return;
- }
-
- QPoint pos = _pos.toPoint();
- QQuickItem *sgitem = qobject_cast<QQuickItem *>(item);
- if (sgitem)
- pos = sgitem->mapToScene(_pos).toPoint();
- QTEST_ASSERT(button == Qt::NoButton || button & Qt::MouseButtonMask);
- QTEST_ASSERT(stateKey == 0 || stateKey & Qt::KeyboardModifierMask);
-
- stateKey &= static_cast<unsigned int>(Qt::KeyboardModifierMask);
-
- QMouseEvent me(QEvent::User, QPoint(), Qt::LeftButton, button, stateKey);
- switch (action)
- {
- case MousePress:
- me = QMouseEvent(QEvent::MouseButtonPress, pos, window->mapToGlobal(pos), button, button, stateKey);
- me.setTimestamp(++lastMouseTimestamp);
- break;
- case MouseRelease:
- me = QMouseEvent(QEvent::MouseButtonRelease, pos, window->mapToGlobal(pos), button, {}, stateKey);
- me.setTimestamp(++lastMouseTimestamp);
- lastMouseTimestamp += 500; // avoid double clicks being generated
- break;
- case MouseDoubleClick:
- me = QMouseEvent(QEvent::MouseButtonDblClick, pos, window->mapToGlobal(pos), button, button, stateKey);
- me.setTimestamp(++lastMouseTimestamp);
- break;
- case MouseMove:
- // with move event the button is NoButton, but 'buttons' holds the currently pressed buttons
- me = QMouseEvent(QEvent::MouseMove, pos, window->mapToGlobal(pos), Qt::NoButton, button, stateKey);
- me.setTimestamp(++lastMouseTimestamp);
- break;
- default:
- QTEST_ASSERT(false);
- }
- QSpontaneKeyEvent::setSpontaneous(&me);
- if (!qApp->notify(window, &me)) {
- static const char *mouseActionNames[] =
- { "MousePress", "MouseRelease", "MouseClick", "MouseDoubleClick", "MouseMove", "MouseDoubleClickSequence" };
- QString warning = QString::fromLatin1("Mouse event \"%1\" not accepted by receiving window");
- QWARN(warning.arg(QString::fromLatin1(mouseActionNames[static_cast<int>(action)])).toLatin1().data());
- }
- }
-
-#if QT_CONFIG(wheelevent)
- static void mouseWheel(QWindow* window, QObject* item, Qt::MouseButtons buttons,
- Qt::KeyboardModifiers stateKey,
- QPointF _pos, int xDelta, int yDelta, int delay = -1)
- {
- QTEST_ASSERT(window);
- QTEST_ASSERT(item);
- if (delay == -1 || delay < QTest::defaultMouseDelay())
- delay = QTest::defaultMouseDelay();
- if (delay > 0)
- QTest::qWait(delay);
-
- QPoint pos;
- QQuickItem *sgitem = qobject_cast<QQuickItem *>(item);
- if (sgitem)
- pos = sgitem->mapToScene(_pos).toPoint();
-
- QTEST_ASSERT(buttons == Qt::NoButton || buttons & Qt::MouseButtonMask);
- QTEST_ASSERT(stateKey == 0 || stateKey & Qt::KeyboardModifierMask);
-
- stateKey &= static_cast<unsigned int>(Qt::KeyboardModifierMask);
- QWheelEvent we(pos, window->mapToGlobal(pos), QPoint(0, 0), QPoint(xDelta, yDelta), buttons,
- stateKey, Qt::NoScrollPhase, false);
-
- QSpontaneKeyEvent::setSpontaneous(&we); // hmmmm
- if (!qApp->notify(window, &we))
- QTest::qWarn("Wheel event not accepted by receiving window");
- }
-#endif
-};
-
-bool QuickTestEvent::mousePress
- (QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- m_pressedButtons.setFlag(Qt::MouseButton(button), true);
- QtQuickTest::mouseEvent(QtQuickTest::MousePress, view, item,
- Qt::MouseButton(button),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), delay);
- return true;
-}
-
-#if QT_CONFIG(wheelevent)
-bool QuickTestEvent::mouseWheel(
- QObject *item, qreal x, qreal y, int buttons,
- int modifiers, int xDelta, int yDelta, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- QtQuickTest::mouseWheel(view, item, Qt::MouseButtons(buttons),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), xDelta, yDelta, delay);
- return true;
-}
-#endif
-
-bool QuickTestEvent::mouseRelease
- (QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- m_pressedButtons.setFlag(Qt::MouseButton(button), false);
- QtQuickTest::mouseEvent(QtQuickTest::MouseRelease, view, item,
- Qt::MouseButton(button),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), delay);
- return true;
-}
-
-bool QuickTestEvent::mouseClick
- (QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- QtQuickTest::mouseEvent(QtQuickTest::MouseClick, view, item,
- Qt::MouseButton(button),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), delay);
- return true;
-}
-
-bool QuickTestEvent::mouseDoubleClick
- (QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- QtQuickTest::mouseEvent(QtQuickTest::MouseDoubleClick, view, item,
- Qt::MouseButton(button),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), delay);
- return true;
-}
-
-bool QuickTestEvent::mouseDoubleClickSequence
- (QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- QtQuickTest::mouseEvent(QtQuickTest::MouseDoubleClickSequence, view, item,
- Qt::MouseButton(button),
- Qt::KeyboardModifiers(modifiers),
- QPointF(x, y), delay);
- return true;
-}
-
-bool QuickTestEvent::mouseMove
- (QObject *item, qreal x, qreal y, int delay, int buttons)
-{
- QWindow *view = eventWindow(item);
- if (!view)
- return false;
- const Qt::MouseButtons effectiveButtons = buttons ? Qt::MouseButtons(buttons) : m_pressedButtons;
- QtQuickTest::mouseEvent(QtQuickTest::MouseMove, view, item,
- Qt::MouseButton(int(effectiveButtons)), Qt::NoModifier,
- QPointF(x, y), delay);
- return true;
-}
-
-QWindow *QuickTestEvent::eventWindow(QObject *item)
-{
- QWindow * window = qobject_cast<QWindow *>(item);
- if (window)
- return window;
-
- QQuickItem *quickItem = qobject_cast<QQuickItem *>(item);
- if (quickItem)
- return quickItem->window();
-
- QQuickItem *testParentitem = qobject_cast<QQuickItem *>(parent());
- if (testParentitem)
- return testParentitem->window();
- return nullptr;
-}
-
-QWindow *QuickTestEvent::activeWindow()
-{
- if (QWindow *window = QGuiApplication::focusWindow())
- return window;
- return eventWindow();
-}
-
-QQuickTouchEventSequence::QQuickTouchEventSequence(QuickTestEvent *testEvent, QObject *item)
- : QObject(testEvent)
- , m_sequence(QTest::touchEvent(testEvent->eventWindow(item), testEvent->touchDevice()))
- , m_testEvent(testEvent)
-{
-}
-
-QObject *QQuickTouchEventSequence::press(int touchId, QObject *item, qreal x, qreal y)
-{
- QWindow *view = m_testEvent->eventWindow(item);
- if (view) {
- QPointF pos(x, y);
- QQuickItem *quickItem = qobject_cast<QQuickItem *>(item);
- if (quickItem) {
- pos = quickItem->mapToScene(pos);
- }
- m_sequence.press(touchId, pos.toPoint(), view);
- }
- return this;
-}
-
-QObject *QQuickTouchEventSequence::move(int touchId, QObject *item, qreal x, qreal y)
-{
- QWindow *view = m_testEvent->eventWindow(item);
- if (view) {
- QPointF pos(x, y);
- QQuickItem *quickItem = qobject_cast<QQuickItem *>(item);
- if (quickItem) {
- pos = quickItem->mapToScene(pos);
- }
- m_sequence.move(touchId, pos.toPoint(), view);
- }
- return this;
-}
-
-QObject *QQuickTouchEventSequence::release(int touchId, QObject *item, qreal x, qreal y)
-{
- QWindow *view = m_testEvent->eventWindow(item);
- if (view) {
- QPointF pos(x, y);
- QQuickItem *quickItem = qobject_cast<QQuickItem *>(item);
- if (quickItem) {
- pos = quickItem->mapToScene(pos);
- }
- m_sequence.release(touchId, pos.toPoint(), view);
- }
- return this;
-}
-
-QObject *QQuickTouchEventSequence::stationary(int touchId)
-{
- m_sequence.stationary(touchId);
- return this;
-}
-
-QObject *QQuickTouchEventSequence::commit()
-{
- m_sequence.commit();
- return this;
-}
-
-/*!
- Return a simulated touchscreen, creating one if necessary
-
- \internal
-*/
-
-QTouchDevice *QuickTestEvent::touchDevice()
-{
- static QTouchDevice *device(nullptr);
-
- if (!device) {
- device = new QTouchDevice;
- device->setType(QTouchDevice::TouchScreen);
- QWindowSystemInterface::registerTouchDevice(device);
- }
- return device;
-}
-
-/*!
- Creates a new QQuickTouchEventSequence.
-
- If valid, \a item determines the QWindow that touch events are sent to.
- Test code should use touchEvent() from the QML TestCase type.
-
- \internal
-*/
-QQuickTouchEventSequence *QuickTestEvent::touchEvent(QObject *item)
-{
- return new QQuickTouchEventSequence(this, item);
-}
-
-QT_END_NAMESPACE
diff --git a/src/qmltest/quicktestevent_p.h b/src/qmltest/quicktestevent_p.h
deleted file mode 100644
index a3c2e78e58..0000000000
--- a/src/qmltest/quicktestevent_p.h
+++ /dev/null
@@ -1,133 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** 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-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QUICKTESTEVENT_P_H
-#define QUICKTESTEVENT_P_H
-
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Qt API. It exists purely as an
-// implementation detail. This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include <QtQuickTest/quicktestglobal.h>
-#include <QtCore/qobject.h>
-#include <QtGui/QWindow>
-#include <QtQml/qqml.h>
-#include <QtTest/qtesttouch.h>
-
-QT_BEGIN_NAMESPACE
-
-class QuickTestEvent;
-class Q_QUICK_TEST_EXPORT QQuickTouchEventSequence : public QObject
-{
- Q_OBJECT
- QML_ANONYMOUS
-
-public:
- explicit QQuickTouchEventSequence(QuickTestEvent *testEvent, QObject *item = nullptr);
-public slots:
- QObject* press(int touchId, QObject *item, qreal x, qreal y);
- QObject* move(int touchId, QObject *item, qreal x, qreal y);
- QObject* release(int touchId, QObject *item, qreal x, qreal y);
- QObject* stationary(int touchId);
- QObject* commit();
-
-private:
- QTest::QTouchEventSequence m_sequence;
- QuickTestEvent * const m_testEvent;
-};
-
-class Q_QUICK_TEST_EXPORT QuickTestEvent : public QObject
-{
- Q_OBJECT
- Q_PROPERTY(int defaultMouseDelay READ defaultMouseDelay FINAL)
- QML_NAMED_ELEMENT(TestEvent)
-public:
- QuickTestEvent(QObject *parent = nullptr);
- ~QuickTestEvent() override;
- int defaultMouseDelay() const;
-
-public Q_SLOTS:
- bool keyPress(int key, int modifiers, int delay);
- bool keyRelease(int key, int modifiers, int delay);
- bool keyClick(int key, int modifiers, int delay);
-
- bool keyPressChar(const QString &character, int modifiers, int delay);
- bool keyReleaseChar(const QString &character, int modifiers, int delay);
- bool keyClickChar(const QString &character, int modifiers, int delay);
-
- Q_REVISION(2) bool keySequence(const QVariant &keySequence);
-
- bool mousePress(QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay);
- bool mouseRelease(QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay);
- bool mouseClick(QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay);
- bool mouseDoubleClick(QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay);
- bool mouseDoubleClickSequence(QObject *item, qreal x, qreal y, int button,
- int modifiers, int delay);
- bool mouseMove(QObject *item, qreal x, qreal y, int delay, int buttons);
-
-#if QT_CONFIG(wheelevent)
- bool mouseWheel(QObject *item, qreal x, qreal y, int buttons,
- int modifiers, int xDelta, int yDelta, int delay);
-#endif
-
- QQuickTouchEventSequence *touchEvent(QObject *item = nullptr);
-private:
- QWindow *eventWindow(QObject *item = nullptr);
- QWindow *activeWindow();
- QTouchDevice *touchDevice();
-
- Qt::MouseButtons m_pressedButtons;
-
- friend class QQuickTouchEventSequence;
-};
-
-QT_END_NAMESPACE
-
-#endif
diff --git a/src/qmltest/quicktestresult_p.h b/src/qmltest/quicktestresult_p.h
index 296e8e5344..81b9d78830 100644
--- a/src/qmltest/quicktestresult_p.h
+++ b/src/qmltest/quicktestresult_p.h
@@ -76,7 +76,6 @@ class Q_QUICK_TEST_EXPORT QuickTestResult : public QObject
Q_PROPERTY(int skipCount READ skipCount)
Q_PROPERTY(QStringList functionsToRun READ functionsToRun)
Q_PROPERTY(QStringList tagsToRun READ tagsToRun)
- QML_NAMED_ELEMENT(TestResult)
public:
QuickTestResult(QObject *parent = nullptr);
diff --git a/src/qmltest/quicktestutil.cpp b/src/qmltest/quicktestutil.cpp
deleted file mode 100644
index d9e6a2fba5..0000000000
--- a/src/qmltest/quicktestutil.cpp
+++ /dev/null
@@ -1,111 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** 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-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "quicktestutil_p.h"
-
-#include <QtQuickTest/private/qtestoptions_p.h>
-#include <QtQml/private/qqmltype_p.h>
-#include <QtQml/private/qqmlmetatype_p.h>
-#include <QtQml/private/qv4engine_p.h>
-#include <QtQml/private/qv4scopedvalue_p.h>
-
-#include <QtGui/qguiapplication.h>
-#include <QtGui/qstylehints.h>
-#include <QtQml/qqmlengine.h>
-
-QT_BEGIN_NAMESPACE
-
-bool QuickTestUtil::printAvailableFunctions() const
-{
- return QTest::printAvailableFunctions;
-}
-
-int QuickTestUtil::dragThreshold() const
-{
- return QGuiApplication::styleHints()->startDragDistance();
-}
-
-QJSValue QuickTestUtil::typeName(const QVariant &v) const
-{
- QString name = QString::fromUtf8(v.typeName());
- if (v.canConvert<QObject*>()) {
- QQmlType type;
- const QMetaObject *mo = v.value<QObject*>()->metaObject();
- while (!type.isValid() && mo) {
- type = QQmlMetaType::qmlType(mo);
- mo = mo->superClass();
- }
- if (type.isValid()) {
- name = type.qmlTypeName();
- }
- }
-
- QQmlEngine *engine = qmlEngine(this);
- QV4::ExecutionEngine *v4 = engine->handle();
- return QJSValue(v4, v4->newString(name)->asReturnedValue());
-}
-
-bool QuickTestUtil::compare(const QVariant &act, const QVariant &exp) const {
- return act == exp;
-}
-
-QJSValue QuickTestUtil::callerFile(int frameIndex) const
-{
- QQmlEngine *engine = qmlEngine(this);
- QV4::ExecutionEngine *v4 = engine->handle();
- QV4::Scope scope(v4);
-
- QVector<QV4::StackFrame> stack = v4->stackTrace(frameIndex + 2);
- return (stack.size() > frameIndex + 1)
- ? QJSValue(v4, v4->newString(stack.at(frameIndex + 1).source)->asReturnedValue())
- : QJSValue();
-}
-
-int QuickTestUtil::callerLine(int frameIndex) const
-{
- QQmlEngine *engine = qmlEngine(this);
- QV4::ExecutionEngine *v4 = engine->handle();
-
- QVector<QV4::StackFrame> stack = v4->stackTrace(frameIndex + 2);
- if (stack.size() > frameIndex + 1)
- return stack.at(frameIndex + 1).line;
- return -1;
-}
-
-QT_END_NAMESPACE
diff --git a/src/qmltest/quicktestutil_p.h b/src/qmltest/quicktestutil_p.h
deleted file mode 100644
index 74d315df7d..0000000000
--- a/src/qmltest/quicktestutil_p.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** 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-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QUICKTESTUTIL_P_H
-#define QUICKTESTUTIL_P_H
-
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Qt API. It exists purely as an
-// implementation detail. This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include <QtQuickTest/quicktestglobal.h>
-#include <QtCore/qobject.h>
-#include <QtQml/qqml.h>
-#include <QtQml/qjsvalue.h>
-
-QT_BEGIN_NAMESPACE
-
-class Q_QUICK_TEST_EXPORT QuickTestUtil : public QObject
-{
- Q_OBJECT
- Q_PROPERTY(bool printAvailableFunctions READ printAvailableFunctions NOTIFY printAvailableFunctionsChanged)
- Q_PROPERTY(int dragThreshold READ dragThreshold NOTIFY dragThresholdChanged)
- QML_NAMED_ELEMENT(TestUtil)
-public:
- QuickTestUtil(QObject *parent = nullptr) :QObject(parent) {}
- ~QuickTestUtil() override {}
-
- bool printAvailableFunctions() const;
- int dragThreshold() const;
-
-Q_SIGNALS:
- void printAvailableFunctionsChanged();
- void dragThresholdChanged();
-
-public Q_SLOTS:
-
- QJSValue typeName(const QVariant& v) const;
- bool compare(const QVariant& act, const QVariant& exp) const;
-
- QJSValue callerFile(int frameIndex = 0) const;
- int callerLine(int frameIndex = 0) const;
-};
-
-QT_END_NAMESPACE
-
-#endif // QUICKTESTUTIL_P_H