Obsolete Members for QTest

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

Functions

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

Function Documentation

bool QTest::qWaitForWindowShown(QWidget * widget, int timeout = 1000) [static]

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 QtTestLib 5.0.

See also QTest::qWaitForWindowActive() and QTest::qWaitForWindowExposed().