4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
10 * Full author contact details are available in file CREDITS.
12 * Record changes in a paragraph.
20 #include "support/strfwd.h"
21 #include "support/types.h"
22 #include "support/lyxtime.h"
35 /// the type of change
37 UNCHANGED
, // no change
39 DELETED
// deleted text
42 explicit Change(Type t
= UNCHANGED
, int a
= 0, time_t ct
= current_time())
43 : type(t
), author(a
), changetime(ct
) {}
45 /// is the change similar to the given change such that both can be merged?
46 bool isSimilarTo(Change
const & change
) const;
47 /// The color of this change on screen
50 bool changed() const { return type
!= UNCHANGED
; }
52 void setUnchanged() { type
= UNCHANGED
; }
54 bool inserted() const { return type
== INSERTED
; }
56 void setInserted() { type
= INSERTED
; }
58 bool deleted() const { return type
== DELETED
; }
60 void setDeleted() { type
= DELETED
; }
69 bool operator==(Change
const & l
, Change
const & r
);
70 bool operator!=(Change
const & l
, Change
const & r
);
76 /// set the pos to the given change
77 void set(Change
const & change
, pos_type pos
);
78 /// set the range (excluding end) to the given change
79 void set(Change
const & change
, pos_type start
, pos_type end
);
81 /// erase the entry at pos and adjust all range bounds past it
82 /// (assumes that a character was deleted at pos)
83 void erase(lyx::pos_type pos
);
85 /// insert a new entry at pos and adjust all range bounds past it
86 /// (assumes that a character was inserted at pos)
87 void insert(Change
const & change
, lyx::pos_type pos
);
91 /// return the change at the given pos
92 Change
const & lookup(pos_type pos
) const;
94 /// return true if there is a change in the given range (excluding end)
95 bool isChanged(pos_type start
, pos_type end
) const;
97 /// output latex to mark a transition between two change types
98 /// returns length of text outputted
99 static int latexMarkChange(odocstream
& os
, BufferParams
const & bparams
,
100 Change
const & oldChange
, Change
const & change
);
102 /// output .lyx file format for transitions between changes
103 static void lyxMarkChange(std::ostream
& os
, int & column
,
104 Change
const & old
, Change
const & change
);
107 void checkAuthors(AuthorList
const & authorList
);
110 void addToToc(DocIterator
const & cdit
, Buffer
const & buffer
) const;
115 Range(pos_type s
, pos_type e
)
116 : start(s
), end(e
) {}
118 // does this range contain r ? (inlined as the result of profiling)
119 bool contains(Range
const & r
) const {
120 return r
.start
>= start
&& r
.end
<= end
;
123 // does this range contain pos ? (inlined as the result of profiling)
124 bool contains(pos_type pos
) const {
125 return pos
>= start
&& pos
< end
;
128 // do the ranges intersect ?
129 bool intersects(Range
const & r
) const;
132 pos_type end
; // Caution: end is not in the range!
135 friend bool operator==(Range
const & r1
, Range
const & r2
);
136 friend bool operator!=(Range
const & r1
, Range
const & r2
);
140 ChangeRange(Change
const & c
, Range
const & r
)
141 : change(c
), range(r
) {}
147 /// merge equal changes with adjoining ranges
150 typedef std::vector
<ChangeRange
> ChangeTable
;
152 /// table of changes, every row a change and range descriptor