]> git.lyx.org Git - lyx.git/blobdiff - src/Compare.h
Remove it for real now.
[lyx.git] / src / Compare.h
index f2583aebaa87346b42c29091fed9a9090ff12ca4..f94761fc57628a2b7ff188a7927a61b47b4889de 100644 (file)
 
 #include "support/FileName.h"
 
-#include <string>
-
 #include <QObject>
 #include <QThread>
+#include <QTimer>
 #include <QWaitCondition>
 
+#include <string>
+
 
 namespace lyx {
 
@@ -73,6 +74,13 @@ 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
        //@{
@@ -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;
        ///