2010-10-20 23:50:49 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InGuiThread.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Peter Kümmel
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INGUITHREAD_H
|
|
|
|
#define INGUITHREAD_H
|
|
|
|
|
2010-10-21 21:29:08 +00:00
|
|
|
#include <QMutex>
|
2010-10-20 23:50:49 +00:00
|
|
|
#include <QObject>
|
2010-10-21 21:29:08 +00:00
|
|
|
#include <QWaitCondition>
|
2010-10-20 23:50:49 +00:00
|
|
|
|
|
|
|
#include "support/bind.h"
|
|
|
|
#include "support/functional.h"
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
|
|
|
|
class IntoGuiThreadMover : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
IntoGuiThreadMover();
|
|
|
|
|
|
|
|
void callInGuiThread();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2010-10-21 21:29:08 +00:00
|
|
|
void triggerFunctionCall();
|
2010-10-20 23:50:49 +00:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void doFunctionCall();
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void synchronousFunctionCall() = 0;
|
2010-10-21 21:29:08 +00:00
|
|
|
|
|
|
|
QWaitCondition condition_;
|
|
|
|
QMutex sync_mutex_;
|
2010-10-20 23:50:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<class R>
|
|
|
|
class InGuiThread : private IntoGuiThreadMover
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
InGuiThread() {}
|
|
|
|
|
|
|
|
template<class F>
|
|
|
|
R call(F f)
|
|
|
|
{
|
|
|
|
func_ = f;
|
|
|
|
callInGuiThread();
|
|
|
|
return return_value_;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1>
|
|
|
|
R call(F f, P1 p1)
|
|
|
|
{
|
|
|
|
return call(bind(f, p1));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2>
|
|
|
|
R call(F f, P1 p1, P2 p2)
|
|
|
|
{
|
|
|
|
return call(bind(f, p1, p2));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3>
|
|
|
|
R call(F f, P1 p1, P2 p2, P3 p3)
|
|
|
|
{
|
|
|
|
return call(bind(f, p1, p2, p3));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3, class P4>
|
|
|
|
R call(F f, P1 p1, P2 p2, P3 p3, P4 p4)
|
|
|
|
{
|
|
|
|
return call(bind(f, p1, p2, p3, p4));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
...
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3, class P4, class P5, class P6, class P7, class P8>
|
|
|
|
R call(F f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8)
|
|
|
|
{
|
|
|
|
return call(bind(f, p1, p2, p3, p4, p5, p6, p7, p8));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void synchronousFunctionCall()
|
|
|
|
{
|
|
|
|
return_value_ = func_();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
R return_value_;
|
|
|
|
function<R()> func_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// void specialisation
|
|
|
|
template<>
|
|
|
|
class InGuiThread<void> : private IntoGuiThreadMover
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
InGuiThread() {}
|
|
|
|
|
|
|
|
template<class F>
|
|
|
|
void call(F f)
|
|
|
|
{
|
|
|
|
func_ = f;
|
|
|
|
callInGuiThread();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1>
|
|
|
|
void call(F f, P1 p1)
|
|
|
|
{
|
|
|
|
call(bind(f, p1));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2>
|
|
|
|
void call(F f, P1 p1, P2 p2)
|
|
|
|
{
|
|
|
|
call(bind(f, p1, p2));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3>
|
|
|
|
void call(F f, P1 p1, P2 p2, P3 p3)
|
|
|
|
{
|
|
|
|
call(bind(f, p1, p2, p3));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3, class P4>
|
|
|
|
void call(F f, P1 p1, P2 p2, P3 p3, P4 p4)
|
|
|
|
{
|
|
|
|
call(bind(f, p1, p2, p3, p4));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
...
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<class F, class P1, class P2, class P3, class P4, class P5, class P6, class P7, class P8>
|
|
|
|
void call(F f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8)
|
|
|
|
{
|
|
|
|
call(bind(f, p1, p2, p3, p4, p5, p6, p7, p8));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void synchronousFunctionCall()
|
|
|
|
{
|
|
|
|
func_();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
function<void()> func_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2010-10-21 22:04:06 +00:00
|
|
|
#endif // INGUITHREAD_H
|