]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/InGuiThread.h
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / InGuiThread.h
index 6d3b778a04eafb924bad289925c3d9620f225d94..ea5d64b0ddd4481abceba84065d359c801d3653a 100644 (file)
 #ifndef INGUITHREAD_H
 #define INGUITHREAD_H
 
+#include <QMutex>
 #include <QObject>
+#include <QWaitCondition>
 
 #include "support/bind.h"
 #include "support/functional.h"
 
+#if QT_VERSION < 0x040400
+#define Q_EMIT
+#endif
+
 namespace lyx {
 namespace frontend {
 
@@ -32,14 +38,16 @@ protected:
        void callInGuiThread();
 
 Q_SIGNALS:
-       void triggerCall();
-       void called();
+       void triggerFunctionCall();
 
 private Q_SLOTS:
        void doFunctionCall();
 
 private:
        virtual void synchronousFunctionCall() = 0;
+
+       QWaitCondition condition_;
+       QMutex sync_mutex_;
 };
 
 
@@ -59,27 +67,27 @@ public:
        }
 
        template<class F, class P1>
-       R call(F f, P1 p1)
+       R call(F f, P1& p1)
        {
-               return call(bind(f, p1));
+               return call(bind(f, ref(p1)));
        }
 
        template<class F, class P1, class P2>
-       R call(F f, P1 p1, P2 p2)
+       R call(F f, P1& p1, P2& p2)
        {
-               return call(bind(f, p1, p2));
+               return call(bind(f, ref(p1), ref(p2)));
        }
 
        template<class F, class P1, class P2, class P3>
-       R call(F f, P1 p1, P2 p2, P3 p3)
+       R call(F f, P1& p1, P2& p2, P3& p3)
        {
-               return call(bind(f, p1, p2, p3));
+               return call(bind(f, ref(p1), ref(p2), ref(p3)));
        }
 
        template<class F, class P1, class P2, class P3, class P4>
-       R call(F f, P1 p1, P2 p2, P3 p3, P4 p4)
+       R call(F f, P1& p1, P2& p2, P3& p3, P4& p4)
        {
-               return call(bind(f, p1, p2, p3, p4));
+               return call(bind(f, ref(p1), ref(p2), ref(p3), ref(p4)));
        }
 
        /*
@@ -87,9 +95,9 @@ public:
        */
 
        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)
+       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));
+               return call(bind(f, ref(p1), ref(p2), ref(p3), ref(p4), ref(p5), ref(p6), ref(p7), ref(p8)));
        }
 
 private:
@@ -121,27 +129,27 @@ public:
        }
 
        template<class F, class P1>
-       void call(F f, P1 p1)
+       void call(F f, P1& p1)
        {
-               call(bind(f, p1));
+               call(bind(f, ref(p1)));
        }
 
        template<class F, class P1, class P2>
-       void call(F f, P1 p1, P2 p2)
+       void call(F f, P1& p1, P2& p2)
        {
-               call(bind(f, p1, p2));
+               call(bind(f, ref(p1), ref(p2)));
        }
 
        template<class F, class P1, class P2, class P3>
-       void call(F f, P1 p1, P2 p2, P3 p3)
+       void call(F f, P1& p1, P2& p2, P3& p3)
        {
-               call(bind(f, p1, p2, p3));
+               call(bind(f, ref(p1), ref(p2), ref(p3)));
        }
 
        template<class F, class P1, class P2, class P3, class P4>
-       void call(F f, P1 p1, P2 p2, P3 p3, P4 p4)
+       void call(F f, P1& p1, P2& p2, P3& p3, P4& p4)
        {
-               call(bind(f, p1, p2, p3, p4));
+               call(bind(f, ref(p1), ref(p2), ref(p3), ref(p4)));
        }
 
        /*
@@ -149,9 +157,9 @@ public:
        */
 
        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)
+       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));
+               call(bind(f, ref(p1), ref(p2), ref(p3), ref(p4), ref(p5), ref(p6), ref(p7), ref(p8)));
        }
 
 private:
@@ -169,4 +177,4 @@ private:
 } // namespace frontend
 } // namespace lyx
 
-#endif // GUIABOUT_H
+#endif // INGUITHREAD_H