X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCompare.h;h=df2c7facd53f24f02f155e4bced14cdb732f26cc;hb=26ba2a65838731ce639a09539f617cb0f0be3b22;hp=5458c5a3f2a5f8c6a6d9339c7cd440c6bb95f6ed;hpb=18483e636249921efbe1996aa073da05af071af9;p=lyx.git diff --git a/src/Compare.h b/src/Compare.h index 5458c5a3f2..df2c7facd5 100644 --- a/src/Compare.h +++ b/src/Compare.h @@ -12,20 +12,17 @@ #ifndef COMPARE_H #define COMPARE_H -#include "Buffer.h" - -#include "support/FileName.h" - -#include - #include #include +#include #include namespace lyx { -/** +class Buffer; + +/** * The options that are used by the Comparison algorithm * and are set in the GuiCompare Dialog. */ @@ -33,11 +30,13 @@ class CompareOptions { public: /// CompareOptions() - : settings_from_new(0) + : settings_from_new(0), author(0) {} - + /// Copy the settings from the new or old document bool settings_from_new; + /// Author id for change tracking + bool author; }; /** @@ -60,8 +59,11 @@ public: } Q_SIGNALS: + /// The thread has finished due to an error. + void error() const; + /// The thread has finished. If the thread is cancelled - /// by the user or due to an error \c aborted is true. + /// by the user \c aborted is true. void finished(bool aborted) const; /// Adds \c progress to the value of the progress bar in the dialog @@ -70,8 +72,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(); //@} @@ -82,20 +91,23 @@ public: private: /// Starts the comparison algorithm int doCompare(); - - /// The buffer with the differences marked with track changes - Buffer * const dest_buffer; - /// The old document's buffer - Buffer const * const old_buffer; + /// The new document's buffer Buffer const * const new_buffer; - + /// The old document's buffer + Buffer const * const old_buffer; + /// The buffer with the differences marked with track changes + Buffer * const dest_buffer; + /// The options that are set in the GuiCompare dialog CompareOptions options_; /// QWaitCondition condition_; + /// Emit a statusMessage signal from time to time + QTimer status_timer_; + /// Use the Pimpl idiom to hide the internals. class Impl; ///