如何在 Qt 5 中将 New-Signal-Slot 语法声明为函数的参数
How to declare New-Signal-Slot syntax in Qt 5 as a parameter to function
如何将信号或槽(成员函数,Qt 5 中的新语法)作为参数传递给函数然后调用 connect
?
例如我想写一个等待信号的函数。
注意:它不是编译 - PointerToMemberFunction
是我的问题。
bool waitForSignal(const QObject* sender, PointerToMemberFunction??? signal, int timeOut = 5000/*ms*/)
{
if (sender == nullptr)
return true;
bool isTimeOut = false;
QEventLoop loop;
QTimer timer;
timer.setSingleShot(true);
QObject::connect(&timer, &QTimer::timeout,
[&loop, &isTimeOut]()
{
loop.quit();
isTimeOut = true;
});
timer.start(timeOut);
QObject::connect(sender, signal, &loop, &QEventLoop::quit);
loop.exec();
timer.stop();
return !isTimeOut;
}
有没有办法将信号列表传递给此函数以进行连接?
您应该创建模板:
template<typename Func>
void waitForSignal(const typename QtPrivate::FunctionPointer<Func>::Object *sender, Func signal) {
QEventLoop loop;
connect(sender, signal, &loop, &QEventLoop::quit);
loop.exec();
}
用法:
waitForSignal(button, &QPushButton::clicked);
您可以简单地使用 QSignalSpy
来等待 :
发出信号
QSignalSpy spy(sender, SIGNAL(someSignal()));
spy.wait(timeOut);
或者(这在 Qt 5.4 中是可能的):
QSignalSpy spy(sender, &SomeObject::someSignal);
spy.wait(timeOut);
如果你想在函数中实现它:
bool waitForSignal(const typename QtPrivate::FunctionPointer<Func>::Object *sender, Func signal, int timeOut = 5000/*ms*/)
{
QSignalSpy spy(sender, signal);
return spy.wait(timeOut);
}
别忘了在qmake中添加相关模块:
QT += testlib
如何将信号或槽(成员函数,Qt 5 中的新语法)作为参数传递给函数然后调用 connect
?
例如我想写一个等待信号的函数。
注意:它不是编译 - PointerToMemberFunction
是我的问题。
bool waitForSignal(const QObject* sender, PointerToMemberFunction??? signal, int timeOut = 5000/*ms*/)
{
if (sender == nullptr)
return true;
bool isTimeOut = false;
QEventLoop loop;
QTimer timer;
timer.setSingleShot(true);
QObject::connect(&timer, &QTimer::timeout,
[&loop, &isTimeOut]()
{
loop.quit();
isTimeOut = true;
});
timer.start(timeOut);
QObject::connect(sender, signal, &loop, &QEventLoop::quit);
loop.exec();
timer.stop();
return !isTimeOut;
}
有没有办法将信号列表传递给此函数以进行连接?
您应该创建模板:
template<typename Func>
void waitForSignal(const typename QtPrivate::FunctionPointer<Func>::Object *sender, Func signal) {
QEventLoop loop;
connect(sender, signal, &loop, &QEventLoop::quit);
loop.exec();
}
用法:
waitForSignal(button, &QPushButton::clicked);
您可以简单地使用 QSignalSpy
来等待 :
QSignalSpy spy(sender, SIGNAL(someSignal()));
spy.wait(timeOut);
或者(这在 Qt 5.4 中是可能的):
QSignalSpy spy(sender, &SomeObject::someSignal);
spy.wait(timeOut);
如果你想在函数中实现它:
bool waitForSignal(const typename QtPrivate::FunctionPointer<Func>::Object *sender, Func signal, int timeOut = 5000/*ms*/)
{
QSignalSpy spy(sender, signal);
return spy.wait(timeOut);
}
别忘了在qmake中添加相关模块:
QT += testlib