我有一个主 Qt 应用程序,我正在开发一个从该主应用程序链接到的 Qt 库。从主应用程序中,我希望调用库中的一个函数来执行某些操作,然后在例程结束时调用一个 QTimer,它会在一段时间后触发库代码中的一个 Slot。我无法让计时器触发,我不知道为什么。如果我在我的主应用程序中放置一个计时器,那么它会按预期触发,只是不在库中。
目前,我的图书馆只是一个班级。在我的库头文件中,我将希望调用的插槽定义为:
private slots:
void stop();
在实现文件中我有这个:
void MyLib::start() {
// Create a timer to user during audio operation
m_GeneralTimer = new QTimer(this);
// Fire off a oneshot to clear the buffer for fluke-media
m_GeneralTimer->setInterval(3000);
m_GeneralTimer->setSingleShot(true);
connect(m_GeneralTimer, SIGNAL(timeout()), SLOT(stop()));
m_GeneralTimer->start();
}
void MyLib::stop() {
qDebug() << "Called stop()...";
m_GeneralTimer->stop();
delete m_GeneralTimer;
}
我在这里错过了什么让计时器触发?
注意:这是我的很多头文件 - 真实文件中的所有内容都只是函数调用:
/// Use shared memory
#include <QSharedMemory>
/// Normal Qt Includes
#include <QBuffer>
#include <QDebug>
/// QTimer is required for calling a method
/// to stop audio playback at a later time
#include <QTimer>
/// Put into a background thread
#include <QtConcurrentRun>
/// Check integrity of received data
#include <QCryptographicHash>
class MYAUDIOLIBSHARED_EXPORT MyLib: public QObject
{
Q_OBJECT
public:
/// /// ///
private slots:
void stop();
/// /// ///
}