2003-08-23 00:17:00 +00:00
|
|
|
// -*- C++ -*-
|
2003-02-08 19:18:01 +00:00
|
|
|
/**
|
|
|
|
* \file changes.h
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2003-02-08 19:18:01 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-08 19:18:01 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Record changes in a paragraph.
|
2003-02-08 19:18:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CHANGES_H
|
|
|
|
#define CHANGES_H
|
|
|
|
|
|
|
|
#include "support/types.h"
|
|
|
|
#include "support/lyxtime.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <iosfwd>
|
2003-09-07 21:25:37 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class Change {
|
|
|
|
public:
|
2003-02-08 19:18:01 +00:00
|
|
|
/// the type of change
|
|
|
|
enum Type {
|
|
|
|
UNCHANGED, // no change
|
|
|
|
INSERTED, // new text
|
|
|
|
DELETED // deleted text
|
|
|
|
};
|
|
|
|
|
2006-10-11 20:01:32 +00:00
|
|
|
explicit Change(Type t, int a = 0, lyx::time_type ct = 0)
|
2003-02-08 19:18:01 +00:00
|
|
|
: type(t), author(a), changetime(ct) {}
|
|
|
|
|
2003-03-02 12:16:00 +00:00
|
|
|
Type type;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
int author;
|
|
|
|
|
2003-03-02 12:16:00 +00:00
|
|
|
lyx::time_type changetime;
|
2003-02-08 19:18:01 +00:00
|
|
|
};
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
bool operator==(Change const & l, Change const & r);
|
|
|
|
bool operator!=(Change const & l, Change const & r);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
class Changes {
|
|
|
|
public:
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Changes(Change::Type type);
|
|
|
|
|
|
|
|
~Changes();
|
|
|
|
|
|
|
|
Changes(Changes const &);
|
|
|
|
|
|
|
|
/// reset "default" change type (for empty pars)
|
|
|
|
void reset(Change::Type type) {
|
|
|
|
empty_type_ = type;
|
|
|
|
}
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// set the position to the given change
|
2006-10-19 07:12:48 +00:00
|
|
|
void set(Change const & change, lyx::pos_type pos);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// set the position to the given change
|
|
|
|
void set(Change::Type, lyx::pos_type pos);
|
|
|
|
|
|
|
|
/// set the range to the given change
|
|
|
|
void set(Change::Type, lyx::pos_type start, lyx::pos_type end);
|
|
|
|
|
|
|
|
/// set the range to the given change
|
2006-10-19 07:12:48 +00:00
|
|
|
void set(Change const & change, lyx::pos_type start, lyx::pos_type end);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// mark the given change and adjust
|
2006-10-19 07:12:48 +00:00
|
|
|
void record(Change const & change, lyx::pos_type pos);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// return the change at the given position
|
2006-05-08 20:30:52 +00:00
|
|
|
Change const lookup(lyx::pos_type pos) const;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// return true if there is a change in the given range
|
|
|
|
bool isChange(lyx::pos_type start, lyx::pos_type end) const;
|
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// remove the given entry. This implies that a character was
|
|
|
|
/// deleted at pos, and will adjust all range bounds past it
|
2003-02-08 19:18:01 +00:00
|
|
|
void erase(lyx::pos_type pos);
|
|
|
|
|
|
|
|
/// output latex to mark a transition between two changetypes
|
|
|
|
/// returns length of text outputted
|
2005-04-26 11:12:20 +00:00
|
|
|
static int latexMarkChange(std::ostream & os, Change::Type old,
|
2005-01-24 17:12:19 +00:00
|
|
|
Change::Type change, bool const & output);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// output .lyx file format for transitions between changes
|
|
|
|
static void lyxMarkChange(std::ostream & os, int & column,
|
|
|
|
lyx::time_type curtime, Change const & old, Change const & change);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
private:
|
2005-01-19 15:03:31 +00:00
|
|
|
class Range {
|
|
|
|
public:
|
2003-02-08 19:18:01 +00:00
|
|
|
Range(lyx::pos_type s, lyx::pos_type e)
|
|
|
|
: start(s), end(e) {}
|
|
|
|
|
|
|
|
// does this range contain r ?
|
|
|
|
bool contains(Range const & r) const;
|
|
|
|
|
|
|
|
// does this range contain pos ?
|
|
|
|
bool contains(lyx::pos_type pos) const;
|
|
|
|
|
|
|
|
// does this range contain pos, or can it be appended ?
|
2006-05-08 20:30:52 +00:00
|
|
|
bool containsOrPrecedes(lyx::pos_type pos) const;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
// is this range contained within r ?
|
|
|
|
bool contained(Range const & r) const;
|
|
|
|
|
|
|
|
// do the ranges intersect ?
|
|
|
|
bool intersects(Range const & r) const;
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
lyx::pos_type start;
|
|
|
|
lyx::pos_type end;
|
|
|
|
};
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
friend bool operator==(Range const & r1, Range const & r2);
|
|
|
|
friend bool operator!=(Range const & r1, Range const & r2);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class ChangeRange {
|
|
|
|
public:
|
2006-10-19 07:12:48 +00:00
|
|
|
ChangeRange(lyx::pos_type s, lyx::pos_type e, Change const & c)
|
2003-02-08 19:18:01 +00:00
|
|
|
: range(Range(s, e)), change(c) {}
|
|
|
|
Range range;
|
|
|
|
Change change;
|
|
|
|
};
|
2003-03-02 12:16:00 +00:00
|
|
|
|
|
|
|
typedef std::vector<ChangeRange> ChangeTable;
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// our table of changes, every row a range and change descriptor
|
2003-02-08 19:18:01 +00:00
|
|
|
ChangeTable table_;
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// change type for an empty paragraph
|
|
|
|
Change::Type empty_type_;
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// handle a delete, either logical or physical (see erase)
|
2006-10-19 07:12:48 +00:00
|
|
|
void del(Change const & change, ChangeTable::size_type pos);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// handle an add, adjusting range bounds past it
|
2006-10-19 07:12:48 +00:00
|
|
|
void add(Change const & change, ChangeTable::size_type pos);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// merge neighbouring ranges, assuming that they are abutting
|
|
|
|
/// (as done by set())
|
2003-02-08 19:18:01 +00:00
|
|
|
void merge();
|
|
|
|
|
2006-03-16 06:54:08 +00:00
|
|
|
/// consistency check, needed before merge()
|
2003-02-08 19:18:01 +00:00
|
|
|
void check() const;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHANGES_H
|