Пример #1
0
 public TextUndoTransaction(TextUndoHistory textUndoHistory, ITextUndoTransaction parent)
 {
     _textUndoHistory = textUndoHistory;
     _state = UndoTransactionState.Open;
     _parent = parent;
     MergePolicy = new Policy();
 }
Пример #2
0
 public ITextUndoHistory RegisterHistory(object context)
 {
     ITextUndoHistory history;
     if (!_map.TryGetValue(context, out history))
     {
         history = new TextUndoHistory();
         _map.Add(context, history);
     }
     return history;
 }
Пример #3
0
        public ITextUndoHistory RegisterHistory(object context)
        {
            ITextUndoHistory history;

            if (!_map.TryGetValue(context, out history))
            {
                history = new TextUndoHistory();
                _map.Add(context, history);
            }
            return(history);
        }
Пример #4
0
 public TextUndoTransaction(TextUndoHistory textUndoHistory)
 {
     _textUndoHistory = textUndoHistory;
 }
Пример #5
0
 public TextUndoTransaction(TextUndoHistory textUndoHistory)
     : this(textUndoHistory, null)
 {
 }
Пример #6
0
 public TextUndoTransaction(TextUndoHistory textUndoHistory, string description)
 {
     _textUndoHistory = textUndoHistory;
     Description      = description;
 }
Пример #7
0
 public TextUndoTransaction(TextUndoHistory textUndoHistory, string description)
 {
     _textUndoHistory = textUndoHistory;
     Description = description;
 }