forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
41 lines
794 B
C++
41 lines
794 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "eventspy.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QEvent>
|
|
|
|
using namespace std::literals::chrono_literals;
|
|
|
|
EventSpy::EventSpy(uint eventType)
|
|
: startTime(std::chrono::steady_clock::now()),
|
|
eventType(eventType)
|
|
{
|
|
}
|
|
|
|
bool EventSpy::waitForEvent()
|
|
{
|
|
while (shouldRun())
|
|
QCoreApplication::processEvents();
|
|
|
|
return eventHappened;
|
|
}
|
|
|
|
bool EventSpy::event(QEvent *event)
|
|
{
|
|
if (event->type() == eventType) {
|
|
eventHappened = true;
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool EventSpy::shouldRun() const
|
|
{
|
|
return !eventHappened
|
|
&& (std::chrono::steady_clock::now() - startTime) < 1s;
|
|
}
|