Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
doc_src_qtestevent.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#include <QTest>
5#include <QLineEdit>
6
8
9void TestGui::testGui_data()
10{
11QWidget *myParent = nullptr;
12//! [0]
13QTestEventList events;
14events.addKeyClick('a');
15events.addKeyClick(Qt::Key_Backspace);
16events.addDelay(200);
17QLineEdit *lineEdit = new QLineEdit(myParent);
18// ...
19events.simulate(lineEdit);
20events.simulate(lineEdit);
21//! [0]
22}