123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- using ComPDFKit.PDFWatermark;
- using ComPDFKitViewer.PdfViewer;
- using PDF_Office.CustomControl;
- using PDF_Office.EventAggregators;
- using PDF_Office.Helper;
- using PDF_Office.Model;
- using PDF_Office.Model.EditTools.Watermark;
- using PDF_Office.Model.PageEdit;
- using Prism.Commands;
- using Prism.Events;
- using Prism.Mvvm;
- using Prism.Regions;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Windows;
- namespace PDF_Office.ViewModels.EditTools.Watermark
- {
- public class WatermarkCreateFileContentViewModel : BindableBase, INavigationAware
- {
- public WatermarkInfo WatermarkInfo = new WatermarkInfo();
- private CPDFViewer PDFViewer;
- IEventAggregator eventAggregator;
- private List<string> _opacityList = new List<string>();
- public List<string> OpacityList
- {
- get { return _opacityList; }
- set
- {
- SetProperty(ref _opacityList, value);
- }
- }
- private void InitOpacityList()
- {
- OpacityList.Clear();
- for (int temp = 0; temp <= 100; temp += 10)
- {
- OpacityList.Add(temp.ToString() + " %");
- }
- }
- private List<string> _rotationList = new List<string>();
- public List<string> RotationList
- {
- get { return _rotationList; }
- set
- {
- SetProperty(ref _rotationList, value);
- }
- }
- private void InitRotationList()
- {
- RotationList.Clear();
- for (int temp = -45; temp <= 45; temp += 15)
- {
- RotationList.Add(temp.ToString());
- }
- }
- private List<string> _scaleList = new List<string>();
- public List<string> ScaleList
- {
- get { return _scaleList; }
- set
- {
- SetProperty(ref _scaleList, value);
- }
- }
- private void InitScaleList()
- {
- ScaleList.Clear();
- for (int temp = 0; temp <= 100; temp += 10)
- {
- ScaleList.Add(temp.ToString() + " %");
- }
- }
- private List<string> _isFrontList = new List<string>();
- public List<string> IsFrontList
- {
- get { return _isFrontList; }
- set
- {
- SetProperty(ref _isFrontList, value);
- }
- }
- private void InitIsFrontList()
- {
- IsFrontList.Clear();
- IsFrontList.Add("位于页面上方");
- IsFrontList.Add("位于页面下方");
- }
- private int _rotationValue = 0;
- public int RotationValue
- {
- get { return _rotationValue; }
- set
- {
- SetProperty(ref _rotationValue, value);
- WatermarkInfo.Rotation = (float)RotationValue;
- }
- }
- private int _opacityValue = 100;
- public int OpacityValue
- {
- get { return _opacityValue; }
- set
- {
- SetProperty(ref _opacityValue, value);
- WatermarkInfo.Opacity = (byte)((float)(OpacityValue / 100) * 225);
- }
- }
- private int _relativeScaleValue = 50;
- public int RelativeScaleValue
- {
- get { return _relativeScaleValue; }
- set
- {
- SetProperty(ref _relativeScaleValue, value);
- }
- }
- private string _vertOffsetValue = "0";
- public string VertOffsetValue
- {
- get { return _vertOffsetValue; }
- set
- {
- SetProperty(ref _vertOffsetValue, value);
- WatermarkInfo.VertOffset = float.Parse(VertOffsetValue);
- }
- }
- private string _horizOffsetValue = "0";
- public string HorizOffsetValue
- {
- get { return _horizOffsetValue; }
- set
- {
- SetProperty(ref _horizOffsetValue, value);
- WatermarkInfo.HorizOffset = float.Parse(HorizOffsetValue);
- }
- }
- private string _verticalSpacingValue = "6";
- public string VerticalSpacingValue
- {
- get { return _verticalSpacingValue; }
- set
- {
- SetProperty(ref _verticalSpacingValue, value);
- WatermarkInfo.VerticalSpacing = float.Parse(VerticalSpacingValue);
- }
- }
- private string _horizontalSpacingValue = "6";
- public string HorizontalSpacingValue
- {
- get { return _horizontalSpacingValue; }
- set
- {
- SetProperty(ref _horizontalSpacingValue, value);
- WatermarkInfo.HorizontalSpacing = float.Parse(HorizontalSpacingValue);
- }
- }
- public string PageRangeText { get; set; } = "0";
- private int _pageRangeSelectIndex = 0;
- public int PageRangeSelectIndex
- {
- get { return _pageRangeSelectIndex; }
- set
- {
- SetProperty(ref _pageRangeSelectIndex, value);
- EditToolsHelper.GetPageRange(PageRangeSelectIndex, PDFViewer.Document, ref WatermarkInfo.PageRange, PageRangeText);
- }
- }
- private int _isFrontSelectedIndex = 0;
- public int IsFrontSelectedIndex
- {
- get { return _isFrontSelectedIndex; }
- set
- {
- SetProperty(ref _isFrontSelectedIndex, value);
- SetIsFront(IsFrontSelectedIndex);
- }
- }
- private string _fileNameText = "";
- public string FileNameText
- {
- get { return _fileNameText; }
- set
- {
- SetProperty(ref _fileNameText, value);
- }
- }
- private Visibility _creatFileVisible = Visibility.Collapsed;
- public Visibility CreatFileVisible
- {
- get { return _creatFileVisible; }
- set { SetProperty(ref _creatFileVisible, value); }
- }
- private ObservableDictionary<string, bool> _getLocationFromNumber = new ObservableDictionary<string, bool>();
- public ObservableDictionary<string, bool> GetLocationFromNumber
- {
- get { return _getLocationFromNumber; }
- set { _getLocationFromNumber = value; }
- }
- public DelegateCommand<object> ChangeLocationCommand { get; set; }
- public DelegateCommand OpenFileCommand { get; set; }
- public WatermarkCreateFileContentViewModel(IEventAggregator eventAggregator)
- {
- this.eventAggregator = eventAggregator;
- WatermarkInfo.WatermarkType=C_Watermark_Type.WATERMARK_TYPE_IMG;
- ChangeLocationCommand = new DelegateCommand<object>(ChangeLocation);
- OpenFileCommand = new DelegateCommand(OpenFile);
- InitList();
- WatermarkInfo.WatermarkHorizalign = C_Watermark_Horizalign.WATERMARK_HORIZALIGN_CENTER;
- WatermarkInfo.WatermarkVertalign = C_Watermark_Vertalign.WATERMARK_VERTALIGN_CENTER;
- InitLocationButtonMatrix();
- eventAggregator.GetEvent<ConfirmEditToolsWatermarkEvent>().Subscribe(ConfirmEditToolsWatermark);
- }
- private void SetIsFront(int Index)
- {
- if (Index == 0)
- {
- WatermarkInfo.IsFront = false;
- }
- if (Index == 1)
- {
- WatermarkInfo.IsFront = true;
- }
- }
- private void InitList()
- {
- InitOpacityList();
- InitIsFrontList();
- InitRotationList();
- InitScaleList();
- }
- private void InitLocationButtonMatrix()
- {
- GetLocationFromNumber.Clear();
- for (var temp = 0; temp <= 22; temp++)
- {
- GetLocationFromNumber.Add(temp.ToString(), true);
- if (temp % 10 == 2)
- {
- temp += 7;
- }
- }
- int Num = (int)WatermarkInfo.WatermarkVertalign * 10 + (int)WatermarkInfo.WatermarkHorizalign;
- GetLocationFromNumber[Num.ToString()] = false;
- }
- public void ChangeLocation(object e)
- {
- string args = e as string;
- if (args != null)
- {
- WatermarkInfo.WatermarkVertalign = (C_Watermark_Vertalign)(int.Parse(args) / 10);
- WatermarkInfo.WatermarkHorizalign = (C_Watermark_Horizalign)(int.Parse(args) % 10);
- InitLocationButtonMatrix();
- }
- }
- public void ConfirmEditToolsWatermark(EnumTextOrFile enumTextOrFile)
- {
- if (enumTextOrFile == EnumTextOrFile.StatusFile)
- {
- eventAggregator.GetEvent<SetWatermarkEvent>().Publish(WatermarkInfo);
- }
- }
- public void OpenFile()
- {
- System.Windows.Forms.OpenFileDialog dlg = new System.Windows.Forms.OpenFileDialog();
- dlg.Multiselect = false;
- dlg.Filter = "PDF|*.png;*.jpg;*.pdf";
- if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- FileNameText = dlg.SafeFileName;
- FileInfo file = new FileInfo(dlg.FileName);
- if (file.Extension == ".pdf")
- {
- EditToolsHelper.ChooseFile(dlg.FileName, ref WatermarkInfo, PDFViewer.Document);
- }
- else
- {
- EditToolsHelper.ChooseFile(dlg.FileName, ref WatermarkInfo);
- }
- CreatFileVisible=Visibility.Visible;
- }
- }
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
- }
- }
- }
|