123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- using ComPDFKitViewer.Helper;
- using System.Collections.Generic;
- using System.Linq;
- namespace ComPDFKit.Tool.UndoManger
- {
- public class MultiAnnotHistory : IHistory
- {
- public List<AnnotHistory> Histories { get; set; } = new List<AnnotHistory>();
- public bool Redo()
- {
- if (Histories != null && Histories.Count > 0)
- {
- bool success=true;
- foreach (AnnotHistory history in Histories)
- {
- success &= history.Redo();
- }
- return success;
- }
- return false;
- }
- public bool Undo()
- {
- if (Histories != null && Histories.Count > 0)
- {
- bool success = true;
- foreach (AnnotHistory history in Histories)
- {
- success &= history.Undo();
- }
- return success;
- }
- return false;
- }
- public void Check(IHistory checkItem, bool undo, bool redo, bool add)
- {
- List<AnnotHistory> checkAnnotList= new List<AnnotHistory>();
- if (checkItem is MultiAnnotHistory)
- {
- MultiAnnotHistory multiHistory = (MultiAnnotHistory)checkItem;
- foreach (AnnotHistory checkAnnot in multiHistory.Histories)
- {
- if (checkAnnot == null || checkAnnotList.Contains(checkAnnot))
- {
- continue;
- }
- checkAnnotList.Add(checkAnnot);
- }
- }
- if (checkItem is GroupHistory)
- {
- GroupHistory groupHistory = (GroupHistory)checkItem;
- foreach (IHistory checkHistory in groupHistory.Histories)
- {
- AnnotHistory checkAnnot = checkHistory as AnnotHistory;
- if (checkAnnot == null || checkAnnotList.Contains(checkAnnot))
- {
- continue;
- }
- checkAnnotList.Add(checkAnnot);
- }
- }
- if (checkItem is AnnotHistory)
- {
- checkAnnotList.Add((AnnotHistory)checkItem);
- }
- List<AnnotHistory> loopList = new List<AnnotHistory>();
- if (checkAnnotList != null && checkAnnotList.Count > 0)
- {
- List<int> pageList = checkAnnotList.AsEnumerable().Select(x => x.GetPageIndex()).Distinct().ToList();
- pageList.Sort();
- foreach (int pageIndex in pageList)
- {
- List<AnnotHistory> groupList = checkAnnotList.AsEnumerable().Where(x => x.GetPageIndex() == pageIndex).OrderByDescending(x => x.GetAnnotIndex()).ToList();
- if (groupList != null && groupList.Count > 0)
- {
- loopList.AddRange(groupList);
- }
- }
- }
- foreach (AnnotHistory checkAnnot in loopList)
- {
- if (add && checkAnnot.Action == HistoryAction.Remove)
- {
- //remove
- SubCurrentIndex(checkAnnot.GetPageIndex(),checkAnnot.GetAnnotIndex());
- }
- if (undo && checkAnnot.Action == HistoryAction.Add)
- {
- //remove
- SubCurrentIndex(checkAnnot.GetPageIndex(), checkAnnot.GetAnnotIndex());
- }
- if (redo && checkAnnot.Action == HistoryAction.Remove)
- {
- //remove
- SubCurrentIndex(checkAnnot.GetPageIndex(), checkAnnot.GetAnnotIndex());
- }
- if(undo && checkAnnot.Action == HistoryAction.Remove)
- {
- //add
- UpdateCurrentIndex(checkAnnot.GetPageIndex(), checkAnnot.HistoryIndex, checkAnnot.GetAnnotIndex());
- }
- if(redo && checkAnnot.Action == HistoryAction.Add)
- {
- //add
- UpdateCurrentIndex(checkAnnot.GetPageIndex(), checkAnnot.HistoryIndex, checkAnnot.GetAnnotIndex());
- }
- }
- }
- internal void SubCurrentIndex(int pageIndex, int annotIndex)
- {
- foreach (AnnotHistory annotHistory in Histories)
- {
- if (annotHistory.GetPageIndex() == pageIndex)
- {
- int oldIndex = annotHistory.GetAnnotIndex();
- if (oldIndex == annotIndex && oldIndex >= 0)
- {
- annotHistory.SetAnnotIndex(-1);
- annotHistory.HistoryIndex = -1;
- }
- else
- {
- if (oldIndex > annotIndex || oldIndex <= -1)
- {
- annotHistory.SetAnnotIndex(oldIndex - 1);
- annotHistory.HistoryIndex = oldIndex - 1;
- }
- }
- }
- }
- }
- internal void UpdateCurrentIndex(int pageIndex,int prevIndex, int annotIndex)
- {
- foreach (AnnotHistory annotHistory in Histories)
- {
- if (annotHistory.GetPageIndex() == pageIndex && annotHistory.HistoryIndex==prevIndex)
- {
- annotHistory.SetAnnotIndex(annotIndex);
- annotHistory.HistoryIndex = annotIndex;
- }
- }
- }
- }
- }
|