]> git.lyx.org Git - lyx.git/blobdiff - src/Compare.h
More no-math fonts
[lyx.git] / src / Compare.h
index 39ba46967146f3aa8aefe4412cb552e9fc82907f..f07ecea714280060348179115aebe8e0b15ef1fe 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <QObject>
 #include <QThread>
+#include <QTimer>
 #include <QWaitCondition>
 
 #include <string>
@@ -73,8 +74,15 @@ Q_SIGNALS:
        /// Sets the maximum value of the progress bar in the dialog.
        void progressMax(int max) const;
 
+       /// A message describing the process
+       void statusMessage(QString msg) const;
+
+public Q_SLOTS:
+       /// Emits the status message signal
+       void doStatusMessage();
+
 public:
-       /// QThread inherited methods
+       /// \name QThread inherited methods
        //@{
        void run();
        //@}
@@ -99,6 +107,9 @@ private:
        ///
        QWaitCondition condition_;
 
+       /// Emit a statusMessage signal from time to time
+       QTimer status_timer_;
+
        /// Use the Pimpl idiom to hide the internals.
        class Impl;
        ///