mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-07 01:35:25 +08:00
qt 6.5.1 original
This commit is contained in:
14
tests/auto/other/xkbkeyboard/CMakeLists.txt
Normal file
14
tests/auto/other/xkbkeyboard/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## tst_xkbkeyboard Test:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_test(tst_xkbkeyboard
|
||||
SOURCES
|
||||
tst_xkbkeyboard.cpp
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
)
|
35
tests/auto/other/xkbkeyboard/tst_xkbkeyboard.cpp
Normal file
35
tests/auto/other/xkbkeyboard/tst_xkbkeyboard.cpp
Normal file
@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2019 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include <QtCore>
|
||||
#include <QtGui>
|
||||
#include <QTest>
|
||||
|
||||
#include <qpa/qplatforminputcontextfactory_p.h>
|
||||
#include <qpa/qplatforminputcontext.h>
|
||||
|
||||
class tst_XkbKeyboard : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
private slots:
|
||||
void verifyComposeInputContextInterface();
|
||||
};
|
||||
|
||||
void tst_XkbKeyboard::verifyComposeInputContextInterface()
|
||||
{
|
||||
QPlatformInputContext *inputContext = QPlatformInputContextFactory::create(QStringLiteral("compose"));
|
||||
QVERIFY(inputContext);
|
||||
|
||||
const char *const inputContextClassName = "QComposeInputContext";
|
||||
const char *const normalizedSignature = "setXkbContext(xkb_context*)";
|
||||
|
||||
QVERIFY(inputContext->objectName() == QLatin1String(inputContextClassName));
|
||||
|
||||
int methodIndex = inputContext->metaObject()->indexOfMethod(normalizedSignature);
|
||||
QMetaMethod method = inputContext->metaObject()->method(methodIndex);
|
||||
Q_ASSERT(method.isValid());
|
||||
}
|
||||
|
||||
QTEST_MAIN(tst_XkbKeyboard)
|
||||
#include "tst_xkbkeyboard.moc"
|
||||
|
Reference in New Issue
Block a user