123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- using ComPDFKit.PDFAnnotation;
- using ComPDFKit.PDFAnnotation.Form;
- using ComPDFKit.PDFDocument;
- using ComPDFKit.PDFDocument.Action;
- using ComPDFKit.PDFPage;
- using ComPDFKit.Tool.Help;
- using static ComPDFKit.PDFAnnotation.CTextAttribute.CFontNameHelper;
- namespace ComPDFKit.Tool.UndoManger
- {
- public class PushButtonHistory: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()
- {
- PushButtonParam currentParam = CurrentParam as PushButtonParam;
- if (currentParam == null || PDFDoc == null || !PDFDoc.IsValid())
- {
- return false;
- }
- CPDFPage pdfPage = PDFDoc.PageAtIndex(currentParam.PageIndex);
- CPDFPushButtonWidget pushbuttonWidget = pdfPage.CreateWidget(C_WIDGET_TYPE.WIDGET_PUSHBUTTON) as CPDFPushButtonWidget;
- if (pushbuttonWidget != null)
- {
- int annotIndex = pdfPage.GetAnnotCount() - 1;
- if (!string.IsNullOrEmpty(currentParam.FieldName))
- {
- pushbuttonWidget.SetFieldName(currentParam.FieldName);
- }
- if (currentParam.HasLineColor)
- {
- if (currentParam.LineColor != null && currentParam.LineColor.Length == 3)
- {
- pushbuttonWidget.SetWidgetBorderRGBColor(currentParam.LineColor);
- }
- }
- if(currentParam.HasBgColor)
- {
- if (currentParam.BgColor != null && currentParam.BgColor.Length == 3)
- {
- pushbuttonWidget.SetWidgetBgRGBColor(currentParam.BgColor);
- }
- }
- if(!string.IsNullOrEmpty(currentParam.Text))
- {
- pushbuttonWidget.SetButtonTitle(currentParam.Text);
- }
- pushbuttonWidget.SetBorderWidth((float)currentParam.LineWidth);
- pushbuttonWidget.SetWidgetBorderStyle(currentParam.BorderStyle);
- CTextAttribute textAttr = new CTextAttribute();
- byte[] fontColor = new byte[3];
- if(currentParam.FontColor != null && currentParam.FontColor.Length==3)
- {
- fontColor = currentParam.FontColor;
- }
- textAttr.FontColor = fontColor;
- textAttr.FontSize = (float)currentParam.FontSize;
- textAttr.FontName = currentParam.FontName;
- pushbuttonWidget.SetTextAttribute(textAttr);
- switch (currentParam.Action)
- {
- case C_ACTION_TYPE.ACTION_TYPE_GOTO:
- {
- CPDFGoToAction gotoAction = new CPDFGoToAction();
- CPDFDestination destination = new CPDFDestination();
- destination.Position_X = currentParam.DestinationPosition.x;
- destination.Position_Y = currentParam.DestinationPosition.y;
- destination.PageIndex = currentParam.DestinationPageIndex;
- gotoAction.SetDestination(PDFDoc, destination);
- pushbuttonWidget.SetButtonAction(gotoAction);
- }
- break;
- case C_ACTION_TYPE.ACTION_TYPE_URI:
- {
- CPDFUriAction uriAction = new CPDFUriAction();
- uriAction.SetUri(currentParam.Uri);
- pushbuttonWidget.SetButtonAction(uriAction);
- }
- break;
- default:
- break;
- }
- pushbuttonWidget.SetRect(currentParam.ClientRect);
- pushbuttonWidget.SetFlags(currentParam.Flags);
- pushbuttonWidget.SetIsLocked(currentParam.Locked);
- pushbuttonWidget.SetIsReadOnly(currentParam.IsReadOnly);
- pushbuttonWidget.SetIsHidden(currentParam.IsHidden);
- pushbuttonWidget.SetCreationDate(PDFHelp.GetCurrentPdfTime());
- pushbuttonWidget.UpdateFormAp();
- pushbuttonWidget.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 PushButtonParam == null || PreviousParam as PushButtonParam == null)
- {
- return false;
- }
- if (MakeAnnotValid(CurrentParam))
- {
- CPDFPushButtonWidget pushbutton = Annot as CPDFPushButtonWidget;
- if (pushbutton == null || !pushbutton.IsValid())
- {
- return false;
- }
- PushButtonParam updateParam = (isUndo ? PreviousParam : CurrentParam) as PushButtonParam;
- PushButtonParam checkParam = (isUndo ? CurrentParam : PreviousParam) as PushButtonParam;
- if (updateParam.FieldName != checkParam.FieldName)
- {
- pushbutton.SetFieldName(updateParam.FieldName);
- }
- if (!CheckArrayEqual(updateParam.LineColor, checkParam.LineColor))
- {
- if (updateParam.HasLineColor)
- {
- if (updateParam.LineColor != null && updateParam.LineColor.Length == 3)
- {
- pushbutton.SetWidgetBorderRGBColor(updateParam.LineColor);
- }
- }
- else
- {
- pushbutton.ClearWidgetBorderRGBColor();
- }
- }
- if (!CheckArrayEqual(updateParam.BgColor, checkParam.BgColor))
- {
- if (updateParam.HasBgColor)
- {
- if (updateParam.BgColor != null && updateParam.BgColor.Length == 3)
- {
- pushbutton.SetWidgetBgRGBColor(updateParam.BgColor);
- }
- }
- else
- {
- pushbutton.ClearWidgetBgRGBColor();
- }
- }
- if (updateParam.LineWidth != checkParam.LineWidth)
- {
- pushbutton.SetBorderWidth((float)updateParam.LineWidth);
- }
- if (updateParam.BorderStyle != checkParam.BorderStyle)
- {
- pushbutton.SetWidgetBorderStyle(updateParam.BorderStyle);
- }
- if (updateParam.FontName != checkParam.FontName)
- {
- CTextAttribute textAttr = pushbutton.GetTextAttribute();
- textAttr.FontName = updateParam.FontName;
- pushbutton.SetTextAttribute(textAttr);
- }
- if (updateParam.FontSize != checkParam.FontSize)
- {
- CTextAttribute textAttr = pushbutton.GetTextAttribute();
- textAttr.FontSize = (float)updateParam.FontSize;
- pushbutton.SetTextAttribute(textAttr);
- }
- if (!CheckArrayEqual(updateParam.FontColor, checkParam.FontColor))
- {
- if (updateParam.FontColor != null && updateParam.FontColor.Length == 3)
- {
- CTextAttribute textAttr = pushbutton.GetTextAttribute();
- textAttr.FontColor = updateParam.FontColor;
- pushbutton.SetTextAttribute(textAttr);
- }
- }
- switch (updateParam.Action)
- {
- case C_ACTION_TYPE.ACTION_TYPE_GOTO:
- {
- CPDFGoToAction gotoAction = new CPDFGoToAction();
- CPDFDestination destination = new CPDFDestination();
- destination.Position_X = updateParam.DestinationPosition.x;
- destination.Position_Y = updateParam.DestinationPosition.y;
- destination.PageIndex = updateParam.DestinationPageIndex;
- gotoAction.SetDestination(PDFDoc, destination);
- pushbutton.SetButtonAction(gotoAction);
- }
- break;
- case C_ACTION_TYPE.ACTION_TYPE_URI:
- {
- CPDFUriAction uriAction = new CPDFUriAction();
- uriAction.SetUri(updateParam.Uri);
- pushbutton.SetButtonAction(uriAction);
- }
- break;
- default:
- break;
- }
- if (!updateParam.ClientRect.Equals(checkParam.ClientRect))
- {
- pushbutton.SetRect(updateParam.ClientRect);
- }
- if (updateParam.Flags != checkParam.Flags)
- {
- pushbutton.SetFlags(updateParam.Flags);
- }
- if (updateParam.Locked != checkParam.Locked)
- {
- pushbutton.SetIsLocked(updateParam.Locked);
- }
- if (updateParam.IsReadOnly != checkParam.IsReadOnly)
- {
- pushbutton.SetIsReadOnly(updateParam.IsReadOnly);
- }
- if (updateParam.IsHidden != checkParam.IsHidden)
- {
- pushbutton.SetIsHidden(updateParam.IsHidden);
- }
- pushbutton.SetModifyDate(PDFHelp.GetCurrentPdfTime());
- pushbutton.UpdateFormAp();
- return true;
- }
- return false;
- }
- internal override bool Remove()
- {
- if (MakeAnnotValid(CurrentParam))
- {
- Annot.RemoveAnnot();
- return true;
- }
- return false;
- }
- }
- }
|