| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2018 The Qt Company Ltd. |
| 4 | ** Contact: https://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the QtGui module of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at https://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or (at your option) the GNU General |
| 28 | ** Public license version 3 or any later version approved by the KDE Free |
| 29 | ** Qt Foundation. The licenses are as published by the Free Software |
| 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 31 | ** included in the packaging of this file. Please review the following |
| 32 | ** information to ensure the GNU General Public License requirements will |
| 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 35 | ** |
| 36 | ** $QT_END_LICENSE$ |
| 37 | ** |
| 38 | ****************************************************************************/ |
| 39 | |
| 40 | #include <private/qguiapplication_p.h> |
| 41 | |
| 42 | #include <qpa/qplatformintegration.h> |
| 43 | |
| 44 | #include "qtestsupport_gui.h" |
| 45 | #include "qwindow.h" |
| 46 | |
| 47 | #include <QtCore/qtestsupport_core.h> |
| 48 | #include <QtCore/QDebug> |
| 49 | |
| 50 | QT_BEGIN_NAMESPACE |
| 51 | |
| 52 | /*! |
| 53 | \since 5.0 |
| 54 | |
| 55 | Waits for \a timeout milliseconds or until the \a window is active. |
| 56 | |
| 57 | Returns \c true if \c window is active within \a timeout milliseconds, otherwise returns \c false. |
| 58 | |
| 59 | \sa qWaitForWindowExposed(), QWindow::isActive() |
| 60 | */ |
| 61 | Q_GUI_EXPORT bool QTest::qWaitForWindowActive(QWindow *window, int timeout) |
| 62 | { |
| 63 | if (Q_UNLIKELY(!QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::WindowActivation))) { |
| 64 | qWarning() << "qWaitForWindowActive was called on a platform that doesn't support window" |
| 65 | << "activation. This means there is an error in the test and it should either" |
| 66 | << "check for the WindowActivation platform capability before calling" |
| 67 | << "qWaitForWindowActivate, use qWaitForWindowExposed instead, or skip the test." |
| 68 | << "Falling back to qWaitForWindowExposed." ; |
| 69 | return qWaitForWindowExposed(window, timeout); |
| 70 | } |
| 71 | return QTest::qWaitFor(predicate: [&]() { return window->isActive(); }, timeout); |
| 72 | } |
| 73 | |
| 74 | /*! |
| 75 | \since 5.0 |
| 76 | |
| 77 | Waits for \a timeout milliseconds or until the \a window is exposed. |
| 78 | Returns \c true if \c window is exposed within \a timeout milliseconds, otherwise returns \c false. |
| 79 | |
| 80 | This is mainly useful for asynchronous systems like X11, where a window will be mapped to screen some |
| 81 | time after being asked to show itself on the screen. |
| 82 | |
| 83 | Note that a window that is mapped to screen may still not be considered exposed if the window client |
| 84 | area is completely covered by other windows, or if the window is otherwise not visible. This function |
| 85 | will then time out when waiting for such a window. |
| 86 | |
| 87 | \sa qWaitForWindowActive(), QWindow::isExposed() |
| 88 | */ |
| 89 | Q_GUI_EXPORT bool QTest::qWaitForWindowExposed(QWindow *window, int timeout) |
| 90 | { |
| 91 | return QTest::qWaitFor(predicate: [&]() { return window->isExposed(); }, timeout); |
| 92 | } |
| 93 | |
| 94 | QT_END_NAMESPACE |
| 95 | |