Exemplo n.º 1
0
 public void Push(NodesInfo UndoRedoBuffer)
 {
     try
     {
         this.stack.Push(UndoRedoBuffer);
         this.callback(this, new EventArgs());
     }
     catch
     {
     }
 }
Exemplo n.º 2
0
 public void Push(NodesInfo UndoRedoBuffer)
 {
     try
     {
         this.stack.Push(UndoRedoBuffer);
         this.callback(this, new EventArgs());
     }
     catch
     {
     }
 }
Exemplo n.º 3
0
        public NodesInfo Pop()
        {
            NodesInfo info = null;

            try
            {
                info = stack.Pop();
                this.callback(this, new EventArgs());
            }
            catch
            {
            }
            return(info);
        }
Exemplo n.º 4
0
 private bool DoRedo()
 {
     if ((this.redo.Depth > 0))
     {
         NodesInfo info = this.redo.Pop();
         if (info != null)
         {
             this.HasSelection              = false;
             this.rootNode_                 = info.RootNode;
             this.multiSelectNode           = null;
             this.currentCaret              = 0;
             this.selectedNode              = info.SelectedNode;
             this.selectedNode.InternalMark = info.Mark;
             this.lastSelectedNode          = info.LastSelected;
             return(true);
         }
     }
     return(false);
 }