我如何在 Qt 中“睡眠/暂停”。
我希望用户界面在代码休眠时保持响应。
while(Tablet.IsConnected() == false){
LogText("[Prep] Tablet not turned back on... Retrying...");
//Sleep for three seconds here
}
LogText("[Prep] Tablet Detected!");
让平板电脑发出信号:
在您的构造函数中,您将执行以下操作:
connect(Tablet, SIGNAL(connected()), this, SLOT(onConnected());
然后在
slots:
void connected()
{
LogText("[Prep] Tablet Detected!");
}
如果没有可用的信号(第三方库),那么您可以使用QTimer反复检查:
class MyClass:public QObject
{
Q_OBJECT
QTimer timer;
Tablet tablet;
public:
MyClass(QObject * parent = 0) : QObject(parent)
{
connect(&timer, SIGNAL(timeout()), SLOT(connected());
timer.setSingleShot(false);
timer.setInterval(3000);
timer.start();
}
Q_SLOT void connected()
{
if (!tablet.isConnected())
{
LogText("[Prep] Tablet not turned back on... Retrying...");
return;//wait for next timeout from the timer
}
LogText("[Prep] Tablet Detected!");
timer.stop();
//do some processing
}
}
在 GUI Thread 中长时间操作不是一个好主意。您必须为长任务(或线程池)创建另一个线程。见std::thread
或QTThread
。甚至std::async
。