using ComPDFKitViewer.PdfViewer; using PDF_Master.CustomControl; using PDF_Master.EventAggregators; using PDF_Master.Model; using PDF_Master.Model.Dialog.HomePageToolsDialogs.HomePageBatchProcessing; using PDF_Master.Model.EditTools.Background; using PDF_Master.Model.EditTools.Watermark; using PDF_Master.ViewModels.Tools; using PDFSettings; using Prism.Commands; using Prism.Events; using Prism.Mvvm; using Prism.Regions; using Prism.Services.Dialogs; using System; using System.Collections.Generic; using System.Linq; using System.Windows; using static System.Windows.Forms.VisualStyles.VisualStyleElement; namespace PDF_Master.ViewModels.EditTools.Watermark { public class WatermarkContentViewModel : BindableBase, INavigationAware { public IEventAggregator eventAggregator; public IRegionManager watermarkRegion; public IDialogService dialogs; private CPDFViewer PDFViewer; private CPDFViewer CurrentPDFViewer; private ViewContentViewModel viewContentViewModel; public string TemplateListName = "WatermarkTemplateListBaseContent"; public string CreateBaseName = "WatermarkCreateBaseContent"; public string CreateModTextName = "WatermarkCreateTextContent"; public string CreateModFileName = "WatermarkCreateFileContent"; public string TemplateListModTextName = "WatermarkTemplateListTextContent"; public string TemplateListModFileName = "WatermarkTemplateListFileContent"; public string WatermarkDocumentName = "WatermarkDocumentContent"; private string _watermarkSettingsRegionName; public string WatermarkSettingsRegionName { get { return _watermarkSettingsRegionName; } set { _watermarkSettingsRegionName = value; } } private Visibility _watermarkSettingsVisible = Visibility.Collapsed; public Visibility WatermarkSettingsVisible { get { return _watermarkSettingsVisible; } set { _watermarkSettingsVisible = value; } } private string _watermarkDocumentRegionName; /// /// 持有Document的Region,负责渲染和保存 /// public string WatermarkDocumentRegionName { get { return _watermarkDocumentRegionName; } set { _watermarkDocumentRegionName = value; } } private Visibility _watermarkDocumentVisible = Visibility.Visible; /// /// 持有Document的Region可见 /// public Visibility WatermarkDocumentVisible { get { return _watermarkDocumentVisible; } set { _watermarkDocumentVisible = value; } } private EnumTextOrFile _currentCreateMod; public EnumTextOrFile CurrentCreateMod { get { return _currentCreateMod; } set { _currentCreateMod = value; } } private EnumTextOrFile _currentTemplateListMod; public EnumTextOrFile CurrentTemplateListMod { get { return _currentTemplateListMod; } set { _currentTemplateListMod = value; } } public DelegateCommand CloseEditToolCommand { get; set; } public DelegateCommand DeleteWatermarkCommand { get; set; } public DelegateCommand ConfirmEditToolCommand { get; set; } public DelegateCommand BatchWatermarkCommand { get; set; } public DelegateCommand EnterSelectedContentCommand { get; set; } public string Unicode = null; public WatermarkContentViewModel(IRegionManager regionManager, IEventAggregator eventAggregator, IDialogService dialogs) { this.eventAggregator = eventAggregator; this.watermarkRegion = regionManager; this.dialogs = dialogs; Unicode = App.mainWindowViewModel.SelectedItem.Unicode; WatermarkSettingsVisible = Visibility.Visible; WatermarkSettingsRegionName = Guid.NewGuid().ToString(); WatermarkDocumentRegionName = Guid.NewGuid().ToString(); CloseEditToolCommand = new DelegateCommand(CloseEditTool); ConfirmEditToolCommand = new DelegateCommand(ConfirmEditTool); EnterSelectedContentCommand = new DelegateCommand(EnterSelectedContent); DeleteWatermarkCommand = new DelegateCommand(DeleteWatermark); BatchWatermarkCommand = new DelegateCommand(BatchWatermark); eventAggregator.GetEvent().Subscribe(EnterTemplateListOrCreate, e => e.Unicode == Unicode); eventAggregator.GetEvent().Subscribe(SetCurrentCreateMod, e => e.Unicode == Unicode); eventAggregator.GetEvent().Subscribe(SetCurrentTemplateListMod, e => e.Unicode == Unicode); eventAggregator.GetEvent().Subscribe(CurrentWatermarkPDFViewer, e => e.Unicode == Unicode); eventAggregator.GetEvent().Subscribe(EditWatermarkTemplateItem, e => e.Unicode == Unicode); } public void CurrentWatermarkPDFViewer(CPDFViewerUnicode cPDFViewerunicod) { CurrentPDFViewer = cPDFViewerunicod.Status; } public void CloseEditTool() { this.eventAggregator.GetEvent().Publish(new EnumCloseModeUnicode { Unicode = Unicode, Status = EnumCloseMode.StatusCancel }); } public void ConfirmEditTool() { this.eventAggregator.GetEvent().Publish(Unicode); this.eventAggregator.GetEvent().Publish(new EnumCloseModeUnicode { Unicode = Unicode, Status = EnumCloseMode.StatusConfirm }); } public void EnterTemplateListOrCreate(EnumTemplateListOrCreateUnicode enumTemplateListOrCreateunicode) { EnumTemplateListOrCreate enumTemplateListOrCreate = enumTemplateListOrCreateunicode.Status; if (enumTemplateListOrCreate == EnumTemplateListOrCreate.StatusTemplate) { EnterSelectedContent(TemplateListName); } else { EnterSelectedContent(CreateBaseName); } } public void EditWatermarkTemplateItem(WatermarkItemUnicode watermarkItemunicode) { WatermarkItem watermarkItem = watermarkItemunicode.Status; NavigationParameters param = new NavigationParameters(); param.Add(ParameterNames.PDFViewer, PDFViewer); param.Add("CurrentTemplateListModName", CurrentTemplateListMod); param.Add("WatermarkItem", watermarkItem); watermarkRegion.RequestNavigate(WatermarkSettingsRegionName, CreateBaseName, param); WatermarkSettingsVisible = Visibility.Visible; } public void SetCurrentCreateMod(stringUnicode currentCreateModNameunicode) { string currentCreateModName = currentCreateModNameunicode.Status; if (currentCreateModName == CreateModTextName) { CurrentCreateMod = EnumTextOrFile.StatusText; } else if (currentCreateModName == CreateModFileName) { CurrentCreateMod = EnumTextOrFile.StatusFile; } } public void SetCurrentTemplateListMod(stringUnicode currentTemplateListModNameunicode) { string currentTemplateListModName = currentTemplateListModNameunicode.Status; if (currentTemplateListModName == TemplateListModTextName) { CurrentTemplateListMod = EnumTextOrFile.StatusText; } else if (currentTemplateListModName == TemplateListModFileName) { CurrentTemplateListMod = EnumTextOrFile.StatusFile; } } public void EnterSelectedContent(string SelectedContentName) { NavigationParameters param = new NavigationParameters(); param.Add(ParameterNames.PDFViewer, PDFViewer); if (SelectedContentName == TemplateListName) { param.Add("CurrentCreateModName", CurrentCreateMod); } else if (SelectedContentName == CreateBaseName) { param.Add("CurrentTemplateListModName", CurrentTemplateListMod); } watermarkRegion.RequestNavigate(WatermarkSettingsRegionName, SelectedContentName, param); WatermarkSettingsVisible = Visibility.Visible; } public void EnterDocumentContent() { NavigationParameters param = new NavigationParameters(); param.Add(ParameterNames.PDFViewer, PDFViewer); param.Add(ParameterNames.ViewContentViewModel, viewContentViewModel); watermarkRegion.RequestNavigate(WatermarkDocumentRegionName, WatermarkDocumentName, param); WatermarkDocumentVisible = Visibility.Visible; } private void DeleteWatermark() { AlertsMessage alertsMessage = new AlertsMessage(); if (CurrentPDFViewer.Document.GetWatermarkCount()> 0) { alertsMessage.ShowDialog("确定要删除文件水印吗?", "", "取消", "删除"); if (alertsMessage.result == ContentResult.Ok) { this.eventAggregator.GetEvent().Publish(new EnumDeleteUnicode { Unicode = Unicode, Status = EnumDelete.StatusDeleteAll}); } else { this.eventAggregator.GetEvent().Publish(new EnumDeleteUnicode { Unicode = Unicode, Status = EnumDelete.StatusCreate}); } } else { alertsMessage.ShowDialog("无法在本文件中找到可删除的水印。如果您看到水印,其不是使用PDF Master添加的,因此无法被检测到。", "", "取消", "确定"); } } private void BatchWatermark() { DialogParameters watermarkpdf = new DialogParameters(); watermarkpdf.Add(ParameterNames.BatchProcessing_Name, "3"); HomePageBatchProcessingDialogModel.FilePaths = new List { PDFViewer.Document.FilePath.ToString() }; HomePageBatchProcessingDialogModel.BatchProcessingIndex = 3; watermarkpdf.Add(ParameterNames.FilePath, new string[] { PDFViewer.Document.FilePath.ToString() }); dialogs.ShowDialog(DialogNames.HomePageBatchProcessingDialog, watermarkpdf, e => { EnterSelectedContent(TemplateListName); }); } public void OnNavigatedTo(NavigationContext navigationContext) { navigationContext.Parameters.TryGetValue(ParameterNames.ViewContentViewModel, out viewContentViewModel); navigationContext.Parameters.TryGetValue(ParameterNames.PDFViewer, out PDFViewer); EnterSelectedContent(TemplateListName); EnterDocumentContent(); } public bool IsNavigationTarget(NavigationContext navigationContext) { return true; } public void OnNavigatedFrom(NavigationContext navigationContext) { } } }