]> git.lyx.org Git - lyx.git/blobdiff - src/undo.h
fix typo that put too many include paths for most people
[lyx.git] / src / undo.h
index 3e676b80031e41a304e75bd70ee9d0609859a95d..4ebdd89224f754a9222b54aad4646de62b982c04 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
 #pragma interface
 #endif
 
-#include <list>
-
-#include "lyxparagraph.h"
-
+class Paragraph;
 
 ///
 class Undo {
@@ -44,45 +41,19 @@ public:
        ///
        int number_of_cursor_par;
        ///
+       int number_of_inset_id; // valid if >= 0, if < 0 then not in inset
+       ///
        int cursor_pos; // valid if >= 0
        ///
-       LyXParagraph * par;
+       Paragraph * par;
        ///
-       Undo(undo_kind kind_arg,
+       Undo(undo_kind kind_arg, int id_inset_arg,
             int number_before_arg, int number_behind_arg,
             int cursor_par_arg, int cursor_pos_arg,
-            LyXParagraph * par_arg);
+            Paragraph * par_arg);
        ///
        ~Undo();
 };
 
 
-/// A limited Stack for the undo informations.
-class UndoStack{
-private:
-       ///
-       typedef std::list<Undo*> Stakk;
-       ///
-       Stakk stakk;
-       /// the maximum number of undo steps stored.
-       Stakk::size_type limit;
-public:
-       ///
-       UndoStack();
-       ///
-       Undo * pop();
-       ///
-       Undo * top();
-       ///
-       bool empty() const;
-       ///
-       ~UndoStack();
-       ///
-       void clear();
-       ///
-       void SetStackLimit(Stakk::size_type l);
-       ///
-       void push(Undo * undo_arg);
-};
-
 #endif