1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/OSBindings/Qt/functionthread.h
2020-06-15 00:00:44 -04:00

38 lines
755 B
C++

#ifndef FUNCTIONTHREAD_H
#define FUNCTIONTHREAD_H
#include <QThread>
/*!
* \brief The LambdaThread class
*
* Provides a QThread which performs a supplied lambda before kicking off its event loop.
*
* Disclaimer: this might be a crutch that reveals a misunderstanding of the Qt
* threading infrastructure. We'll see.
*/
class FunctionThread: public QThread {
public:
FunctionThread() : QThread() {}
void setFunction(const std::function<void(void)> &function) {
this->function = function;
}
void run() override {
function();
exec();
}
void stop() {
// QMetaObject::invokeMethod(this, "quit", Qt::QueuedConnection);
quit();
wait();
}
private:
std::function<void(void)> function;
};
#endif // FUNCTIONTHREAD_H