using ComPDFKit.Import;
using ComPDFKit.PDFAnnotation;
using ComPDFKit.PDFDocument;
using ComPDFKit.PDFPage;
using ComPDFKitViewer;
using ComPDFKitViewer.AnnotEvent;
using ComPDFKitViewer.PdfViewer;
using DryIoc;
using ImTools;
using Microsoft.Office.Interop.PowerPoint;
using Microsoft.Office.Interop.Word;
using PDF_Master.CustomControl;
using PDF_Master.DataConvert;
using PDF_Master.EventAggregators;
using PDF_Master.Helper;
using PDF_Master.Model;
using PDF_Master.Model.BOTA;
using PDF_Master.Properties;
using PDF_Master.Views.BOTA;
using PDF_Master.Views.PropertyPanel.AnnotPanel;
using PDF_Master.Views.Scan;
using Prism.Commands;
using Prism.Events;
using Prism.Mvvm;
using Prism.Regions;
using Prism.Services.Dialogs;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Configuration;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Management.Instrumentation;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Annotations;
using System.Windows.Annotations.Storage;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Forms;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Shapes;
using static Dropbox.Api.Files.SearchMatchType;
using static Dropbox.Api.Paper.ListPaperDocsSortBy;
using static Dropbox.Api.TeamLog.SpaceCapsType;
using static System.Net.Mime.MediaTypeNames;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar;
using Border = System.Windows.Controls.Border;
using ListBox = System.Windows.Controls.ListBox;
using Task = System.Threading.Tasks.Task;
using TextBox = System.Windows.Controls.TextBox;
using Winform = System.Windows.Forms;
namespace PDF_Master.ViewModels.BOTA
{
public class AnnotationContentViewModel : BindableBase, INavigationAware
{
#region 文案
private string T_expand;
public string T_Expand
{
get { return T_expand; }
set
{
SetProperty(ref T_expand, value);
}
}
private string T_title;
public string T_Title
{
get { return T_title; }
set
{
SetProperty(ref T_title, value);
}
}
private string T_collapse;
public string T_Collapse
{
get { return T_collapse; }
set
{
SetProperty(ref T_collapse, value);
}
}
private string T_import;
public string T_Import
{
get { return T_import; }
set
{
SetProperty(ref T_import, value);
}
}
private string T_copyText;
public string T_CopyText
{
get { return T_copyText; }
set
{
SetProperty(ref T_copyText, value);
}
}
private string T_export;
public string T_Export
{
get { return T_export; }
set
{
SetProperty(ref T_export, value);
}
}
private string T_deleteAll;
public string T_DeleteAll
{
get { return T_deleteAll; }
set
{
SetProperty(ref T_deleteAll, value);
}
}
private string T_emptyTitle;
public string T_EmptyTitle
{
get { return T_emptyTitle; }
set
{
SetProperty(ref T_emptyTitle, value);
}
}
private string T_emptyContext;
public string T_EmptyContext
{
get { return T_emptyContext; }
set
{
SetProperty(ref T_emptyContext, value);
}
}
private string T_delete;
public string T_Delete
{
get { return T_delete; }
set
{
SetProperty(ref T_delete, value);
}
}
private Visibility screen = Visibility.Collapsed;
///
/// 是否有筛选条件
///
public Visibility Screen
{
get { return screen; }
set
{
SetProperty(ref screen, value);
}
}
private void InitString()
{
T_Expand = App.MainPageLoader.GetString("Annotation_MenuExpand");
T_Collapse = App.MainPageLoader.GetString("Annotation_MenuCollapse");
T_Import = App.MainPageLoader.GetString("Annotation_MenuImport");
T_Export = App.MainPageLoader.GetString("Annotation_MenuExport");
T_DeleteAll = App.MainPageLoader.GetString("Annotation_MenuDeleteAll");
T_EmptyTitle = App.MainPageLoader.GetString("Annotation_EmptyTitle");
T_EmptyContext = App.MainPageLoader.GetString("Annotation_EmptyContext");
T_CopyText = App.MainPageLoader.GetString("Annotation_MenuCopyText");
T_Delete = App.MainPageLoader.GetString("Annotation_MenuDelete");
T_Title = App.MainPageLoader.GetString("Annotation_Title");
}
#endregion 文案
private ListBox listBox;
private IRegionManager region;
private IDialogService dialogs;
private IEventAggregator events;
private Visibility isEmptyPanelVisibility = Visibility.Visible;
public ViewContentViewModel ViewContentViewModel { get; set; }
public CPDFViewer PdfViewer { get; set; }
public Visibility IsEmptyPanelVisibility
{
get { return isEmptyPanelVisibility; }
set
{
SetProperty(ref isEmptyPanelVisibility, value);
}
}
private Visibility isHideAnnotPanelVisibility = Visibility.Collapsed;
public Visibility IsHideAnnotPanelVisibility
{
get { return isHideAnnotPanelVisibility; }
set
{
SetProperty(ref isHideAnnotPanelVisibility, value);
}
}
private ObservableCollection currentAnnotationArgs = new ObservableCollection();
public ObservableCollection CurrentAnnotationLists { get => currentAnnotationArgs; set => currentAnnotationArgs = value; }
private AnnotationSortOrder annotationSortOrder = AnnotationSortOrder.PageIndexAscending;
public AnnotationSortOrder AnnotationSortOrder
{
get { return annotationSortOrder; }
set { annotationSortOrder = value; }
}
private ObservableCollection annotationListItems;
public ObservableCollection AnnotationListItems
{
get { return annotationListItems; }
set
{
SetProperty(ref annotationListItems, value);
}
}
private bool CanIsEnabled()
{
if (AnnotationListItems == null)
{
return false;
}
else
{
if (AnnotationListItems.Count > 0)
{
return true;
}
else
{
return false;
}
}
}
//筛选注释
private List colors = new List();
private List authors = new List();
private List annotArgsTypes = new List();
public DelegateCommand LoadedCommand { get; set; }
public DelegateCommand ListBoxItemPreviewMouseLeftButtonDown { get; set; }
public DelegateCommand AddNotesCommand { get; set; }
public DelegateCommand ScreenCommand { get; set; }
public DelegateCommand ExportCommentsCommand { get; set; }
public DelegateCommand ImportCommentsCommand { get; set; }
public DelegateCommand DeleteCommand { get; set; }
public DelegateCommand DeleteAllCommand { get; set; }
public DelegateCommand PageSortCommand { get; set; }
public DelegateCommand TimeAscendingCommand { get; set; }
public DelegateCommand TimeDescendingCommand { get; set; }
public string Unicode { get; private set; }
private bool IsFirst = true;
private bool isHiddenAnnot = false;
///
/// 判断是否为属性修改进入,属性修改,改变后不让再次其选中注释
///
public bool IsModified = true;
public AnnotationContentViewModel(IRegionManager regionManager, IDialogService dialogService, IEventAggregator eventAggregator)
{
region = regionManager;
dialogs = dialogService;
events = eventAggregator;
Unicode = App.mainWindowViewModel.SelectedItem.Unicode;
LoadedCommand = new DelegateCommand(Loaded);
ListBoxItemPreviewMouseLeftButtonDown = new DelegateCommand(ListBoxItem_PreviewMouseLeftButtonDown);
AddNotesCommand = new DelegateCommand(AddNotesEvent);
ScreenCommand = new DelegateCommand(FilterCommentsEvent);
ExportCommentsCommand = new DelegateCommand(ExportCommentsEvent, CanIsEnabled).ObservesProperty(() => AnnotationListItems);
ImportCommentsCommand = new DelegateCommand(ImportCommentsEvent);
DeleteCommand = new DelegateCommand(DelegateEvent);
DeleteAllCommand = new DelegateCommand(DeleteAllEvent, CanIsEnabled).ObservesProperty(() => AnnotationListItems);
PageSortCommand = new DelegateCommand(PageSortEvent);
TimeAscendingCommand = new DelegateCommand(TimeAscendingEvent);
TimeDescendingCommand = new DelegateCommand(TimeDescendingEvent);
InitString();
events.GetEvent().Subscribe(RefreshData, e => e.Unicode == Unicode);
events.GetEvent().Subscribe(OnNotifyEvent, e => e.Unicode == Unicode && e.Type == NotifyType.PageCountChanged);
}
private void OnNotifyEvent(PageEditNotifyEventArgs obj)
{
RefreshAnnotationListItems();
}
public void HiddenAnnot()
{
isHiddenAnnot = true;
colors.Clear();
authors.Clear();
annotArgsTypes.Clear();
AnnotationListItems.Clear();
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
AnnotationListItems.AddRange(CurrentAnnotationLists);
Screen = Visibility.Collapsed;
}
public void DisplayAnnot()
{
if (ViewContentViewModel.mainViewModel.AnnotMouseLeftButtonDown)
{
return;
}
isHiddenAnnot = false;
colors.Clear();
authors.Clear();
annotArgsTypes.Clear();
AnnotationListItems.Clear();
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
AnnotationListItems.AddRange(CurrentAnnotationLists);
RefreshAnnotationListItems();
Screen = Visibility.Collapsed;
}
///
/// 导入注释
///
///
private async void ImportCommentsEvent()
{
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
dlg.Filter = "PDF|*.xfdf";
dlg.DefaultExt = ".xfdf";
if (dlg.ShowDialog() == true)
{
try
{
string fileName = dlg.FileName;
await Task.Delay(10);
var result = PdfViewer.ImportAnnotationFromXFDFPath(fileName);
if (result == false)
{
//MessageBoxEx.Show("导入失败", "", Winform.MessageBoxButtons.OK, Winform.MessageBoxIcon.Error);
AlertsMessage alertsMessage = new AlertsMessage();
alertsMessage.ShowDialog(App.MainPageLoader.GetString("Dialog_Hint"), App.MainPageLoader.GetString("Annot_ExportFailWarning"), App.ServiceLoader.GetString("Text_ok"));
return;
}
PdfViewer.ReloadVisibleAnnots();
//提取出来的注释文件 时间为空 则显示未系统当前时间
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
//BOTA,注释列表,添加在页面上的注释要默认按照页面上的位置排序,从上往下,从左往右排列
//CurrentAnnotationLists = new ObservableCollection(CurrentAnnotationLists.OrderBy(item => item.ClientRect.X).ThenBy(item => item.ClientRect.Y));
AnnotationListItems.Clear();
AnnotationListItems.AddRange(CurrentAnnotationLists);
await Task.Delay(5);
RefreshAnnotationListItems(null);
PdfViewer.UndoManager.CanSave = true;
}
catch (Exception ex)
{
AlertsMessage alertsMessage = new AlertsMessage();
alertsMessage.ShowDialog(App.MainPageLoader.GetString("Dialog_Hint"), App.MainPageLoader.GetString("Annot_ExportFailWarning") + ex.Message, App.ServiceLoader.GetString("Text_ok"));
}
}
}
///
/// 时间倒序
///
private void TimeDescendingEvent()
{
ICollectionView v = CollectionViewSource.GetDefaultView(AnnotationListItems);
CreateTimeToDate createTimeToDate = new CreateTimeToDate();
v.GroupDescriptions.Clear();
v.GroupDescriptions.Add(new PropertyGroupDescription(nameof(AnnotHandlerEventArgs.CreateTime), createTimeToDate));
v.SortDescriptions.Clear();
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.CreateTime), ListSortDirection.Descending));
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.AnnotIndex), ListSortDirection.Descending));
AnnotationSortOrder = AnnotationSortOrder.TimeDescending;
}
///
/// 时间正序
///
private void TimeAscendingEvent()
{
ICollectionView v = CollectionViewSource.GetDefaultView(AnnotationListItems);
CreateTimeToDate createTimeToDate = new CreateTimeToDate();
v.GroupDescriptions.Clear();
v.GroupDescriptions.Add(new PropertyGroupDescription(nameof(AnnotHandlerEventArgs.CreateTime), createTimeToDate));
v.SortDescriptions.Clear();
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.CreateTime), ListSortDirection.Ascending));
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.AnnotIndex), ListSortDirection.Ascending));
AnnotationSortOrder = AnnotationSortOrder.TimeAscending;
}
///
/// 页面排序
///
private void PageSortEvent()
{
if (AnnotationListItems == null) return;
if (AnnotationListItems.Count < 0) return;
ICollectionView v = CollectionViewSource.GetDefaultView(AnnotationListItems);
v.GroupDescriptions.Clear();
v.GroupDescriptions.Add(new PropertyGroupDescription(nameof(AnnotHandlerEventArgs.PageIndex)));
v.SortDescriptions.Clear();
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.PageIndex), ListSortDirection.Ascending));
v.SortDescriptions.Add(new SortDescription(nameof(AnnotHandlerEventArgs.AnnotIndex), ListSortDirection.Ascending));
AnnotationSortOrder = AnnotationSortOrder.PageIndexAscending;
}
///
/// 删除所有注释
///
private void DeleteAllEvent()
{
//调用集中删除的接口 方便一次性undo
Dictionary> deleteLists = new Dictionary>();
for (int i = 0; i < AnnotationListItems.Count; i++)
{
AnnotationHandlerEventArgs item = AnnotationListItems[i] as AnnotationHandlerEventArgs;
if (!deleteLists.ContainsKey(item.PageIndex))
{
deleteLists.Add(item.PageIndex, new List() { item.AnnotIndex });
}
else
{
var pagelist = deleteLists[item.PageIndex];
pagelist.Add(item.AnnotIndex);
}
}
AlertsMessage alertsMessage = new AlertsMessage();
alertsMessage.ShowDialog(" ", App.MainPageLoader.GetString("DeleteAllAnnotation_Warning"), App.ServiceLoader.GetString("Text_cancel"), App.ServiceLoader.GetString("Text_ok"));
if (alertsMessage.result == ContentResult.Ok)
{
PdfViewer.RemovePageAnnot(deleteLists);
AnnotationListItems.Clear();
CurrentAnnotationLists.Clear();
PdfViewer.UndoManager.CanSave = true;
}
}
///
/// 删除注释,单个/多个
///
///
private void DelegateEvent(object obj)
{
if (obj is AnnotationHandlerEventArgs annotation)
{
if (annotation != null)
{
var result = PdfViewer.RemovePageAnnot(annotation.PageIndex, annotation.AnnotIndex);
if (result)
{
RemoveItem(annotation);
}
}
}
//删除多个
if (obj is Dictionary> dics)
{
foreach (KeyValuePair> kvp in dics)
{
int key = kvp.Key;
List list = kvp.Value;
foreach (var item in list)
{
var annotation2 = AnnotationListItems.FirstOrDefault(x => x.PageIndex == key && x.AnnotIndex == item);
if (annotation2 != null)
{
AnnotationListItems.Remove(annotation2);
}
var annotation1 = CurrentAnnotationLists.FirstOrDefault(x => x.PageIndex == key && x.AnnotIndex == item);
if (annotation1 != null)
{
CurrentAnnotationLists.Remove(annotation1);
}
if (annotation2 != null && annotation1 != null)
{
UpdateAnnotListAfterDelete(key, item);
}
}
}
PdfViewer.UndoManager.CanSave = true;
PdfViewer.RemovePageAnnot(dics);
}
}
public void RemoveItem(AnnotationHandlerEventArgs annotation)
{
AnnotationListItems.Remove(annotation);
var annotation1 = CurrentAnnotationLists.FirstOrDefault(x => x.PageIndex == annotation.PageIndex && x.AnnotIndex == annotation.AnnotIndex);
CurrentAnnotationLists.Remove(annotation1);
//记录是删除了哪些页面的注释,然后更新对应页面的注释即可
UpdateAnnotListAfterDelete(annotation.PageIndex, annotation.AnnotIndex);
PdfViewer.UndoManager.CanSave = true;
}
///
/// 删除之后,更新
///
///
///
private void UpdateAnnotListAfterDelete(int pageIndex, int annoteIndex)
{
var items = PdfViewer.GetAnnotCommentList(pageIndex, PdfViewer.Document);
for (int j = 0; j < items.Count; j++)//用修改赋值的方式 可以解决删除后表头折叠的问题
{
if (items[j].AnnotIndex >= annoteIndex)//只需要更新比删除元素索引大的注释
{
for (int k = 0; k < AnnotationListItems.Count; k++)
{
//相当于将后面的索引-1
if (AnnotationListItems[k].PageIndex == pageIndex &&
AnnotationListItems[k].AnnotIndex == (items[j].AnnotIndex + 1) &&
string.Equals(AnnotationListItems[k].MarkupContent, items[j].MarkupContent) &&
string.Equals(AnnotationListItems[k].Content, items[j].Content) &&
string.Equals(AnnotationListItems[k].CreateTime, items[j].CreateTime) &&
string.Equals(AnnotationListItems[k].Author, items[j].Author)
)
{
AnnotationListItems[k].AnnotHandlerEventArgs = items[j];
AnnotationListItems[k].PageIndex = items[j].PageIndex;
AnnotationListItems[k].AnnotIndex = items[j].AnnotIndex;
AnnotationListItems[k].EventType = items[j].EventType;
AnnotationListItems[k].CreateTime = items[j].CreateTime;
AnnotationListItems[k].UpdateTime = items[j].UpdateTime;
if (items[j].EventType == AnnotArgsType.AnnotFreehand)
{
BitmapImage bitmap = GetAnnotImage(PdfViewer.Document, items[j].PageIndex, items[j].AnnotIndex);
if (bitmap != null)
AnnotationListItems[k].WriteableBitmap = bitmap;
}
AnnotationListItems[k].Content = items[j].Content;
AnnotationListItems[k].MarkupContent = items[j].MarkupContent;
AnnotationListItems[k].Author = items[j].Author;
AnnotationListItems[k].Locked = items[j].Locked;
AnnotationListItems[k].ReadOnly = items[j].ReadOnly;
AnnotationListItems[k].FormField = items[j].FormField;
AnnotationListItems[k].Document = PdfViewer.Document;
}
}
}
}
}
///
/// 导出注释
///
///
private void ExportCommentsEvent()
{
if (ViewContentViewModel.CanSave)
{
ViewContentViewModel.SaveFile.Execute();
}
Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
dlg.Filter = "PDF|*.xfdf";
dlg.DefaultExt = ".xfdf";
dlg.FileName = PdfViewer.Document.FileName;
if (dlg.ShowDialog() == true)
{
string fileName = dlg.FileName;
var result = PdfViewer.ExportAnnotationToXFDFPath(fileName);
if (result)
{
AlertsMessage alertsMessage = new AlertsMessage();
alertsMessage.ShowDialog(App.MainPageLoader.GetString("Dialog_Hint"), App.MainPageLoader.GetString("Annot_ExportSuccess"), App.ServiceLoader.GetString("Text_ok"));
}
else
{
AlertsMessage alertsMessage = new AlertsMessage();
alertsMessage.ShowDialog(App.MainPageLoader.GetString("Dialog_Hint"), App.MainPageLoader.GetString("Annot_ExportSuccess"), App.ServiceLoader.GetString("Text_ok"));
}
}
}
///
/// 筛选注释
///
///
private void FilterCommentsEvent(object obj)
{
if (obj is System.Windows.Controls.Button button)
{
DialogParameters value = new DialogParameters();
value.Add(ParameterNames.AnnotationList, CurrentAnnotationLists);
value.Add(ParameterNames.AnnotArgsTypes, annotArgsTypes);
value.Add(ParameterNames.AnnotationColors, colors);
value.Add(ParameterNames.AnnotationAuthor, authors);
dialogs.ShowDialog(DialogNames.ScreenAnnotationDialog, value, e =>
{
if (e.Result == ButtonResult.OK && e.Parameters != null)
{
if (e.Parameters.ContainsKey(ParameterNames.AnnotArgsTypes))
{
annotArgsTypes = e.Parameters.GetValue>(ParameterNames.AnnotArgsTypes);
}
if (e.Parameters.ContainsKey(ParameterNames.AnnotationColors))
{
colors = e.Parameters.GetValue>(ParameterNames.AnnotationColors);
}
if (e.Parameters.ContainsKey(ParameterNames.AnnotationAuthor))
{
authors = e.Parameters.GetValue>(ParameterNames.AnnotationAuthor);
}
if (annotArgsTypes.Count > 0 || colors.Count > 0 || authors.Count > 0)
{
ObservableCollection screenAnnotationArgs = SelectAnnotationListItems(annotArgsTypes, colors, authors);
AnnotationListItems.Clear();
AnnotationListItems.AddRange(screenAnnotationArgs);
//BOTA,注释列表,添加在页面上的注释要默认按照页面上的位置排序,从上往下,从左往右排列
//AnnotationListItems = new ObservableCollection(AnnotationListItems.OrderBy(item => item.ClientRect.Y).ThenBy(item => item.ClientRect.X));
RefreshAnnotationListItems(button);
//AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
Screen = Visibility.Visible;
}
else
{
CleanAnnotation(button);
Screen = Visibility.Collapsed;
}
}
else if (e.Result == ButtonResult.Cancel && e.Parameters != null)
{
//CleanAnnotation(button);
}
});
}
}
private void CleanAnnotation(System.Windows.Controls.Button button)
{
colors.Clear();
authors.Clear();
annotArgsTypes.Clear();
AnnotationListItems.Clear();
AnnotationListItems.AddRange(CurrentAnnotationLists);
//BOTA,注释列表,添加在页面上的注释要默认按照页面上的位置排序,从上往下,从左往右排列
//AnnotationListItems = new ObservableCollection(AnnotationListItems.OrderBy(item => item.ClientRect.Y).ThenBy(item => item.ClientRect.X));
RefreshAnnotationListItems(button);
//AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
}
///
/// 刷新列表数据
///
///
public async void RefreshAnnotationListItems(System.Windows.Controls.Button button = null)
{
switch (AnnotationSortOrder)
{
case AnnotationSortOrder.TimeAscending:
TimeAscendingEvent();
break;
case AnnotationSortOrder.TimeDescending:
TimeDescendingEvent();
break;
case AnnotationSortOrder.PageIndexAscending:
PageSortEvent();
break;
default:
break;
}
if (AnnotationListItems == null) return;
if (AnnotationListItems.Count > 0)
{
IsEmptyPanelVisibility = Visibility.Collapsed;
await Task.Delay(5);
////展开数据
//ExpandGroupHeader(AnnotationListItems, listBox);
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = true });
}
else
{
if (button != null)
{
button.IsEnabled = true;
}
IsEmptyPanelVisibility = Visibility.Visible;
IsHideAnnotPanelVisibility = Visibility.Visible;
}
}
///
/// 根据条件筛选列表数据
///
///
///
///
///
private ObservableCollection SelectAnnotationListItems(List annotArgsTypes, List colors, List authors)
{
ObservableCollection annotationArgs = new ObservableCollection();
#region 类型 颜色 作者
if (annotArgsTypes.Count > 0 && colors.Count > 0 && authors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var type in annotArgsTypes)
{
foreach (var color in colors)
{
foreach (var author in authors)
{
if (item.EventType == type && item.Author == author)
{
SelectAnnotationColors(item, color, annotationArgs);
}
}
}
}
}
}
#endregion 类型 颜色 作者
#region 颜色 作者
else if (colors.Count > 0 && authors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var color in colors)
{
foreach (var author in authors)
{
if (item.Author == author)
{
SelectAnnotationColors(item, color, annotationArgs);
}
}
}
}
}
#endregion 颜色 作者
#region 类型 作者
else if (annotArgsTypes.Count > 0 && authors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var type in annotArgsTypes)
{
foreach (var author in authors)
{
if (item.EventType == type && item.Author == author)
{
annotationArgs.Add(item);
}
}
}
}
}
#endregion 类型 作者
#region 类型 颜色
else if (annotArgsTypes.Count > 0 && colors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var type in annotArgsTypes)
{
foreach (var color in colors)
{
if (item.EventType == type)
{
SelectAnnotationColors(item, color, annotationArgs);
}
}
}
}
}
#endregion 类型 颜色
#region 类型
else if (annotArgsTypes.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var type in annotArgsTypes)
{
if (item.EventType == type)
{
annotationArgs.Add(item);
}
}
}
}
#endregion 类型
#region 颜色
else if (colors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var color in colors)
{
SelectAnnotationColors(item, color, annotationArgs);
}
}
}
#endregion 颜色
#region 作者
else if (authors.Count > 0)
{
foreach (var item in CurrentAnnotationLists)
{
foreach (var author in authors)
{
if (item.Author == author)
{
annotationArgs.Add(item);
}
}
}
}
#endregion 作者
return annotationArgs;
}
///
/// 根据颜色筛选注释
///
///
///
///
private void SelectAnnotationColors(AnnotationHandlerEventArgs item, string color, ObservableCollection annotationArgs)
{
AnnotHandlerEventArgs data = item.AnnotHandlerEventArgs;
switch (item.EventType)
{
case AnnotArgsType.AnnotFreeText://文本
if (data is FreeTextAnnotArgs textAnnotArgs)
{
AddScreenAnnotationArgs(textAnnotArgs.FontColor, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotHighlight://高亮
if (data is TextHighlightAnnotArgs highlightAnnotArgs)
{
AddScreenAnnotationArgs(highlightAnnotArgs.Color, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotFreehand://手绘
if (data is FreehandAnnotArgs freehandAnnotArgs)
{
AddScreenAnnotationArgs(freehandAnnotArgs.InkColor, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotSquiggly://波浪线
break;
case AnnotArgsType.AnnotStamp://图章
break;
case AnnotArgsType.AnnotStrikeout://删除线
if (data is TextStrikeoutAnnotArgs textStrikeoutAnnotArgs)
{
AddScreenAnnotationArgs(textStrikeoutAnnotArgs.Color, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotSticky://便签
if (data is StickyAnnotArgs stickyAnnotArgs)
{
AddScreenAnnotationArgs(stickyAnnotArgs.Color, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotUnderline://下划线
if (data is TextUnderlineAnnotArgs textUnderlineAnnotArgs)
{
AddScreenAnnotationArgs(textUnderlineAnnotArgs.Color, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotLine:
//if ((item.AnnotHandlerEventArgs as LineAnnotArgs).HeadLineType >= (C_LINE_TYPE)1 || (item.AnnotHandlerEventArgs as LineAnnotArgs).TailLineType >= (C_LINE_TYPE)1)
//{
// //箭头
//}
//else
//{
// //线
//}
if (data is LineAnnotArgs lineAnnotArgs)
{
AddScreenAnnotationArgs(lineAnnotArgs.LineColor, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotSquare://矩形
if (data is SquareAnnotArgs squareAnnotArgs)
{
AddScreenAnnotationArgs(squareAnnotArgs.LineColor, color, item, annotationArgs);
AddScreenAnnotationArgs(squareAnnotArgs.BgColor, color, item, annotationArgs);
}
break;
case AnnotArgsType.AnnotCircle://圆
if (data is CircleAnnotArgs circleAnnotArgs)
{
AddScreenAnnotationArgs(circleAnnotArgs.LineColor, color, item, annotationArgs);
AddScreenAnnotationArgs(circleAnnotArgs.BgColor, color, item, annotationArgs);
}
break;
}
}
///
/// 对比颜色
///
///
///
///
///
private void AddScreenAnnotationArgs(System.Windows.Media.Color color1, string color, AnnotationHandlerEventArgs item, ObservableCollection annotationArgs)
{
if (color1.ToString() == color)
{
annotationArgs.Add(item);
}
}
///
/// 添加附注的注释
///
///
private void AddNotesEvent(object obj)
{
if (obj is ListBoxItem listBoxItem)
{
if (listBoxItem.DataContext is AnnotationHandlerEventArgs args)
{
//if (args.EventType != AnnotArgsType.AnnotSticky && args.EventType != AnnotArgsType.AnnotFreeText && args.EventType != AnnotArgsType.AnnotLink)
if (args.EventType != AnnotArgsType.AnnotSticky && args.EventType != AnnotArgsType.AnnotFreeText && args.EventType != AnnotArgsType.AnnotLink/*&&
args.EventType != AnnotArgsType.AnnotHighlight && args.EventType != AnnotArgsType.AnnotUnderline
&& args.EventType != AnnotArgsType.AnnotStrikeout*/)
{
DialogParameters value = new DialogParameters();
value.Add(ParameterNames.Annotation, args);
dialogs.ShowDialog(DialogNames.AddAnnotationDialog, value, e =>
{
if (e.Result == ButtonResult.OK && e.Parameters != null)
{
PdfViewer.UndoManager.CanSave = true;
if (e.Parameters.ContainsKey(ParameterNames.Annotation) && e.Parameters.ContainsKey(ParameterNames.AnnotEvent))
{
AnnotationHandlerEventArgs annotation = e.Parameters.GetValue(ParameterNames.Annotation);
RefreshOneListItem(annotation.AnnotHandlerEventArgs);
}
}
});
}
//else if (args.EventType == AnnotArgsType.AnnotFreeText)
//{
// StackPanel stackPanel = CommonHelper.FindVisualChild(listBoxItem);
// TextBox textBox = CommonHelper.FindVisualChild(stackPanel);
// TextBlock textBlock = CommonHelper.FindVisualChild(stackPanel);
// textBlock.Visibility = Visibility.Collapsed;
// textBox.Visibility = Visibility.Visible;
// textBox.Dispatcher.BeginInvoke(new Action(() =>
// {
// textBox.Focus();
// textBox.SelectAll();
// }));
//}
}
}
}
private void RefreshOneListItem(AnnotHandlerEventArgs annotation)
{
for (int i = 0; i < AnnotationListItems.Count; i++)
{
if (AnnotationListItems[i].PageIndex == annotation.PageIndex && AnnotationListItems[i].AnnotIndex == annotation.AnnotIndex)
{
AnnotationListItems[i] = GetAddAnnotEventArgs(annotation);
for (int j = 0; j < CurrentAnnotationLists.Count; j++)
{
if (CurrentAnnotationLists[j].PageIndex == annotation.PageIndex && CurrentAnnotationLists[j].AnnotIndex == annotation.AnnotIndex)
{
CurrentAnnotationLists[j] = GetAddAnnotEventArgs(annotation);
break;
}
}
if (AnnotationListItems[i] != null)
{
//if (!listBox.SelectedItems.Contains(AnnotationListItems[i]))
//{
// listBox.SelectedItem = AnnotationListItems[i];
//}
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, IsSelect = true, annotHandlerArgs = AnnotationListItems[i] });
}
//await Task.Delay(5);//不加延时 每页的第一个注释不会展开
//await Task.Delay(1);//不加延时 每页的第一个注释不会展开
//ExpandGroupHeader(AnnotationListItems[i], listBox);
//await Task.Delay(1);//不加延时 会有不滚动的现象
//listBox.ScrollIntoView(AnnotationListItems[i]);
break;
}
}
}
public void ScrollToAnnot(int pageindex, int annotindex, ListBox AnnotationList)
{
//var list = PdfViewer.GetAnnotCommentList(pageindex, PdfViewer.Document);
for (int i = 0; i < AnnotationList.Items.Count; i++)
{
if (AnnotationList.Items[i] is AnnotationHandlerEventArgs item)
{
if (item.AnnotIndex == annotindex && item.PageIndex == pageindex)
{
//var item = AnnotationList.Items[i] as AnnotationHandlerEventArgs;
if (item.EventType != AnnotArgsType.AnnotLink)
{
#region 失败率比较高 当数据多的时候
//需要手动搜寻在哪一个分组 展开分组头
//ExpandGroupHeader(item, AnnotationList);
//if (AnnotationList.SelectedItems.IndexOf(item) == -1)
//{
// AnnotationList.SelectedItem = item;
// await Task.Delay(5);
// AnnotationList.ScrollIntoView(item);
//}
#endregion 失败率比较高 当数据多的时候
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, IsSelect = true, annotHandlerArgs = item, IsExpand = false });
}
}
}
}
}
///
/// listboxitem鼠标左键点击,显示分组的数据
///
///
private void ListBoxItem_PreviewMouseLeftButtonDown(object obj)
{
if (obj is ListBoxItem item)
{
var data = item.DataContext as AnnotationHandlerEventArgs;
if (data != null)
{
PdfViewer.SelectAnnotation(data.PageIndex, data.AnnotIndex);
}
}
if (obj is AnnotationHandlerEventArgs annotation)
{
ViewContentViewModel.mainViewModel.AnnotMouseLeftButtonDown = true;
if (PdfViewer.GetSelectAnnotCount() == 1)
{
List annotationHandlers = PdfViewer.GetSelectionAnnots();
var result = annotationHandlers.FindAll(x => x.PageIndex == annotation.PageIndex && x.AnnotIndex == annotation.AnnotIndex);
if (result != null && result.Count > 0)
{
return;
}
}
PdfViewer.SelectAnnotation(annotation.PageIndex, annotation.AnnotIndex);
}
else
{
ViewContentViewModel.mainViewModel.AnnotMouseLeftButtonDown = false;
}
if (obj is Dictionary> eventArgs)
{
PdfViewer.SelectAnnotation(eventArgs);
}
}
public async void UpdateAddedAnnot(BOTAContent bOTAContent, int pageIndex, int annotIndex)
{
var annots = PdfViewer.GetAnnotCommentList(pageIndex, PdfViewer.Document);
for (int i = 0; i < annots.Count; i++)
{
AnnotHandlerEventArgs item = annots[i];
if (item.AnnotIndex == annotIndex && item.EventType != AnnotArgsType.AnnotRedaction)
{
AnnotationHandlerEventArgs args = GetAddAnnotEventArgs(item);
// 注释列表 不显示链接
if (args.AnnotHandlerEventArgs is LinkAnnotArgs || args == null)
{
continue;
}
if (args.AnnotHandlerEventArgs != null)
{
AnnotationListItems.Add(args);
CurrentAnnotationLists.Add(args);
await Task.Delay(5);//不加延时 每页的第一个注释不会展开
if (ViewContentViewModel.IsMultiSelected == false)
{
//添加 时 ,形状、图章、签名,添加后选中
if (args.EventType == AnnotArgsType.AnnotSquare ||
args.EventType == AnnotArgsType.AnnotCircle ||
args.EventType == AnnotArgsType.AnnotLine ||
args.EventType == AnnotArgsType.AnnotStamp
/* ||args.EventType == AnnotArgsType.AnnotLink*/)
{
listBox.SelectedItem = args;
}
}
//ExpandGroupHeader(args, listBox);
// 关闭后选中关闭前的位置
if (ViewContentViewModel.OpenBOTA && bOTAContent.TabItemAnnotation.IsSelected)
{
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, annotHandlerArgs = args });
}
}
}
}
listBox.UpdateLayout();
//SetGroupHeader(listBox);
if (IsEmptyPanelVisibility == Visibility.Visible && AnnotationListItems.Count > 0)
{
IsEmptyPanelVisibility = Visibility.Collapsed;
}
}
public void DeleteModifiedAnnot(int pageIndex, int annotIndex)
{
#region 历史版本
//var items = PdfViewer.GetAnnotCommentList(pageIndex, PdfViewer.Document);
//if (items.Count == 0)
//{
// for (int k = 0; k < AnnotationListItems.Count; k++)
// {
// if (AnnotationListItems[k].PageIndex == pageIndex && AnnotationListItems[k].AnnotIndex == annotIndex)
// {
// //AnnotationListItems.RemoveAt(k);
// //AnnotationHandlerEventArgs annotation1 = CurrentAnnotationLists.FirstOrDefault(x => x.PageIndex == AnnotationListItems[k].PageIndex && x.AnnotIndex == AnnotationListItems[k].AnnotIndex);
// //CurrentAnnotationLists.Remove(annotation1);
// //UpdateAnnotListAfterDelete(pageIndex, annotIndex);
// //AnnotationHandlerEventArgs args = AnnotationListItems.FindFirst(a => a.PageIndex == pageIndex);
// //listBox.ScrollIntoView(args);
// //删除之后要拿到最新的数据源
// CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
// AnnotationListItems = new ObservableCollection();
// AnnotationListItems.AddRange(CurrentAnnotationLists);
// AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
// RefreshAnnotationListItems();
// return;
// }
// }
//}
//else
//{
// for (int k = 0; k < AnnotationListItems.Count; k++)
// {
// //不能加item[j].annoteIndex = annotIndex 删除后必匹配不上
// if (AnnotationListItems[k].PageIndex == pageIndex && AnnotationListItems[k].AnnotIndex == annotIndex)
// {
// //AnnotationHandlerEventArgs annotation1 = CurrentAnnotationLists.FirstOrDefault(x => x.PageIndex == AnnotationListItems[k].PageIndex && x.AnnotIndex == AnnotationListItems[k].AnnotIndex);
// //CurrentAnnotationLists.Remove(annotation1);
// //AnnotationListItems.RemoveAt(k);
// //UpdateAnnotListAfterDelete(pageIndex, annotIndex);
// //删除之后要拿到最新的数据源
// RefreshAnnotation(pageIndex);
// return;
// }
// }
//}
#endregion 历史版本
//更改更新注释方法 5.16
RefreshAnnotationPage(pageIndex);
}
///
/// 将BOTA原本的对应页面所有注释删除,将更新后的所对应页面的注释更新到BOTA中,在滚动到对应页面第一个注释
///
/// 页面索引
private void RefreshAnnotationPage(int pageIndex)
{
List pageindex = new List();
for (int k = 0; k < AnnotationListItems.Count; k++)
{
if (AnnotationListItems[k].PageIndex == pageIndex)
{
// AnnotationListItems.RemoveAt(k);
pageindex.Add(k);
}
}
CommonHelper.Reverseorder(ref pageindex);
foreach (var a in pageindex)
{
AnnotationListItems.RemoveAt(a);
}
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
for (int k = 0; k < CurrentAnnotationLists.Count; k++)
{
if (CurrentAnnotationLists[k].PageIndex == pageIndex)
{
AnnotationListItems.Add(CurrentAnnotationLists[k]);
}
}
//PageSortEvent();
AnnotationHandlerEventArgs args = AnnotationListItems.FindFirst(a => a.PageIndex == pageIndex);
////await Task.Delay(5);//不加延时 每页的第一个注释不会展开
////ExpandGroupHeader(args, listBox);
////await Task.Delay(5);//不加延时 会有不滚动的现象
////listBox.ScrollIntoView(args);
///
IsModified = true;
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, IsDel = true, annotHandlerArgs = args });
}
private void RefreshAnnotation(int pageIndex)
{
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
AnnotationListItems = new ObservableCollection();
AnnotationListItems.AddRange(CurrentAnnotationLists);
AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
//RefreshAnnotationListItems();
PageSortEvent();
AnnotationHandlerEventArgs args = AnnotationListItems.FindFirst(a => a.PageIndex == pageIndex);
//await Task.Delay(5);//不加延时 每页的第一个注释不会展开
//ExpandGroupHeader(args, listBox);
//await Task.Delay(5);//不加延时 会有不滚动的现象
//listBox.ScrollIntoView(args);
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, annotHandlerArgs = args });
}
public void UpdateModifiedAnnot(int pageIndex, int annotIndex/*, bool isDelete*/)
{
try
{
var items = PdfViewer.GetAnnotCommentList(pageIndex, PdfViewer.Document);
for (int j = 0; j < items.Count; j++)
{
for (int k = 0; k < AnnotationListItems.Count; k++)
{
if (AnnotationListItems[k].PageIndex == pageIndex && AnnotationListItems[k].AnnotIndex == annotIndex && items[j].AnnotIndex == annotIndex)
{
IsModified = false;
AnnotationHandlerEventArgs args = GetAddAnnotEventArgs(items[j]);
if (args != null)
{
AnnotationListItems[k] = args;
AnnotationListItems[k].Author = Settings.Default.AppProperties.Description.Author;
for (int i = 0; i < CurrentAnnotationLists.Count; i++)
{
if (CurrentAnnotationLists[i].PageIndex == pageIndex && CurrentAnnotationLists[i].AnnotIndex == annotIndex)
{
CurrentAnnotationLists[i] = GetAddAnnotEventArgs(items[j]);
break;
}
}
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = false, annotHandlerArgs = AnnotationListItems[k], IsSelect = true });
}
//await Task.Delay(5);//不加延时 每页的第一个注释不会展开
//if (ViewContentViewModel.IsMultiSelected == false)
//{
// if (listBox.SelectedItems.IndexOf(AnnotationListItems[k]) == -1)
// //if (!listBox.SelectedItems.Contains(AnnotationListItems[k]))
// {
// IsModified = false;
// listBox.SelectedItem = AnnotationListItems[k];
// //PdfViewer.SelectAnnotation(args.PageIndex, args.AnnotIndex);
// }
//}
//ExpandGroupHeader(AnnotationListItems[k], listBox);
//await Task.Delay(5);//不加延时 会有不滚动的现象
//listBox.ScrollIntoView(AnnotationListItems[k]);
}
}
}
listBox.UpdateLayout();
//SetGroupHeader(listBox);
}
catch { }
}
///
/// 展开item所在分组
///
private async void ExpandGroupHeader(AnnotationHandlerEventArgs item, ListBox listBox)
{
try
{
var groups = listBox.Items.Groups;
if (groups != null && groups.Count > 0)
{
for (int i = 0; i < groups.Count; i++)
{
var l = groups[i] as CollectionViewGroup;
if (l.Items.Contains(item))
{
var scroller = GetScrollHost(listBox);
var stackpanel = CommonHelper.FindVisualChild(scroller);
if (stackpanel != null)
{
int count = VisualTreeHelper.GetChildrenCount(stackpanel);
var groupItem = VisualTreeHelper.GetChild(stackpanel, i) as GroupItem;
var g = CommonHelper.FindVisualChild(groupItem);
if (g != null)
{
await Task.Delay(5);
g.IsExpanded = true;
}
}
}
}
}
}
catch { }
}
///
/// 页面加载时
///
///
private void Loaded(object obj)
{
if (obj is CompositeCommandParameter composite)
{
if (composite.Parameter is ListBox listBox)
{
this.listBox = listBox;
//RefreshAnnotationListItems();
SetGroupHeader(listBox);
}
}
}
public bool IsNavigationTarget(NavigationContext navigationContext)
{
return true;
}
public void OnNavigatedFrom(NavigationContext navigationContext)
{
KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
}
private ObservableCollection HideAnnots;
public void OnNavigatedTo(NavigationContext navigationContext)
{
var pdfview = navigationContext.Parameters[ParameterNames.PDFViewer] as CPDFViewer;
var viewContentViewModel = navigationContext.Parameters[ParameterNames.ViewContentViewModel] as ViewContentViewModel;
if (pdfview != null && viewContentViewModel != null)
{
ViewContentViewModel = viewContentViewModel;
PdfViewer = pdfview;
}
if (IsFirst)
{
//加密文档未解密进入时,不算进入次数,方便后续方法再次导航进来刷新
if (!pdfview.Document.IsLocked)
{
IsFirst = false;
}
CurrentAnnotationLists = GetDocumentAnnotionList(out HideAnnots);
AnnotationListItems = new ObservableCollection();
AnnotationListItems.CollectionChanged -= AnnotationListItems_CollectionChanged;
AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
AnnotationListItems.AddRange(CurrentAnnotationLists);
ICollectionView iCollectionView = CollectionViewSource.GetDefaultView(AnnotationListItems);
iCollectionView.GroupDescriptions.Add(new PropertyGroupDescription(nameof(AnnotationHandlerEventArgs.PageIndex)));
iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.PageIndex), ListSortDirection.Ascending));
iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.AnnotIndex), ListSortDirection.Ascending));
//Load会触发 重复触发,暂时注释
//按照PageIndex,分组 排序
//SetGroupHeader(listBox);
Screen = Visibility.Collapsed;
colors.Clear();
authors.Clear();
annotArgsTypes.Clear();
}
if (viewContentViewModel.IsHiddenAnnot)
{
HiddenAnnot();
}
else
{
DisplayAnnot();
}
AnnotationListItems.CollectionChanged -= AnnotationListItems_CollectionChanged;
AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
KeyEventsHelper.KeyDown += ShortCut_KeyDown;
}
private void RefreshData(RefreshAnnotArgs obj)
{
if (obj.Annotation != null)
{
RefreshOneListItem(obj.Annotation.AnnotHandlerEventArgs);
}
}
private void ShortCut_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
if (KeyEventsHelper.IsSingleKey(System.Windows.Input.Key.Escape))
{
if (listBox != null)
{
if (listBox.SelectedItems == null)
{
return;
}
//Windows:BOTA列表,移除Esc取消选中逻辑
//listBox.SelectedItems.Clear();
}
}
if (KeyEventsHelper.IsSingleKey(System.Windows.Input.Key.Delete))
{
if (listBox != null)
{
if (listBox.SelectedItems == null)
{
return;
}
List pagelist = new List();
for (int i = 0; i < listBox.SelectedItems.Count; i++)
{
AnnotationHandlerEventArgs annotation = listBox.SelectedItems[i] as AnnotationHandlerEventArgs;
pagelist.Add(listBox.Items.IndexOf(annotation));
}
pagelist.Sort();
for (int i = 0; i < pagelist.Count; i++)
{
AnnotationHandlerEventArgs annotation = listBox.Items[pagelist[pagelist.Count - i - 1]] as AnnotationHandlerEventArgs;
if (annotation == null)
{
continue;
}
DeleteCommand.Execute(annotation);
}
}
}
}
///
/// 默认按照PageIndex,分组 排序
///
///
private void SetGroupHeader(ListBox listBox)
{
if (listBox == null) { return; }
#region BOTA,注释列表,添加在页面上的注释要默认按照页面上的位置排序,从上往下,从左往右排列
//AnnotationListItems = new ObservableCollection(AnnotationListItems.OrderBy(item => item.ClientRect.Y).ThenBy(item => item.ClientRect.X));
//CurrentAnnotationLists.AddRange(AnnotationListItems);
//AnnotationListItems.CollectionChanged += AnnotationListItems_CollectionChanged;
//ICollectionView iCollectionView = CollectionViewSource.GetDefaultView(AnnotationListItems);
//iCollectionView.GroupDescriptions.Add(new PropertyGroupDescription(nameof(AnnotationHandlerEventArgs.PageIndex)));
//iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.PageIndex), ListSortDirection.Ascending));
////iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.AnnotIndex), ListSortDirection.Ascending));
//iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.ClientRect.Y), ListSortDirection.Ascending));
//iCollectionView.SortDescriptions.Add(new SortDescription(nameof(AnnotationHandlerEventArgs.ClientRect.X), ListSortDirection.Ascending));
#endregion BOTA,注释列表,添加在页面上的注释要默认按照页面上的位置排序,从上往下,从左往右排列
if (AnnotationListItems == null)
{
return;
}
if (AnnotationListItems.Count > 0)
{
IsEmptyPanelVisibility = Visibility.Collapsed;
//await Task.Delay(5);
//展开数据
//ExpandGroupHeader(AnnotationListItems, listBox);
events.GetEvent().Publish(new RefreshAnnotationArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsAll = true });
}
else
{
if (CurrentAnnotationLists.Count <= 0 && HideAnnots.Count > 1)
{
IsEmptyPanelVisibility = Visibility.Visible;
IsHideAnnotPanelVisibility = Visibility.Visible;
}
else
{
IsEmptyPanelVisibility = Visibility.Visible;
IsHideAnnotPanelVisibility = Visibility.Visible;
}
}
}
///
/// 展开列表项
///
///
///
private async void ExpandGroupHeader(ObservableCollection annotationListItems, ListBox listBox)
{
try
{
foreach (var item in annotationListItems)
{
var groups = listBox.Items.Groups;
for (int i = 0; i < groups.Count; i++)
{
var group = groups[i] as CollectionViewGroup;
if (group.Items.Contains(item))
{
var scroller = GetScrollHost(listBox);
var stackpanel = CommonHelper.FindVisualChild(scroller);
int count = VisualTreeHelper.GetChildrenCount(stackpanel);
var groupItem = VisualTreeHelper.GetChild(stackpanel, i) as GroupItem;
var g = CommonHelper.FindVisualChild(groupItem);
if (g != null)
{
await Task.Delay(5);
g.IsExpanded = true;
}
}
}
}
}
catch { }
}
private ScrollViewer GetScrollHost(ListBox listBox)
{
if (VisualTreeHelper.GetChildrenCount(listBox) > 0)
{
int s = VisualTreeHelper.GetChildrenCount(listBox);
Border border = VisualTreeHelper.GetChild(listBox, 0) as Border;
if (border != null)
{
return VisualTreeHelper.GetChild(border, 0) as ScrollViewer;
}
}
return null;
}
///
/// 获取listbox绑定数据
///
///
public ObservableCollection GetDocumentAnnotionList(out ObservableCollection HideAnnots)
{
ObservableCollection list = new ObservableCollection();
HideAnnots = new ObservableCollection();
for (int i = 0; i < PdfViewer.Document.PageCount; i++)
{
var items = PdfViewer.GetAnnotCommentList(i, PdfViewer.Document);
foreach (var item in items)
{
//原型图上,目前对波浪线的类型,在注释列表不显示
//注释列表 不显示链接注释
if (item.EventType != AnnotArgsType.AnnotRedaction && item.EventType != AnnotArgsType.AnnotSquiggly
&& item.EventType != AnnotArgsType.AnnotLink)
{
if (item.EventType == AnnotArgsType.AnnotLink)
{
if (item is LinkAnnotArgs link)
{
if (link.LinkType == LINK_TYPE.URI)
{
continue;
}
}
}
AnnotationHandlerEventArgs args = GetAddAnnotEventArgs(item);
if (args != null)
{
bool isVisible = PdfViewer.CheckAnnotVisible(args.PageIndex, args.AnnotIndex);
if (args.AnnotHandlerEventArgs != null)
{
if (isVisible)
{
list.Add(args);
}
else
{
HideAnnots.Add(args);
}
}
}
}
}
}
return list;
}
public AnnotationHandlerEventArgs GetAddAnnotEventArgs(AnnotHandlerEventArgs item)
{
AnnotationHandlerEventArgs args = new AnnotationHandlerEventArgs();
//原型图上,目前对波浪线的类型,在注释列表不显示
//注释列表 不显示链接注释
if (item.EventType != AnnotArgsType.AnnotRedaction && item.EventType != AnnotArgsType.AnnotSquiggly
&& item.EventType != AnnotArgsType.AnnotLink)
{
if (item.EventType == AnnotArgsType.AnnotFreehand)
{
BitmapImage bitmap = GetAnnotImage(PdfViewer.Document, item.PageIndex, item.AnnotIndex);
if (bitmap != null)
args.WriteableBitmap = bitmap;
}
args.ClientRect = item.ClientRect;
args.AnnotHandlerEventArgs = item;
args.PageIndex = item.PageIndex;
args.AnnotIndex = item.AnnotIndex;
args.EventType = item.EventType;
args.CreateTime = item.CreateTime;
args.UpdateTime = item.UpdateTime;
args.Content = item.Content;
args.MarkupContent = item.MarkupContent;
args.Author = item.Author;
args.Locked = item.Locked;
args.ReadOnly = item.ReadOnly;
args.FormField = item.FormField;
args.Document = PdfViewer.Document;
}
return args;
}
///
/// 获取手绘图案
///
///
///
///
///
public BitmapImage GetAnnotImage(CPDFDocument doc, int pageIndex, int annotIndex)
{
if (doc == null)
{
return null;
}
CPDFPage docPage = doc.PageAtIndex(pageIndex, false);
if (docPage == null)
{
return null;
}
List docAnnots = docPage.GetAnnotations();
foreach (CPDFAnnotation annot in docAnnots)
{
if (docAnnots.IndexOf(annot) == annotIndex)
{
CPDFInkAnnotation cPDFInk = (CPDFInkAnnotation)docAnnots[annotIndex];
//CRect rawRect = annot.GetRect();
CRect rawRect = cPDFInk.Rect;
double scaleDpi = 96.0 / 72.0;
Rect paintRect = new Rect(rawRect.left * scaleDpi, rawRect.top * scaleDpi, rawRect.width() * scaleDpi, rawRect.height() * scaleDpi);
int drawWidth = (int)paintRect.Width;
int drawHeight = (int)paintRect.Height;
switch (docPage.Rotation)
{
case 0:
case 2:
drawWidth = (int)paintRect.Width;
drawHeight = (int)paintRect.Height;
break;
case 1:
case 3:
drawWidth = (int)paintRect.Height;
drawHeight = (int)paintRect.Width;
break;
}
byte[] bitmapArray = new byte[drawWidth * drawHeight * 4];
annot.UpdateAp();
annot.RenderAnnot(drawWidth, drawHeight, bitmapArray);
BitmapImage bitmapImage = null;
if (drawWidth != 0 && drawHeight != 0)
{
WriteableBitmap wirteBitmap = new WriteableBitmap(drawWidth, drawHeight, 96, 96, PixelFormats.Bgra32, null);
wirteBitmap.WritePixels(new Int32Rect(0, 0, drawWidth, drawHeight), bitmapArray, wirteBitmap.BackBufferStride, 0);
bitmapImage = ConvertWriteableBitmapToBitmapImage(wirteBitmap, docPage.Rotation);
}
else
{
bitmapImage = null;
}
cPDFInk.SetRect(rawRect);
// 测试
//using (FileStream stream = new FileStream(@"C:\Users\oyxh\Desktop\images\1.png", FileMode.Create))
//{
// PngBitmapEncoder bitmapEncoder = new PngBitmapEncoder();
// bitmapEncoder.Frames.Add(BitmapFrame.Create(wirteBitmap));
// bitmapEncoder.Save(stream);
//}
return bitmapImage;
}
}
return null;
}
public BitmapImage ConvertWriteableBitmapToBitmapImage(WriteableBitmap wbm, int rotation)
{
BitmapImage bmImage = new BitmapImage();
using (MemoryStream stream = new MemoryStream())
{
PngBitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(wbm));
encoder.Save(stream);
bmImage.BeginInit();
bmImage.CacheOption = BitmapCacheOption.OnLoad;
bmImage.StreamSource = stream;
switch (rotation)
{
case 0:
bmImage.Rotation = Rotation.Rotate0;
break;
case 1:
bmImage.Rotation = Rotation.Rotate90;
break;
case 2:
bmImage.Rotation = Rotation.Rotate180;
break;
case 3:
bmImage.Rotation = Rotation.Rotate270;
break;
}
bmImage.EndInit();
bmImage.Freeze();
}
return bmImage;
}
///
/// listbox的itemsource发生变化时
///
///
///
private void AnnotationListItems_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
if (sender is ObservableCollection obsSender)
{
//currentAnnotationArgs.Clear();
//currentAnnotationArgs.AddRange(obsSender);
if (obsSender.Count < 1)
{
if (CurrentAnnotationLists.Count <= 0)
{
IsHideAnnotPanelVisibility = Visibility.Collapsed;
IsEmptyPanelVisibility = Visibility.Visible;
}
else
{
if (isHiddenAnnot)
{
IsHideAnnotPanelVisibility = Visibility.Collapsed;
IsEmptyPanelVisibility = Visibility.Visible;
}
else
{
IsEmptyPanelVisibility = Visibility.Visible;
IsHideAnnotPanelVisibility = Visibility.Visible;
}
}
//IsEmptyPanelVisibility = Visibility.Visible;
}
else
{
IsEmptyPanelVisibility = Visibility.Collapsed;
IsHideAnnotPanelVisibility = Visibility.Collapsed;
}
}
else
{
IsEmptyPanelVisibility = Visibility.Visible;
}
}
}
}