]> git.lyx.org Git - lyx.git/blobdiff - src/undo.h
fix reading the author field.
[lyx.git] / src / undo.h
index 17fc89dc62309c559f3fcf4b2822d1a7e46b4849..501ace924e1b0bc713d4d9b6ff9ea66ace85b1ed 100644 (file)
@@ -16,7 +16,9 @@
 #ifndef UNDO_H
 #define UNDO_H
 
+#include "dociterator.h"
 #include "ParagraphList_fwd.h"
+
 #include "support/types.h"
 
 #include <string>
@@ -47,26 +49,18 @@ struct Undo {
                ATOMIC
        };
 
-       /// which kind of operation are we recording for?
+       /// Which kind of operation are we recording for?
        undo_kind kind;
-       /// hosting LyXText counted from buffer begin
-       int text;
-       /// cell in a tabular or similar
-       int index;
-       /// offset to the first paragraph in the paragraph list
-       int first_par;
-       /// offset to the last paragraph from the end of paragraph list
-       int end_par;
-       /// offset to the first paragraph in the paragraph list
-       int cursor_par;
-       /// the position of the cursor in the hosting paragraph
-       int cursor_pos;
+       /// the position of the cursor
+       StableDocIterator cursor;
+       /// counted from begin of buffer
+       lyx::par_type from;
+       /// complement to end of this cell
+       lyx::par_type end;
        /// the contents of the saved paragraphs (for texted)
        ParagraphList pars;
        /// the contents of the saved matharray (for mathed)
        std::string array;
-       /// in mathed?
-       bool math;
 };
 
 
@@ -79,12 +73,6 @@ bool textRedo(BufferView &);
 /// makes sure the next operation will be stored
 void finishUndo();
 
-/// whilst undo is frozen, no actions gets added to the undo stack
-void freezeUndo();
-
-/// track undos again
-void unFreezeUndo();
-
 
 /**
  * Record undo information - call with the current cursor and the 'other
@@ -93,19 +81,22 @@ void unFreezeUndo();
  * will record the original information of the paragraphs in the undo stack.
  */
 
-/// the common case: prepare undo for an arbitrary range
+/// The general case: prepare undo for an arbitrary range.
 void recordUndo(LCursor & cur, Undo::undo_kind kind,
-       lyx::paroffset_type from, lyx::paroffset_type to);
+       lyx::par_type from, lyx::par_type to);
 
-/// convienience: prepare undo for the range between 'from' and cursor.
-void recordUndo(LCursor & cur, Undo::undo_kind kind, lyx::paroffset_type from);
+/// Convenience: prepare undo for the range between 'from' and cursor.
+void recordUndo(LCursor & cur, Undo::undo_kind kind, lyx::par_type from);
 
-/// convienience: prepare undo for the single paragraph containing the cursor
+/// Convenience: prepare undo for the single paragraph or cell
+/// containing the cursor
 void recordUndo(LCursor & cur, Undo::undo_kind kind = Undo::ATOMIC);
-/// convienience: prepare undo for the selected paragraphs
+/// Convenience: prepare undo for the inset containing the cursor
+void recordUndoInset(LCursor & cur, Undo::undo_kind kind = Undo::ATOMIC);
+/// Convenience: prepare undo for the selected paragraphs
 void recordUndoSelection(LCursor & cur, Undo::undo_kind kind = Undo::ATOMIC);
 
-/// convienience: prepare undo for the single paragraph containing the cursor
+/// Convenience: prepare undo for the single paragraph containing the cursor
 void recordUndoFullDocument(LCursor & cur);
 
 #endif // UNDO_FUNCS_H