]> git.lyx.org Git - lyx.git/blobdiff - src/Changes.cpp
english_language was not used at all.
[lyx.git] / src / Changes.cpp
index 6b5979b0bb00115ca351c6e18a7ff3fbdf08aaa7..7b711172ecaa84aaf4fd97c551495aa7120386b2 100644 (file)
 #include <config.h>
 
 #include "Changes.h"
-#include "debug.h"
 #include "Author.h"
 #include "BufferParams.h"
 #include "LaTeXFeatures.h"
 
-#include <boost/assert.hpp>
+#include "support/debug.h"
 
+#include "support/lassert.h"
 
-namespace lyx {
+#include <ostream>
+
+using namespace std;
 
-using std::abs;
-using std::endl;
-using std::string;
-using std::max;
+namespace lyx {
 
 /*
  * Class Change has a changetime field that specifies the exact time at which
@@ -37,18 +36,16 @@ using std::max;
  * When merging two adjacent changes, the changetime is not considered,
  * only the equality of the change type and author is checked (in method
  * isSimilarTo(...)). If two changes are in fact merged (in method merge()),
- * the later change time is preserved. 
+ * the later change time is preserved.
  */
 
 bool Change::isSimilarTo(Change const & change)
 {
-       if (type != change.type) {
+       if (type != change.type)
                return false;
-       }
 
-       if (type == Change::UNCHANGED) {
+       if (type == Change::UNCHANGED)
                return true;
-       }
 
        return author == change.author;
 }
@@ -56,17 +53,14 @@ bool Change::isSimilarTo(Change const & change)
 
 bool operator==(Change const & l, Change const & r)
 {
-       if (l.type != r.type) {
+       if (l.type != r.type)
                return false;
-       }
 
        // two changes of type UNCHANGED are always equal
-       if (l.type == Change::UNCHANGED) {
+       if (l.type == Change::UNCHANGED)
                return true;
-       }
-       
-       return l.author == r.author &&
-              l.changetime == r.changetime;
+
+       return l.author == r.author && l.changetime == r.changetime;
 }
 
 
@@ -103,9 +97,10 @@ void Changes::set(Change const & change, pos_type const pos)
 void Changes::set(Change const & change, pos_type const start, pos_type const end)
 {
        if (change.type != Change::UNCHANGED) {
-               LYXERR(Debug::CHANGES) << "setting change (type: " << change.type
-                       << ", author: " << change.author << ", time: " << change.changetime
-                       << ") in range (" << start << ", " << end << ")" << endl;
+               LYXERR(Debug::CHANGES, "setting change (type: " << change.type
+                       << ", author: " << change.author 
+                       << ", time: " << long(change.changetime)
+                       << ") in range (" << start << ", " << end << ")");
        }
 
        Range const newRange(start, end);
@@ -123,14 +118,14 @@ void Changes::set(Change const & change, pos_type const start, pos_type const en
                        pos_type oldEnd = it->range.end;
                        it->range.end = start;
 
-                       LYXERR(Debug::CHANGES) << "  cutting tail of type " << it->change.type
+                       LYXERR(Debug::CHANGES, "  cutting tail of type " << it->change.type
                                << " resulting in range (" << it->range.start << ", "
-                               << it->range.end << ")" << endl;
+                               << it->range.end << ")");
 
                        ++it;
                        if (oldEnd >= end) {
-                               LYXERR(Debug::CHANGES) << "  inserting tail in range ("
-                                       << end << ", " << oldEnd << ")" << endl;
+                               LYXERR(Debug::CHANGES, "  inserting tail in range ("
+                                       << end << ", " << oldEnd << ")");
                                it = table_.insert(it, ChangeRange((it-1)->change, Range(end, oldEnd)));
                        }
                        continue;
@@ -140,7 +135,7 @@ void Changes::set(Change const & change, pos_type const start, pos_type const en
        }
 
        if (change.type != Change::UNCHANGED) {
-               LYXERR(Debug::CHANGES) << "  inserting change" << endl;
+               LYXERR(Debug::CHANGES, "  inserting change");
                it = table_.insert(it, ChangeRange(change, Range(start, end)));
                ++it;
        }
@@ -148,22 +143,21 @@ void Changes::set(Change const & change, pos_type const start, pos_type const en
        for (; it != table_.end(); ) {
                // new change 'contains' existing change
                if (newRange.contains(it->range)) {
-                       LYXERR(Debug::CHANGES) << "  removing subrange ("
-                               << it->range.start << ", " << it->range.end << ")" << endl;
+                       LYXERR(Debug::CHANGES, "  removing subrange ("
+                               << it->range.start << ", " << it->range.end << ")");
                        it = table_.erase(it);
                        continue;
                }
 
                // new change precedes existing change
-               if (it->range.start >= end) {
+               if (it->range.start >= end)
                        break;
-               }
 
                // new change intersects with existing change
                it->range.start = end;
-               LYXERR(Debug::CHANGES) << "  cutting head of type "
+               LYXERR(Debug::CHANGES, "  cutting head of type "
                        << it->change.type << " resulting in range ("
-                       << end << ", " << it->range.end << ")" << endl;
+                       << end << ", " << it->range.end << ")");
                break; // no need for another iteration
        }
 
@@ -173,20 +167,18 @@ void Changes::set(Change const & change, pos_type const start, pos_type const en
 
 void Changes::erase(pos_type const pos)
 {
-       LYXERR(Debug::CHANGES) << "Erasing change at position " << pos << endl;
+       LYXERR(Debug::CHANGES, "Erasing change at position " << pos);
 
        ChangeTable::iterator it = table_.begin();
        ChangeTable::iterator end = table_.end();
 
        for (; it != end; ++it) {
                // range (pos,pos+x) becomes (pos,pos+x-1)
-               if (it->range.start > pos) {
+               if (it->range.start > pos)
                        --(it->range.start);
-               }
                // range (pos-x,pos) stays (pos-x,pos)
-               if (it->range.end > pos) {
+               if (it->range.end > pos)
                        --(it->range.end);
-               }
        }
 
        merge();
@@ -196,8 +188,8 @@ void Changes::erase(pos_type const pos)
 void Changes::insert(Change const & change, lyx::pos_type pos)
 {
        if (change.type != Change::UNCHANGED) {
-               LYXERR(Debug::CHANGES) << "Inserting change of type " << change.type
-                       << " at position " << pos << endl;
+               LYXERR(Debug::CHANGES, "Inserting change of type " << change.type
+                       << " at position " << pos);
        }
 
        ChangeTable::iterator it = table_.begin();
@@ -205,14 +197,12 @@ void Changes::insert(Change const & change, lyx::pos_type pos)
 
        for (; it != end; ++it) {
                // range (pos,pos+x) becomes (pos+1,pos+x+1)
-               if (it->range.start >= pos) {
+               if (it->range.start >= pos)
                        ++(it->range.start);
-               }
 
                // range (pos-x,pos) stays as it is
-               if (it->range.end > pos) {
+               if (it->range.end > pos)
                        ++(it->range.end);
-               }
        }
 
        set(change, pos, pos + 1); // set will call merge
@@ -222,7 +212,7 @@ void Changes::insert(Change const & change, lyx::pos_type pos)
 Change const & Changes::lookup(pos_type const pos) const
 {
        static Change const noChange = Change(Change::UNCHANGED);
-               
+
        ChangeTable::const_iterator it = table_.begin();
        ChangeTable::const_iterator const end = table_.end();
 
@@ -242,10 +232,10 @@ bool Changes::isChanged(pos_type const start, pos_type const end) const
 
        for (; it != itend; ++it) {
                if (it->range.intersects(Range(start, end))) {
-                       LYXERR(Debug::CHANGES) << "found intersection of range ("
+                       LYXERR(Debug::CHANGES, "found intersection of range ("
                                << start << ", " << end << ") with ("
                                << it->range.start << ", " << it->range.end
-                               << ") of type " << it->change.type << endl;
+                               << ") of type " << it->change.type);
                        return true;
                }
        }
@@ -258,13 +248,13 @@ void Changes::merge()
        ChangeTable::iterator it = table_.begin();
 
        while (it != table_.end()) {
-               LYXERR(Debug::CHANGES) << "found change of type " << it->change.type
+               LYXERR(Debug::CHANGES, "found change of type " << it->change.type
                        << " and range (" << it->range.start << ", " << it->range.end
-                       << ")" << endl;
+                       << ")");
 
                if (it->range.start == it->range.end) {
-                       LYXERR(Debug::CHANGES) << "removing empty range for pos "
-                               << it->range.start << endl;
+                       LYXERR(Debug::CHANGES, "removing empty range for pos "
+                               << it->range.start);
 
                        table_.erase(it);
                        // start again
@@ -275,14 +265,15 @@ void Changes::merge()
                if (it + 1 == table_.end())
                        break;
 
-               if (it->change.isSimilarTo((it + 1)->change) && it->range.end == (it + 1)->range.start) {
-                       LYXERR(Debug::CHANGES) << "merging ranges (" << it->range.start << ", "
+               if (it->change.isSimilarTo((it + 1)->change)
+                   && it->range.end == (it + 1)->range.start) {
+                       LYXERR(Debug::CHANGES, "merging ranges (" << it->range.start << ", "
                                << it->range.end << ") and (" << (it + 1)->range.start << ", "
-                               << (it + 1)->range.end << ")" << endl;
+                               << (it + 1)->range.end << ")");
 
                        (it + 1)->range.start = it->range.start;
                        (it + 1)->change.changetime = max(it->change.changetime,
-                                                         (it + 1)->change.changetime);
+                                                         (it + 1)->change.changetime);
                        table_.erase(it);
                        // start again
                        it = table_.begin();
@@ -314,7 +305,7 @@ int Changes::latexMarkChange(odocstream & os, BufferParams const & bparams,
        if (change.type == Change::DELETED) {
                docstring str = "\\lyxdeleted{" +
                        bparams.authors().get(change.author).name() + "}{" +
-                       chgTime + "}{"; 
+                       chgTime + "}{";
                os << str;
                column += str.size();
        } else if (change.type == Change::INSERTED) {
@@ -329,7 +320,7 @@ int Changes::latexMarkChange(odocstream & os, BufferParams const & bparams,
 }
 
 
-void Changes::lyxMarkChange(std::ostream & os, int & column,
+void Changes::lyxMarkChange(ostream & os, int & column,
                            Change const & old, Change const & change)
 {
        if (old == change)
@@ -357,4 +348,13 @@ void Changes::lyxMarkChange(std::ostream & os, int & column,
 }
 
 
+void Changes::checkAuthors(AuthorList const & authorList)
+{
+       ChangeTable::const_iterator it = table_.begin();
+       ChangeTable::const_iterator endit = table_.end();
+       for ( ; it != endit ; ++it) 
+               if (it->change.type != Change::UNCHANGED)
+                       authorList.get(it->change.author).setUsed(true);
+}
+
 } // namespace lyx