Obsolete Members for QTest

The following members of class QTest are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.

Functions

(obsolete) bool qWaitForWindowShown(QWidget *widget, int timeout = 5000)

Function Documentation

bool QTest::qWaitForWindowShown(QWidget *widget, int timeout = 5000)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

Use qWaitForWindowExposed() instead.

Waits for timeout milliseconds or until the widget's window is exposed. Returns true if widget's window is exposed within timeout milliseconds, otherwise returns false.

This function does the same as qWaitForWindowExposed().

Example:

QWidget widget;
widget.show();
QTest::qWaitForWindowShown(&widget);

This function was introduced in Qt 5.0.

See also qWaitForWindowActive() and qWaitForWindowExposed().

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.