mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-04 00:05:25 +08:00
qt 6.5.1 original
This commit is contained in:
23
tests/auto/testlib/selftests/keyboard/CMakeLists.txt
Normal file
23
tests/auto/testlib/selftests/keyboard/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## keyboard Binary:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_executable(keyboard
|
||||
NO_INSTALL
|
||||
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
||||
SOURCES
|
||||
tst_keyboard.cpp
|
||||
LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::GuiPrivate
|
||||
Qt::Test
|
||||
Qt::TestPrivate
|
||||
)
|
||||
|
||||
## Scopes:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_apply_testlib_coverage_options(keyboard)
|
74
tests/auto/testlib/selftests/keyboard/tst_keyboard.cpp
Normal file
74
tests/auto/testlib/selftests/keyboard/tst_keyboard.cpp
Normal file
@ -0,0 +1,74 @@
|
||||
// Copyright (C) 2018 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include <QtTest/qtest.h>
|
||||
#include <QtGui/qwindow.h>
|
||||
#include <QtGui/private/qguiapplication_p.h>
|
||||
#include <QtGui/qpa/qplatformintegration.h>
|
||||
|
||||
class tst_Keyboard : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private slots:
|
||||
void keyPressAndRelease();
|
||||
};
|
||||
|
||||
class KeyWindow : public QWindow
|
||||
{
|
||||
public:
|
||||
void keyPressEvent(QKeyEvent *event) override
|
||||
{
|
||||
QSharedPointer<QKeyEvent> copiedEvent(new QKeyEvent(event->type(), event->key(),
|
||||
event->modifiers(), event->text(), event->isAutoRepeat(), event->count()));
|
||||
mEventOrder.append(copiedEvent);
|
||||
}
|
||||
|
||||
void keyReleaseEvent(QKeyEvent *event) override
|
||||
{
|
||||
QSharedPointer<QKeyEvent> copiedEvent(new QKeyEvent(event->type(), event->key(),
|
||||
event->modifiers(), event->text(), event->isAutoRepeat(), event->count()));
|
||||
mEventOrder.append(copiedEvent);
|
||||
}
|
||||
|
||||
QList<QSharedPointer<QKeyEvent>> mEventOrder;
|
||||
};
|
||||
|
||||
void tst_Keyboard::keyPressAndRelease()
|
||||
{
|
||||
KeyWindow window;
|
||||
window.show();
|
||||
window.setGeometry(100, 100, 200, 200);
|
||||
QVERIFY(QTest::qWaitForWindowExposed(&window));
|
||||
|
||||
if (!QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::WindowActivation)) {
|
||||
QTest::ignoreMessage(QtWarningMsg,
|
||||
"qWaitForWindowActive was called on a platform that doesn't support window "
|
||||
"activation. This means there is an error in the test and it should either "
|
||||
"check for the WindowActivation platform capability before calling "
|
||||
"qWaitForWindowActivate, use qWaitForWindowExposed instead, or skip the test. "
|
||||
"Falling back to qWaitForWindowExposed.");
|
||||
}
|
||||
QVERIFY(QTest::qWaitForWindowActive(&window));
|
||||
|
||||
QTest::keyPress(&window, Qt::Key_A);
|
||||
QTest::keyRelease(&window, Qt::Key_A);
|
||||
QCOMPARE(window.mEventOrder.size(), 2);
|
||||
|
||||
const auto pressEvent = window.mEventOrder.at(0);
|
||||
QCOMPARE(pressEvent->type(), QEvent::KeyPress);
|
||||
QCOMPARE(pressEvent->key(), Qt::Key_A);
|
||||
QCOMPARE(pressEvent->modifiers(), Qt::NoModifier);
|
||||
QCOMPARE(pressEvent->text(), "a");
|
||||
QCOMPARE(pressEvent->isAutoRepeat(), false);
|
||||
|
||||
const auto releaseEvent = window.mEventOrder.at(1);
|
||||
QCOMPARE(releaseEvent->type(), QEvent::KeyRelease);
|
||||
QCOMPARE(releaseEvent->key(), Qt::Key_A);
|
||||
QCOMPARE(releaseEvent->modifiers(), Qt::NoModifier);
|
||||
QCOMPARE(releaseEvent->text(), "a");
|
||||
QCOMPARE(releaseEvent->isAutoRepeat(), false);
|
||||
}
|
||||
|
||||
QTEST_MAIN(tst_Keyboard)
|
||||
#include "tst_keyboard.moc"
|
Reference in New Issue
Block a user