This class implements an undo stack
Пример #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());
				}
			}
		}
Пример #2
0
 public UndoableSetCaretPosition(UndoStack stack, Point pos)
 {
     this.stack = stack;
     this.pos   = pos;
 }
Пример #3
0
 public UndoableSetCaretPosition(UndoStack stack, TextLocation pos)
 {
     this.stack = stack;
     this.pos = pos;
 }
Пример #4
0
 public UndoableSetCaretPosition(UndoStack stack, TextLocation pos)
 {
     this.stack = stack;
     this.pos   = pos;
 }
Пример #5
0
			public UndoableSetCaretPosition(UndoStack stack, Point pos)
			{
				this.stack = stack;
				this.pos = pos;
			}