mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a040c0bc6f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
103 lines
1.6 KiB
C++
103 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-1999 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef UNDO_H
|
|
#define UNDO_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <list>
|
|
using std::list;
|
|
|
|
#include "lyxparagraph.h"
|
|
|
|
|
|
///
|
|
class Undo {
|
|
public:
|
|
/// The undo kinds
|
|
enum undo_kind {
|
|
///
|
|
INSERT,
|
|
///
|
|
DELETE,
|
|
///
|
|
EDIT,
|
|
///
|
|
FINISH
|
|
};
|
|
///
|
|
undo_kind kind;
|
|
///
|
|
int number_of_before_par;
|
|
///
|
|
int number_of_behind_par;
|
|
///
|
|
int number_of_cursor_par;
|
|
///
|
|
int cursor_pos; // valid if >= 0
|
|
///
|
|
LyXParagraph * par;
|
|
///
|
|
Undo(undo_kind kind_arg,
|
|
int number_before_arg, int number_behind_arg,
|
|
int cursor_par_arg, int cursor_pos_arg,
|
|
LyXParagraph * par_arg)
|
|
{
|
|
kind = kind_arg;
|
|
number_of_before_par = number_before_arg;
|
|
number_of_behind_par = number_behind_arg;
|
|
number_of_cursor_par = cursor_par_arg;
|
|
cursor_pos = cursor_pos_arg;
|
|
par = par_arg;
|
|
}
|
|
///
|
|
~Undo() {
|
|
LyXParagraph * tmppar;
|
|
while (par) {
|
|
tmppar = par;
|
|
par = par->next;
|
|
delete tmppar;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
/// A limited Stack for the undo informations.
|
|
class UndoStack{
|
|
private:
|
|
///
|
|
typedef list<Undo*> Stakk;
|
|
///
|
|
Stakk stakk;
|
|
/// the maximum number of undo steps stored.
|
|
Stakk::size_type limit;
|
|
public:
|
|
///
|
|
UndoStack();
|
|
///
|
|
Undo * Pop();
|
|
///
|
|
Undo * Top();
|
|
///
|
|
~UndoStack();
|
|
///
|
|
void Clear();
|
|
///
|
|
void SetStackLimit(Stakk::size_type l);
|
|
///
|
|
void Push(Undo * undo_arg);
|
|
};
|
|
|
|
#endif
|