using ComPDFKit.Measure; using ComPDFKit.PDFAnnotation; using ComPDFKit.PDFPage; using ComPDFKit.Tool.Help; using ComPDFKitViewer.Annot; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static ComPDFKit.PDFAnnotation.CTextAttribute; namespace ComPDFKit.Tool.UndoManger { internal class LineMeasureAnnotHistory : AnnotHistory { public override int GetAnnotIndex() { if (CurrentParam != null) { return CurrentParam.AnnotIndex; } return base.GetAnnotIndex(); } public override int GetPageIndex() { if (CurrentParam != null) { return CurrentParam.PageIndex; } return base.GetPageIndex(); } public override void SetAnnotIndex(int newIndex) { if (CurrentParam != null) { CurrentParam.AnnotIndex = newIndex; } if (PreviousParam != null) { PreviousParam.AnnotIndex = newIndex; } } internal override bool Add() { LineMeasureParam currentParam = CurrentParam as LineMeasureParam; if (CurrentParam == null || PDFDoc == null || !PDFDoc.IsValid()) { return false; } CPDFPage pdfPage = PDFDoc.PageAtIndex(currentParam.PageIndex); CPDFLineAnnotation polygonAnnot = pdfPage?.CreateAnnot(C_ANNOTATION_TYPE.C_ANNOTATION_LINE) as CPDFLineAnnotation; if (polygonAnnot != null) { int annotIndex = pdfPage.GetAnnotCount() - 1; if (currentParam.HeadLineType != C_LINE_TYPE.LINETYPE_NONE || currentParam.TailLineType != C_LINE_TYPE.LINETYPE_NONE) { polygonAnnot.SetLineType(currentParam.HeadLineType, currentParam.TailLineType); } if (currentParam.LineColor != null && currentParam.LineColor.Length == 3) { polygonAnnot.SetLineColor(currentParam.LineColor); } polygonAnnot.SetTransparency((byte)currentParam.Transparency); polygonAnnot.SetLineWidth(currentParam.LineWidth); polygonAnnot.SetLinePoints(currentParam.HeadPoint, currentParam.TailPoint); polygonAnnot.SetRect(currentParam.ClientRect); if (currentParam.LineDash != null) { if (currentParam.LineDash.Length == 0) { polygonAnnot.SetBorderStyle(C_BORDER_STYLE.BS_SOLID, new float[0]); } else { List floatArray = new List(); foreach (float num in currentParam.LineDash) { floatArray.Add(num); } polygonAnnot.SetBorderStyle(C_BORDER_STYLE.BS_DASHDED, floatArray.ToArray()); } } CTextAttribute textAttribute = new CTextAttribute(); textAttribute.FontColor = currentParam.FontColor; textAttribute.FontSize = (float)currentParam.FontSize; textAttribute.FontName = CFontNameHelper.ObtainFontName(CFontNameHelper.GetFontType(currentParam.FontName), currentParam.IsBold, currentParam.IsItalic); polygonAnnot.SetTextAttribute(textAttribute); if (currentParam.measureInfo != null) { CPDFDistanceMeasure polygonMeasure = polygonAnnot.GetDistanceMeasure(); if (polygonMeasure != null) { polygonMeasure.SetMeasureInfo(currentParam.measureInfo); polygonMeasure.SetMeasureScale(currentParam.measureInfo.RulerBase, currentParam.measureInfo.RulerBaseUnit, currentParam.measureInfo.RulerTranslate, currentParam.measureInfo.RulerTranslateUnit); polygonMeasure.UpdateAnnotMeasure(); } } if (!string.IsNullOrEmpty(currentParam.Author)) { polygonAnnot.SetAuthor(currentParam.Author); } if (!string.IsNullOrEmpty(currentParam.Content)) { polygonAnnot.SetContent(currentParam.Content); } polygonAnnot.SetIsLocked(currentParam.Locked); polygonAnnot.SetCreationDate(PDFHelp.GetCurrentPdfTime()); polygonAnnot.UpdateAp(); polygonAnnot.ReleaseAnnot(); if (currentParam != null) { currentParam.AnnotIndex = annotIndex; } if (PreviousParam != null) { PreviousParam.AnnotIndex = annotIndex; } return true; } return false; } internal override bool Update(bool isUndo) { if (CurrentParam as LineMeasureParam == null || PreviousParam as LineMeasureParam == null) { return false; } if (MakeAnnotValid(CurrentParam)) { CPDFLineAnnotation polygonAnnot = Annot as CPDFLineAnnotation; if (polygonAnnot == null || !polygonAnnot.IsValid() || !polygonAnnot.IsMeasured()) { return false; } LineMeasureParam updateParam = (isUndo ? PreviousParam : CurrentParam) as LineMeasureParam; LineMeasureParam checkParam = (isUndo ? CurrentParam : PreviousParam) as LineMeasureParam; if (!CheckArrayEqual(updateParam.LineColor, checkParam.LineColor)) { if (updateParam.LineColor != null && updateParam.LineColor.Length == 3) { polygonAnnot.SetLineColor(updateParam.LineColor); } } if (updateParam.Transparency != checkParam.Transparency) { polygonAnnot.SetTransparency((byte)updateParam.Transparency); } if (updateParam.LineWidth != checkParam.LineWidth) { polygonAnnot.SetLineWidth((byte)updateParam.LineWidth); } if (!CheckArrayEqual(updateParam.LineDash, checkParam.LineDash)) { if (updateParam.LineDash.Length == 0) { polygonAnnot.SetBorderStyle(C_BORDER_STYLE.BS_SOLID, new float[0]); } else { List floatArray = new List(); foreach (float num in updateParam.LineDash) { floatArray.Add(num); } polygonAnnot.SetBorderStyle(C_BORDER_STYLE.BS_DASHDED, floatArray.ToArray()); } } if (!updateParam.HeadPoint.Equals(checkParam.HeadPoint) || !updateParam.TailPoint.Equals(checkParam.TailPoint)) { polygonAnnot.SetLinePoints(updateParam.HeadPoint, updateParam.TailPoint); } if (!updateParam.ClientRect.Equals(checkParam.ClientRect)) { polygonAnnot.SetRect(updateParam.ClientRect); } if (updateParam.Author != checkParam.Author) { polygonAnnot.SetAuthor(updateParam.Author); } if (updateParam.Content != checkParam.Content) { polygonAnnot.SetContent(updateParam.Content); } if (updateParam.Locked != checkParam.Locked) { polygonAnnot.SetIsLocked(updateParam.Locked); } if (updateParam.measureInfo != checkParam.measureInfo) { CPDFDistanceMeasure polygonMeasure = polygonAnnot.GetDistanceMeasure(); if (polygonMeasure != null) { polygonMeasure.SetMeasureInfo(updateParam.measureInfo); polygonMeasure.SetMeasureScale(updateParam.measureInfo.RulerBase, updateParam.measureInfo.RulerBaseUnit, updateParam.measureInfo.RulerTranslate, updateParam.measureInfo.RulerTranslateUnit); polygonMeasure.UpdateAnnotMeasure(); } } polygonAnnot.SetModifyDate(PDFHelp.GetCurrentPdfTime()); polygonAnnot.UpdateAp(); return true; } return false; } internal override bool Remove() { if (MakeAnnotValid(CurrentParam)) { Annot.RemoveAnnot(); return true; } return false; } } }