1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135 |
- using ComPDFKit.PDFAnnotation;
- using ComPDFKit.PDFAnnotation.Form;
- using ComPDFKit.PDFDocument;
- using ComPDFKit.Tool;
- using ComPDFKit.Tool.Help;
- using ComPDFKit.Controls.Annotation.PDFAnnotationPanel.PDFAnnotationUI;
- using ComPDFKit.Controls.Helper;
- using ComPDFKit.Controls.Measure;
- using ComPDFKit.Controls.PDFControl;
- using ComPDFKit.Controls.PDFView;
- using ComPDFKitViewer;
- using ComPDFKitViewer.Widget;
- using Microsoft.Win32;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Runtime.CompilerServices;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Controls.Primitives;
- using System.Windows.Input;
- using ComPDFKit.Controls.PDFControlUI;
- namespace PDFViewer
- {
- public partial class MainPage : UserControl, INotifyPropertyChanged
- {
- #region Properties
- private string currentMode = "Viewer";
- private double[] zoomLevelList = { 1f, 8f, 12f, 25, 33f, 50, 66f, 75, 100, 125, 150, 200, 300, 400, 600, 800, 1000 };
- private PDFViewControl viewControl;
- private PDFViewControl passwordViewer;
- private RegularViewerControl regularViewerControl = new RegularViewerControl();
- private AnnotationControl annotationControl = new AnnotationControl();
- private FormControl formControl = new FormControl();
- private ContentEditControl contentEditControl = new ContentEditControl();
- private PageEditControl pageEditControl = new PageEditControl();
- private MeasureControl measureControl = new MeasureControl();
- private DigitalSignatureControl digitalSignatureControl = new DigitalSignatureControl();
- private SignatureStatusBarControl signatureStatusBarControl = new SignatureStatusBarControl();
- private CPDFBOTABarControl botaBarControl = new CPDFBOTABarControl();
- private CPDFDisplaySettingsControl displaySettingsControl = new CPDFDisplaySettingsControl();
- private PanelState panelState = PanelState.GetInstance();
- public event EventHandler FileChangeEvent;
- public event Func<string[], bool> CheckExistBeforeOpenFileEvent;
- public event EventHandler<string> AfterSaveAsFileEvent;
- public event PropertyChangedEventHandler PropertyChanged;
- private bool _canSave = false;
- /// <summary>
- /// Whether the save operation can be performed.
- /// </summary>
- public bool CanSave
- {
- get => _canSave;
- set
- {
- _canSave = value;
- OnPropertyChanged();
- }
- }
- public PDFViewControl GetPDFViewControl()
- {
- return viewControl;
- }
- /// <summary>
- /// Whether the left panel is expanded.
- /// </summary>
- public bool LeftToolPanelButtonIsChecked
- {
- get => panelState.IsLeftPanelExpand;
- set
- {
- panelState.IsLeftPanelExpand = value;
- OnPropertyChanged();
- }
- }
- /// <summary>
- /// Whether the right panel is expanded.
- /// </summary>
- public bool RightToolPanelButtonIsChecked
- {
- get => panelState.RightPanel == PanelState.RightPanelState.PropertyPanel;
- set
- {
- panelState.RightPanel = (value) ? PanelState.RightPanelState.PropertyPanel : PanelState.RightPanelState.None;
- OnPropertyChanged();
- }
- }
- /// <summary>
- /// Whether the view setting panel is expanded.
- /// </summary>
- public bool ViewSettingBtnIsChecked
- {
- get
- {
- return (panelState.RightPanel == PanelState.RightPanelState.ViewSettings);
- }
- set
- {
- panelState.RightPanel = (value) ? PanelState.RightPanelState.ViewSettings : PanelState.RightPanelState.None;
- OnPropertyChanged();
- }
- }
- private Visibility _notDocsEditorVisible = Visibility.Visible;
- /// <summary>
- /// Whether the Document Editor panel is visible.
- /// </summary>
- public Visibility NotDocsEditorVisible
- {
- get => _notDocsEditorVisible;
- set
- {
- _notDocsEditorVisible = value;
- OnPropertyChanged();
- }
- }
- public MainPage()
- {
- InitializeComponent();
- this.DataContext = this;
- }
- #endregion
- #region Load document
- /// <summary>
- /// Initialize the PDFViewer and load the PDF file.
- /// </summary>
- /// <param name="filePath"></param>
- public void InitWithFilePath(string filePath)
- {
- viewControl = new PDFViewControl();
- viewControl.InitDocument(filePath);
- }
- public void InitWithDocument(CPDFDocument document)
- {
- viewControl = new PDFViewControl();
- viewControl.GetCPDFViewer().InitDoc(document);
- }
- /// <summary>
- /// Init controls and set events.
- /// </summary>
- private void LoadDocument()
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = viewControl.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if (pdfDoc == null)
- {
- return;
- }
- SizeChanged -= MainPage_SizeChanged;
- SizeChanged += MainPage_SizeChanged;
- PasswordUI.Closed -= PasswordUI_Closed;
- PasswordUI.Canceled -= PasswordUI_Canceled;
- PasswordUI.Confirmed -= PasswordUI_Confirmed;
- PasswordUI.Closed += PasswordUI_Closed;
- PasswordUI.Canceled += PasswordUI_Canceled;
- PasswordUI.Confirmed += PasswordUI_Confirmed;
- CPDFSaclingControl.InitWithPDFViewer(viewControl);
- ModeComboBox.SelectedIndex = 0;
- CPDFSaclingControl.SetZoomTextBoxText(string.Format("{0}", (int)(pdfviewer.GetZoom() * 100)));
- botaBarControl.AddBOTAContent(new[] { BOTATools.Thumbnail, BOTATools.Outline, BOTATools.Bookmark, BOTATools.Annotation, BOTATools.Search });
- botaBarControl.ViewCertificateEvent -= digitalSignatureControl.ViewCertificateEvent;
- botaBarControl.ViewCertificateEvent += digitalSignatureControl.ViewCertificateEvent;
- botaBarControl.ViewSignatureEvent -= digitalSignatureControl.ViewSignatureEvent;
- botaBarControl.ViewSignatureEvent += digitalSignatureControl.ViewSignatureEvent;
- botaBarControl.DeleteSignatureEvent -= BotaBarControl_DeleteSignatureEvent;
- botaBarControl.DeleteSignatureEvent += BotaBarControl_DeleteSignatureEvent;
- botaBarControl.SelectBotaTool(BOTATools.Thumbnail);
- ViewSettingBtn.IsChecked = false;
- botaBarControl.InitWithPDFViewer(viewControl);
- botaBarControl.SelectBotaTool(BOTATools.Thumbnail);
- displaySettingsControl.InitWithPDFViewer(viewControl);
- LoadCustomControl();
- panelState.PropertyChanged -= PanelState_PropertyChanged;
- panelState.PropertyChanged += PanelState_PropertyChanged;
- displaySettingsControl.SplitModeChanged -= DisplaySettingsControl_SplitModeChanged;
- displaySettingsControl.SplitModeChanged += DisplaySettingsControl_SplitModeChanged;
- viewControl.PDFToolManager.MouseLeftButtonDownHandler -= PDFToolManager_MouseLeftButtonDownHandler;
- viewControl.PDFToolManager.MouseLeftButtonDownHandler += PDFToolManager_MouseLeftButtonDownHandler;
- pdfviewer.SetLinkHighlight(Properties.Settings.Default.IsHighlightLinkArea);
- pdfviewer.SetFormFieldHighlight(Properties.Settings.Default.IsHighlightFormArea);
- pdfviewer.GetDocument().FontSubset = Properties.Settings.Default.FontSubsetting;
- pdfviewer.ScrollStride = Properties.Settings.Default.Divisor;
- }
- }
- private void BotaBarControl_DeleteSignatureEvent(object sender, EventArgs e)
- {
- viewControl.PDFViewTool.IsDocumentModified = true;
- DigitalSignatureControl_OnSignatureStatusChanged(sender, e);
- }
- private void PDFToolManager_MouseLeftButtonDownHandler(object sender, MouseEventObject e)
- {
- if (e.annotType == C_ANNOTATION_TYPE.C_ANNOTATION_WIDGET)
- {
- BaseWidget baseWidget = viewControl.GetCacheHitTestWidget();
- if (baseWidget != null)
- {
- AnnotParam annotParam = ParamConverter.CPDFDataConverterToAnnotParam(
- viewControl.PDFViewTool.GetCPDFViewer().GetDocument(),
- baseWidget.GetAnnotData().PageIndex,
- baseWidget.GetAnnotData().Annot);
- if ((annotParam as WidgetParm).WidgetType == C_WIDGET_TYPE.WIDGET_SIGNATUREFIELDS)
- {
- var sigWidget = baseWidget.GetAnnotData().Annot as CPDFSignatureWidget;
- if(sigWidget == null)
- {
- return;
- }
- var sig = sigWidget.GetSignature(viewControl.GetCPDFViewer().GetDocument());
- if (sigWidget.IsSigned() && sig != null && sig.SignerList.Count > 0)
- {
- return;
- }
- if (currentMode == "Annotation")
- {
- CPDFSignatureUI signatureProperty = new CPDFSignatureUI();
- signatureProperty.SetFormProperty(annotParam, viewControl, baseWidget.GetAnnotData().Annot);
- panelState.RightPanel = PanelState.RightPanelState.PropertyPanel;
- annotationControl.SetPropertyContainer(signatureProperty);
- }
- else if (currentMode == "Viewer")
- {
- CPDFSignatureUI signatureProperty = new CPDFSignatureUI();
- signatureProperty.SetFormProperty(annotParam, viewControl, baseWidget.GetAnnotData().Annot);
- panelState.RightPanel = PanelState.RightPanelState.PropertyPanel;
- regularViewerControl.SetPropertyContainer(signatureProperty);
- }
- }
- }
- }
- }
- private void MainPage_SizeChanged(object sender, SizeChangedEventArgs e)
- {
- viewControl.WindowSizeChange();
- }
- private void DisplaySettingsControl_SplitModeChanged(object sender, ComPDFKit.Controls.PDFControlUI.CPDFViewModeUI.SplitMode e)
- {
- viewControl.SetSplitViewMode(e);
- }
- /// <summary>
- /// When the RightPanel state is changed, decide whether to display the ViewSettingPanel or RightToolPanel.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void PanelState_PropertyChanged(object sender, PropertyChangedEventArgs e)
- {
- if (e.PropertyName == "RightPanel")
- {
- OnPropertyChanged(nameof(RightToolPanelButtonIsChecked));
- OnPropertyChanged(nameof(ViewSettingBtnIsChecked));
- }
- }
- public void SetFeatureMode(string featureName)
- {
- if (!string.IsNullOrEmpty(featureName))
- {
- switch (featureName)
- {
- case "Viewer":
- ModeComboBox.SelectedIndex = 0;
- break;
- case "Annotations":
- ModeComboBox.SelectedIndex = 1;
- break;
- case "Forms":
- ModeComboBox.SelectedIndex = 2;
- break;
- case "Signatures":
- ModeComboBox.SelectedIndex = 5;
- break;
- case "Document Editor":
- ModeComboBox.SelectedIndex = 4;
- break;
- case "Content Editor":
- ModeComboBox.SelectedIndex = 3;
- break;
- case "Measurement":
- ModeComboBox.SelectedIndex = 6;
- break;
- default:
- break;
- }
- }
- }
- internal void SetPDFViewer(PDFViewControl newPdfViewer)
- {
- if (newPdfViewer != null)
- {
- viewControl = newPdfViewer;
- }
- }
- #endregion
- #region Password
- /// <summary>
- /// Event handler for confirming the password. Open the PDF file if the password is correct.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void PasswordUI_Confirmed(object sender, string e)
- {
- if (passwordViewer != null && passwordViewer.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = passwordViewer.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if (pdfDoc == null)
- {
- return;
- }
- pdfDoc.UnlockWithPassword(e);
- if (pdfDoc.IsLocked == false)
- {
- PasswordUI.SetShowError("", Visibility.Collapsed);
- PasswordUI.ClearPassword();
- PasswordUI.Visibility = Visibility.Collapsed;
- PopupBorder.Visibility = Visibility.Collapsed;
- viewControl = passwordViewer;
- LoadDocument();
- viewControl.PDFViewTool.GetCPDFViewer().UpdateVirtualNodes();
- FileChangeEvent?.Invoke(null, EventArgs.Empty);
- }
- else
- {
- PasswordUI.SetShowError("Wrong Password", Visibility.Visible);
- }
- }
- }
- /// <summary>
- /// Event handler for canceling password input.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void PasswordUI_Canceled(object sender, EventArgs e)
- {
- PopupBorder.Visibility = Visibility.Collapsed;
- PasswordUI.Visibility = Visibility.Collapsed;
- }
- /// <summary>
- /// Event handler for closing the password input dialog.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void PasswordUI_Closed(object sender, EventArgs e)
- {
- PopupBorder.Visibility = Visibility.Collapsed;
- PasswordUI.Visibility = Visibility.Collapsed;
- }
- #endregion
- #region Load custom control
- /// <summary>
- /// Load the custom controls for the PDF viewer.
- /// </summary>
- private void LoadCustomControl()
- {
- regularViewerControl.PdfViewControl = viewControl;
- regularViewerControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- regularViewerControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- regularViewerControl.InitWithPDFViewer(viewControl);
- //regularViewerControl.PdfViewControl.PDFView.SetMouseMode(MouseModes.Viewer);
- regularViewerControl.SetBOTAContainer(null);
- regularViewerControl.SetBOTAContainer(botaBarControl);
- regularViewerControl.SetDisplaySettingsControl(displaySettingsControl);
- PDFGrid.Child = regularViewerControl;
- SignatureHelper.InitEffectiveSignatureList(viewControl.GetCPDFViewer().GetDocument());
- SignatureHelper.VerifySignatureList(viewControl.GetCPDFViewer().GetDocument());
- signatureStatusBarControl.SetStatus(SignatureHelper.SignatureList);
- viewControl.PDFToolManager.SetToolType(ToolType.Viewer);
-
- viewControl.PDFViewTool.DocumentModifiedChanged -= PDFViewTool_DocumentModifiedChanged;
- viewControl.PDFViewTool.DocumentModifiedChanged += PDFViewTool_DocumentModifiedChanged;
- }
- /// <summary>
- /// Event handler for the Loaded event of the MainPage.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void MainPage_Loaded(object sender, RoutedEventArgs e)
- {
- LoadDocument();
- }
- #endregion
- #region Event handle
- private void PdfViewer_InfoChanged(object sender, KeyValuePair<string, object> e)
- {
- if (e.Key == "Zoom")
- {
- CPDFSaclingControl.SetZoomTextBoxText(string.Format("{0}", (int)((double)e.Value * 100)));
- }
- }
- /// <summary>
- /// Command for opening a PDF file saved with a signature.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void DigitalSignatureControl_AfterFillSignature(object sender, string e)
- {
- OpenFile(e);
- }
- /// <summary>
- /// Event handler for deleting a signature from the BOTA. Set the CanSave property to true and update the signature status.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BotaControlOnDeleteSignatureEvent(object sender, EventArgs e)
- {
- DigitalSignatureControl_OnSignatureStatusChanged(sender, e);
- }
- /// <summary>
- /// Event handler for updating a signature. Update the signature status.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void DigitalSignatureControl_OnSignatureStatusChanged(object sender, EventArgs e)
- {
- SignatureHelper.InitEffectiveSignatureList(viewControl.GetCPDFViewer().GetDocument());
- SignatureHelper.VerifySignatureList(viewControl.GetCPDFViewer().GetDocument());
- signatureStatusBarControl.SetStatus(SignatureHelper.SignatureList);
- botaBarControl.LoadSignatureList();
- }
- /// <summary>
- /// Event handler for updating the CanSave property.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void DigitalSignatureControl_OnCanSaveChanged(object sender, bool e)
- {
- this.CanSave = e;
- }
- #endregion
- #region Private Command Event
- /// <summary>
- /// Close all the expanded panels.
- /// </summary>
- private void ClearPanelState()
- {
- LeftToolPanelButtonIsChecked = false;
- ViewSettingBtnIsChecked = false;
- RightToolPanelButtonIsChecked = false;
- }
- private void LeftToolPanelButton_Click(object sender, RoutedEventArgs e)
- {
- panelState.IsLeftPanelExpand = (sender as ToggleButton).IsChecked == true;
- }
- private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- var item = (sender as ComboBox).SelectedItem as ComboBoxItem;
- if ((string)item.Tag == currentMode)
- {
- return;
- }
- ClearPanelState();
- if (ViewSettingBtn != null)
- ViewSettingBtn.IsChecked = false;
- if (RightPanelButton != null)
- RightPanelButton.IsChecked = false;
- if (viewControl != null && viewControl.GetCPDFViewer() != null)
- {
- // pdfViewer.PDFView.ToolManager.EnableClickCreate = false;
- }
- if (currentMode == "Viewer")
- {
- regularViewerControl.ClearViewerControl();
- }
- else if (currentMode == "Annotation")
- {
- annotationControl.UnloadEvent();
- annotationControl.ClearViewerControl();
- annotationControl.PDFAnnotationControl.AnnotationCancel();
- viewControl.SetIsShowStampMouse(false);
- }
- else if (currentMode == "Form")
- {
- formControl.UnloadEvent();
- formControl.ClearViewerControl();
- viewControl.SetIsShowStampMouse(false);
- viewControl.GetCPDFViewer().SetFormFieldHighlight(Properties.Settings.Default.IsHighlightFormArea);
- }
- else if (currentMode == "Content Editor")
- {
- botaBarControl.ReplaceFunctionEnabled = false;
- displaySettingsControl.SetVisibilityWhenContentEdit(Visibility.Visible);
- contentEditControl.ClearViewerControl();
- contentEditControl.ClearPDFEditState();
- }
- else if (currentMode == "Document Editor")
- {
- pageEditControl.ExitPageEdit -= PageEditControl_ExitPageEdit;
- NotDocsEditorVisible = Visibility.Visible;
- botaBarControl.LoadThumbnail();
- }
- else if (currentMode == "Digital Signature")
- {
- RightPanelButton.Visibility = Visibility.Visible;
- digitalSignatureControl.ClearViewerControl();
- botaBarControl.RemoveBOTAContent(BOTATools.Signature);
- digitalSignatureControl.UnloadEvent();
- }
- else if (currentMode == "Measurement")
- {
- RightPanelButton.Visibility = Visibility.Visible;
- GetPDFViewControl().PDFViewTool.GetDefaultSettingParam().IsOpenMeasure = false;
- measureControl.ClearAllToolState();
- measureControl.ClearViewerControl();
- measureControl.UnloadEvent();
- }
- if (item.Tag as string == "Viewer")
- {
- regularViewerControl.PdfViewControl = viewControl;
- regularViewerControl.InitWithPDFViewer(viewControl);
- if (regularViewerControl.PdfViewControl != null)
- {
- PDFGrid.Child = regularViewerControl;
- viewControl.SetToolType(ToolType.Viewer);
- regularViewerControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- regularViewerControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- regularViewerControl.SetBOTAContainer(botaBarControl);
- regularViewerControl.SetDisplaySettingsControl(displaySettingsControl);
- }
- }
- else if (item.Tag as string == "Annotation")
- {
- annotationControl.SetToolBarContainerVisibility(Visibility.Visible);
- PDFGrid.Child = annotationControl;
- viewControl.SetToolType(ToolType.Pan);
- annotationControl.PDFViewControl = viewControl;
- annotationControl.InitWithPDFViewer(viewControl);
- if (annotationControl.PDFViewControl != null)
- {
- annotationControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- annotationControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- annotationControl.OnAnnotEditHandler -= PdfFormControlRefreshAnnotList;
- annotationControl.OnAnnotEditHandler += PdfFormControlRefreshAnnotList;
-
- annotationControl.InitialPDFViewControl(annotationControl.PDFViewControl);
- annotationControl.SetBOTAContainer(botaBarControl);
- annotationControl.SetDisplaySettingsControl(displaySettingsControl);
- }
- }
- else if (item.Tag as string == "Form")
- {
- formControl.SetToolBarContainerVisibility(Visibility.Visible);
- formControl.PdfViewControl = viewControl;
- formControl.InitWithPDFViewer(viewControl);
- if (formControl.PdfViewControl != null)
- {
- PDFGrid.Child = formControl;
- viewControl.SetToolType(ToolType.WidgetEdit);
- formControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- formControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- formControl.OnAnnotEditHandler -= PdfFormControlRefreshAnnotList;
- formControl.OnAnnotEditHandler += PdfFormControlRefreshAnnotList;
- formControl.SetBOTAContainer(botaBarControl);
- formControl.InitialPDFViewControl(formControl.PdfViewControl);
- formControl.SetDisplaySettingsControl(displaySettingsControl);
- viewControl.GetCPDFViewer().SetFormFieldHighlight(true);
- }
- }
- else if (item.Tag as string == "Content Editor")
- {
- contentEditControl.PdfViewControl = viewControl;
- contentEditControl.InitWithPDFViewer(viewControl);
- displaySettingsControl.SetVisibilityWhenContentEdit(Visibility.Collapsed);
- if (contentEditControl.pdfContentEditControl != null && contentEditControl.PdfViewControl != null)
- {
- PDFGrid.Child = contentEditControl;
- viewControl.SetToolType(ToolType.ContentEdit);
- contentEditControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- contentEditControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- contentEditControl.SetBOTAContainer(botaBarControl);
- contentEditControl.SetDisplaySettingsControl(displaySettingsControl);
- contentEditControl.PdfViewControl.SetSplitViewMode(CPDFViewModeUI.SplitMode.None);
- }
- }
- else if (item.Tag as string == "Document Editor")
- {
- pageEditControl.PDFViewControl = viewControl;
- pageEditControl.ExitPageEdit += PageEditControl_ExitPageEdit;
- pageEditControl.OnCanSaveChanged -= ControlOnCanSaveChanged;
- pageEditControl.OnCanSaveChanged += ControlOnCanSaveChanged;
- PDFGrid.Child = pageEditControl;
- NotDocsEditorVisible = Visibility.Collapsed;
- }
- else if (item.Tag as string == "Digital Signature")
- {
- if (digitalSignatureControl.PDFViewControl != null)
- {
- RightPanelButton.Visibility = Visibility.Collapsed;
- PDFGrid.Child = digitalSignatureControl;
- viewControl.PDFToolManager.SetToolType(ToolType.Viewer);
- digitalSignatureControl.PDFViewControl = viewControl;
- botaBarControl.AddBOTAContent(BOTATools.Signature);
- digitalSignatureControl.InitWithPDFViewer(viewControl);
- digitalSignatureControl.SetBOTAContainer(botaBarControl);
- digitalSignatureControl.SetDisplaySettingsControl(displaySettingsControl);
- digitalSignatureControl.SetSignatureStatusBarControl(signatureStatusBarControl);
- signatureStatusBarControl.OnViewSignatureButtonClicked -= ViewAllSignatures;
- signatureStatusBarControl.OnViewSignatureButtonClicked += ViewAllSignatures;
- digitalSignatureControl.OnCanSaveChanged -= DigitalSignatureControl_OnCanSaveChanged;
- digitalSignatureControl.OnCanSaveChanged += DigitalSignatureControl_OnCanSaveChanged;
- digitalSignatureControl.SignatureStatusChanged -= DigitalSignatureControl_OnSignatureStatusChanged;
- digitalSignatureControl.SignatureStatusChanged += DigitalSignatureControl_OnSignatureStatusChanged;
- digitalSignatureControl.AfterFillSignature -= DigitalSignatureControl_AfterFillSignature;
- digitalSignatureControl.AfterFillSignature += DigitalSignatureControl_AfterFillSignature;
- }
- }
- else if (item.Tag as string == "Measurement")
- {
- if (contentEditControl.pdfContentEditControl != null && viewControl != null)
- {
- RightPanelButton.Visibility = Visibility.Visible;
- PDFGrid.Child = measureControl;
- viewControl.PDFToolManager.SetToolType(ToolType.Pan);
- viewControl.SetToolType(ToolType.Pan);
- measureControl.InitWithPDFViewer(viewControl);
- measureControl.SetBOTAContainer(botaBarControl);
- measureControl.ClearAllToolState();
- measureControl.SetSettingsControl(displaySettingsControl);
- GetPDFViewControl().PDFViewTool.GetDefaultSettingParam().IsOpenMeasure = true;
- measureControl.OnAnnotEditHandler -= PdfFormControlRefreshAnnotList;
- measureControl.OnAnnotEditHandler += PdfFormControlRefreshAnnotList;
- }
- }
- currentMode = item.Tag as string;
- RightToolPanelButtonIsChecked = false;
- }
- /// <summary>
- /// Event handler for ViewSignatureBtn click event. Expand the bota control and select the Signature tool.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void ViewAllSignatures(object sender, EventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Signature);
- }
- private void PageEditControl_ExitPageEdit(object sender, EventArgs e)
- {
- ModeComboBox.SelectedIndex = 0;
- }
- private void PageInfoBtn_Click(object sender, RoutedEventArgs e)
- {
- PasswordUI.Visibility = Visibility.Collapsed;
- FileInfoUI.Visibility = Visibility.Visible;
- FileInfoControl.InitWithPDFViewer(viewControl);
- PopupBorder.Visibility = Visibility.Visible;
- }
- private void ViewSettingBtn_Click(object sender, RoutedEventArgs e)
- {
- panelState.RightPanel =
- ((sender as ToggleButton).IsChecked == true) ?
- PanelState.RightPanelState.ViewSettings : PanelState.RightPanelState.None;
- }
- private void RightPanelButton_Click(object sender, RoutedEventArgs e)
- {
- panelState.RightPanel =
- ((sender as ToggleButton).IsChecked == true) ?
- PanelState.RightPanelState.PropertyPanel : PanelState.RightPanelState.None;
- }
- private void ExpandSearchBtn_Click(object sender, RoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Search);
- }
- private void CPDFTitleBarControl_Loaded(object sender, RoutedEventArgs e)
- {
- CPDFTitleBarControl.OpenFileEvent -= CPDFTitleBarControl_OpenFileEvent;
- CPDFTitleBarControl.OpenFileEvent += CPDFTitleBarControl_OpenFileEvent;
- CPDFTitleBarControl.SaveAsFileEvent -= CPDFTitleBarControl_SaveAsFileEvent;
- CPDFTitleBarControl.SaveAsFileEvent += CPDFTitleBarControl_SaveAsFileEvent;
- CPDFTitleBarControl.SaveFileEvent -= CPDFTitleBarControl_SaveFileEvent;
- CPDFTitleBarControl.SaveFileEvent += CPDFTitleBarControl_SaveFileEvent;
- CPDFTitleBarControl.FlattenEvent -= CPDFTitleBarControl_FlattenEvent;
- CPDFTitleBarControl.FlattenEvent += CPDFTitleBarControl_FlattenEvent;
- CPDFTitleBarControl.PrintEvent -= CPDFTitleBarControl_PrintEvent;
- CPDFTitleBarControl.PrintEvent += CPDFTitleBarControl_PrintEvent;
- }
- private void CPDFTitleBarControl_PrintEvent(object sender, EventArgs e)
- {
- PrinterDialog printerDialog = new PrinterDialog();
- printerDialog.Document = viewControl.GetCPDFViewer().GetDocument();
- printerDialog.ShowDialog();
- }
- private void CPDFTitleBarControl_FlattenEvent(object sender, EventArgs e)
- {
- if (viewControl != null && viewControl.GetCPDFViewer() != null && viewControl.GetCPDFViewer().GetDocument() != null)
- {
- string savePath = ComPDFKit.Controls.Helper.CommonHelper.GetGeneratePathOrEmpty("PDF files (*.pdf)|*.pdf", viewControl.GetCPDFViewer().GetDocument().FileName + "_Flattened.pdf");
- if (!string.IsNullOrEmpty(savePath))
- {
- if (CanSave)
- {
- SaveFile();
- viewControl.PDFViewTool.IsDocumentModified = false;
- }
- CPDFDocument document = CPDFDocument.InitWithFilePath(viewControl.GetCPDFViewer().GetDocument().FilePath);
- if (document?.WriteFlattenToFilePath(savePath) == true)
- {
- System.Diagnostics.Process.Start("Explorer.exe", "/select," + savePath);
- }
- document?.Release();
- }
- }
- }
- private void CPDFTitleBarControl_SaveFileEvent(object sender, EventArgs e)
- {
- SaveFile();
- }
- private void CPDFTitleBarControl_SaveAsFileEvent(object sender, EventArgs e)
- {
- SaveAsFile();
- }
- private void CPDFTitleBarControl_OpenFileEvent(object sender, EventArgs e)
- {
- OpenFile();
- }
- private void FileInfoCloseBtn_Click(object sender, RoutedEventArgs e)
- {
- PopupBorder.Visibility = Visibility.Collapsed;
- }
- /// <summary>
- /// Refresh the annotation list when a annotation is edited.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void PdfFormControlRefreshAnnotList(object sender, EventArgs e)
- {
- botaBarControl.LoadAnnotationList();
- }
- /// <summary>
- /// When a CanSave property of a control is changed, the CanSave property of current page is changed.
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void ControlOnCanSaveChanged(object sender, bool e)
- {
- this.CanSave = e;
- }
- private void PDFViewTool_DocumentModifiedChanged(object sender, EventArgs e)
- {
- CanSave = viewControl.PDFViewTool.IsDocumentModified;
- }
-
- protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
- {
- PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
- }
- #endregion
- #region Open and Save file
- private void SaveFileBtn_Click(object sender, RoutedEventArgs e)
- {
- SaveFile();
- CanSave = false;
- }
- private void OpenFile(string filePath = "")
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = viewControl.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if (pdfDoc == null)
- {
- return;
- }
- if (string.IsNullOrEmpty(filePath))
- {
- filePath = ComPDFKit.Controls.Helper.CommonHelper.GetExistedPathOrEmpty();
- }
- string oldFilePath = pdfDoc.FilePath;
- if (!string.IsNullOrEmpty(filePath) && regularViewerControl.PdfViewControl != null)
- {
- if (oldFilePath.ToLower() == filePath.ToLower())
- {
- return;
- }
- if ((bool)CheckExistBeforeOpenFileEvent?.Invoke(new string[] { filePath, oldFilePath }))
- {
- return;
- }
- passwordViewer = new PDFViewControl();
- passwordViewer.InitDocument(filePath);
- CPDFViewer tempViewer = passwordViewer.PDFViewTool?.GetCPDFViewer();
- CPDFDocument tempDoc = tempViewer?.GetDocument();
- if (tempDoc == null)
- {
- MessageBox.Show("Open File Failed");
- return;
- }
- if (passwordViewer.GetCPDFViewer().GetDocument().IsLocked)
- {
- PasswordUI.SetShowText(System.IO.Path.GetFileName(filePath) + " " + LanguageHelper.CommonManager.GetString("Tip_Encrypted"));
- PasswordUI.ClearPassword();
- PopupBorder.Visibility = Visibility.Visible;
- PasswordUI.Visibility = Visibility.Visible;
- }
- else
- {
- pdfDoc.Release();
- viewControl = passwordViewer;
- LoadDocument();
- FileChangeEvent?.Invoke(null, EventArgs.Empty);
- }
- }
- }
- }
- private void OpenFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFile();
- }
- /// <summary>
- /// Save the file to another PDF file.
- /// </summary>
- public void SaveAsFile()
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = viewControl.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if (pdfDoc == null)
- {
- return;
- }
- SaveFileDialog saveDialog = new SaveFileDialog();
- saveDialog.Filter = "(*.pdf)|*.pdf";
- saveDialog.DefaultExt = ".pdf";
- saveDialog.OverwritePrompt = true;
- if (saveDialog.ShowDialog() == true)
- {
- pdfDoc.WriteToFilePath(saveDialog.FileName);
- }
- }
- }
- /// <summary>
- /// Save the file in the current path.
- /// </summary>
- public void SaveFile()
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = viewControl.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if (pdfDoc == null)
- {
- return;
- }
- try
- {
- if (!string.IsNullOrEmpty(pdfDoc.FilePath))
- {
- if (pdfDoc.WriteToLoadedPath())
- {
- return;
- }
- }
- SaveFileDialog saveDialog = new SaveFileDialog
- {
- Filter = "(*.pdf)|*.pdf",
- DefaultExt = ".pdf",
- OverwritePrompt = true
- };
- if (saveDialog.ShowDialog() == true)
- {
- if (pdfDoc.WriteToFilePath(saveDialog.FileName))
- {
- AfterSaveAsFileEvent?.Invoke(this, saveDialog.FileName);
- }
- }
- }
- catch (Exception ex)
- {
- return;
- }
- }
- }
- public void CloseFile()
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfviewer = viewControl.PDFViewTool.GetCPDFViewer();
- CPDFDocument pdfDoc = pdfviewer?.GetDocument();
- if(pdfDoc !=null)
- {
- pdfDoc.Release();
- }
- }
- }
- #endregion
- #region Command Binding
- private double CheckZoomLevel(double zoom, bool IsGrowth)
- {
- double standardZoom = 100;
- if (zoom <= 0.01)
- {
- return 0.01;
- }
- if (zoom >= 10)
- {
- return 10;
- }
- zoom *= 100;
- for (int i = 0; i < zoomLevelList.Length - 1; i++)
- {
- if (zoom > zoomLevelList[i] && zoom <= zoomLevelList[i + 1] && IsGrowth)
- {
- standardZoom = zoomLevelList[i + 1];
- break;
- }
- if (zoom >= zoomLevelList[i] && zoom < zoomLevelList[i + 1] && !IsGrowth)
- {
- standardZoom = zoomLevelList[i];
- break;
- }
- }
- return standardZoom / 100;
- }
- private void CommandBinding_Executed_Open(object sender, ExecutedRoutedEventArgs e)
- {
- OpenFile();
- }
- private void CommandBinding_Executed_Save(object sender, ExecutedRoutedEventArgs e)
- {
- if (CanSave)
- {
- SaveFile();
- }
- }
- private void CommandBinding_Executed_SaveAs(object sender, ExecutedRoutedEventArgs e)
- {
- SaveAsFile();
- }
- private void CommandBinding_Executed_ControlLeftPanel(object sender, ExecutedRoutedEventArgs e)
- {
- panelState.IsLeftPanelExpand = !panelState.IsLeftPanelExpand;
- }
- private void CommandBinding_Executed_ControlRightPanel(object sender, ExecutedRoutedEventArgs e)
- {
- if (panelState.RightPanel == PanelState.RightPanelState.PropertyPanel)
- {
- panelState.RightPanel = PanelState.RightPanelState.None;
- }
- else
- {
- panelState.RightPanel = PanelState.RightPanelState.PropertyPanel;
- }
- }
- private void CommandBinding_Executed_Bookmark(object sender, ExecutedRoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Bookmark);
- }
- private void CommandBinding_Executed_Outline(object sender, ExecutedRoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Outline);
- }
- private void CommandBinding_Executed_Thumbnail(object sender, ExecutedRoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Thumbnail);
- }
- private void CommandBinding_Executed_Annotation(object sender, ExecutedRoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Annotation);
- }
- private void CommandBinding_Executed_Search(object sender, ExecutedRoutedEventArgs e)
- {
- LeftToolPanelButton.IsChecked = true;
- botaBarControl.SelectBotaTool(BOTATools.Search);
- }
- private void CommandBinding_Executed_ScaleAdd(object sender, ExecutedRoutedEventArgs e)
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfViewer = viewControl.PDFViewTool.GetCPDFViewer();
- if (pdfViewer != null)
- {
- double newZoom = CheckZoomLevel(pdfViewer.GetZoom() + 0.01, true);
- pdfViewer.SetZoom(newZoom);
- }
- }
- }
- private void CommandBinding_Executed_ScaleSubtract(object sender, ExecutedRoutedEventArgs e)
- {
- if (viewControl != null && viewControl.PDFViewTool != null)
- {
- CPDFViewer pdfViewer = viewControl.PDFViewTool.GetCPDFViewer();
- if (pdfViewer != null)
- {
- double newZoom = CheckZoomLevel(pdfViewer.GetZoom() - 0.01, false);
- pdfViewer.SetZoom(newZoom);
- }
- }
- }
- private void CommandBinding_Executed_DisplaySettings(object sender, ExecutedRoutedEventArgs e)
- {
- panelState.RightPanel = PanelState.RightPanelState.ViewSettings;
- }
- private void CommandBinding_Executed_DocumentInfo(object sender, ExecutedRoutedEventArgs e)
- {
- if (PopupBorder.Visibility != Visibility.Visible)
- {
- PasswordUI.Visibility = Visibility.Collapsed;
- FileInfoControl.Visibility = Visibility.Visible;
- FileInfoControl.InitWithPDFViewer(viewControl);
- FileInfoControl.CloseInfoEvent -= CPDFInfoControl_CloseInfoEvent;
- FileInfoControl.CloseInfoEvent += CPDFInfoControl_CloseInfoEvent;
- PopupBorder.Visibility = Visibility.Visible;
- }
- else
- {
- FileInfoControl.Visibility = Visibility.Collapsed;
- PopupBorder.Visibility = Visibility.Collapsed;
- this.Focus();
- }
- }
- private void CPDFInfoControl_CloseInfoEvent(object sender, EventArgs e)
- {
- PopupBorder.Visibility = Visibility.Collapsed;
- }
- #endregion
- }
- }
|