This class implements an undo stack
Exemplo n.º 1
0
		/// <summary>
		/// </summary>
		public UndoQueue(UndoStack stack, int numops)
		{
			if (stack == null)  {
				throw new ArgumentNullException("stack");
			}
			
			Debug.Assert(numops > 0 , "ICSharpCode.TextEditor.Undo.UndoQueue : numops should be > 0");
			
			for (int i = 0; i < numops; ++i) {
				if (stack._UndoStack.Count > 0) {
					undolist.Add(stack._UndoStack.Pop());
				}
			}
		}
Exemplo n.º 2
0
 public UndoableSetCaretPosition(UndoStack stack, Point pos)
 {
     this.stack = stack;
     this.pos   = pos;
 }
Exemplo n.º 3
0
 public UndoableSetCaretPosition(UndoStack stack, TextLocation pos)
 {
     this.stack = stack;
     this.pos = pos;
 }
Exemplo n.º 4
0
 public UndoableSetCaretPosition(UndoStack stack, TextLocation pos)
 {
     this.stack = stack;
     this.pos   = pos;
 }
Exemplo n.º 5
0
			public UndoableSetCaretPosition(UndoStack stack, Point pos)
			{
				this.stack = stack;
				this.pos = pos;
			}