123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656 |
- using ComPDFKitDemo.BOTA;
- using Microsoft.Win32;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Diagnostics;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Controls.Primitives;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using ComPDFKit.PDFDocument;
- using ComPDFKitViewer.PdfViewer;
- namespace ComPDFKitDemo.PageEditor
- {
- public partial class PageEditControl : UserControl
- {
- public class DealPages
- {
- public List<ListBoxItem> Pages;
- public Option Op;
- public int[] OpInfo;
- }
- public enum Option
- {
- RightRotate,
- LeftRotate,
- Exchange,
- Insert,
- Reverser
- }
- internal static class Utils
- {
- public static T FindVisualParent<T>(DependencyObject obj) where T : class
- {
- while (obj != null)
- {
- if (obj is T)
- return obj as T;
- obj = VisualTreeHelper.GetParent(obj);
- }
- return null;
- }
- }
- public async void SetReadModeTip(bool show, string content, bool stayshow)
- {
- PageViewTipText.Text = content;
- if (show)
- {
- tip.Visibility = Visibility.Visible;
- tip.Opacity = 1;
- if (!stayshow)
- {
- await Task.Delay(1000);
- for (double i = 1; i > 0; i -= 0.05)
- {
- await Task.Delay(100);
- tip.Opacity = i;
- }
- tip.Visibility = Visibility.Collapsed;
- }
- }
- else
- tip.Visibility = Visibility.Collapsed;
- }
- public Stack<DealPages> UndoStack = new Stack<DealPages>();
- public ObservableCollection<ListBoxItem> BindPageList = new ObservableCollection<ListBoxItem>();
- public bool isInitialized = false;
- private const int THUMBNAIL_WIDTH = 150;
- private const int THUMBNAIL_HEIGHT = 150;
- private bool isSelectionChangeProgrammatic = false;
- private CPDFViewer pdfViewer;
- private bool IsModefied = false;
- private List<int> PageThumbnailsToRequest = new List<int>();
- private List<int> VisiblePageIndexes = new List<int>();
- private int zoomLevel = 2;
- private bool isZooming = false;
- private int[] thumbnailSize = {100, 150, 200, 300, 500 };
- private ListBoxItem TempItem;
- private bool isFrontHalf = false;
- private bool isDraging = false;
- private bool isDragingEnter = false;
- public event RoutedEventHandler DragAddTab;
- public PageEditControl()
- {
- InitializeComponent();
- }
- private void CommandBinding_Executed_LeftRotate(object sender, ExecutedRoutedEventArgs e)
- {
- DoRotate(-90);
- }
- private void CommandBinding_Executed_RightRotate(object sender, ExecutedRoutedEventArgs e)
- {
- DoRotate(90);
- }
- private void CommandBinding_Executed_Save(object sender, ExecutedRoutedEventArgs e)
- {
- DoSave();
- UndoStack.Clear();
- }
- private void CommandBinding_Executed_Delete(object sender, ExecutedRoutedEventArgs e)
- {
- var list = GetListFromSelectedItems();
- DoDelete(list,true);
- UndoStack.Clear();
- }
- private void CommandBinding_Executed_Copy(object sender, ExecutedRoutedEventArgs e)
- {
- DoCopy();
- }
- private void CommandBinding_Executed_Paste(object sender, ExecutedRoutedEventArgs e)
- {
- DoPaste();
- }
- private void CommandBinding_Executed_Revoke(object sender, ExecutedRoutedEventArgs e)
- {
- if(UndoStack.Count>0)
- {
- var pages = UndoStack.Pop();
- Undo(pages);
- }
- }
- private void PdfViewer_InfoChanged(object sender, KeyValuePair<string, object> e)
- {
- if (e.Key == "RenderNum")
- {
- isSelectionChangeProgrammatic = true;
- UpdateSelectedIndex();
- isSelectionChangeProgrammatic = false;
- }
- }
- private void _pdfviewer_OnThumbnailGenerated(int pageIndex, byte[] thumb, int w, int h)
- {
- try
- {
- if (PageEditListBox.Items.IsEmpty)
- {
- return;
- }
- ScrollViewer sv = GetScrollHost(PageEditListBox);
- ListBoxItem item = PageEditListBox.Items[pageIndex] as ListBoxItem;
- ListBoxItem listboxitem = PageEditListBox.ItemContainerGenerator.ContainerFromIndex(pageIndex) as ListBoxItem;
- if (ViewportHelper.IsInViewport(sv, listboxitem))
- {
- Debug.WriteLine("Got thumbnail for page {0}. It is visible, so adding thumb", pageIndex);
- PixelFormat fmt = PixelFormats.Bgra32;
- BitmapSource bps = BitmapSource.Create(w, h, 96.0, 96.0, fmt, null, thumb, (w * fmt.BitsPerPixel + 7) / 8);
- Image image = GetImageElement(PageEditListBox.Items[pageIndex] as ListBoxItem);
- image.Source = bps;
- }
- else
- {
- Debug.WriteLine("Got thumbnail for page {0}. It is NOT visible, so ignoring thumb", pageIndex);
- }
- }
- catch (Exception ex)
- {
- Debug.WriteLine(ex.ToString());
- }
- }
- private void UserControl_Loaded(object sender, RoutedEventArgs e)
- {
- PageEditListBox.Focus();
- if (PageEditListBox.HasItems)
- {
- PageEditListBox.ScrollIntoView(PageEditListBox.Items[pdfViewer.CurrentIndex < 0 ? 0 : pdfViewer.CurrentIndex]);
- PageEditListBox.SelectedIndex = pdfViewer.CurrentIndex;
- }
- }
- private void UserControl_Unloaded(object sender, RoutedEventArgs e)
- {
- if (IsModefied)
- {
- var result = MessageBox.Show("The document has not been saved. Do you want to save it?", null, MessageBoxButton.YesNoCancel);
- if (result == MessageBoxResult.Yes)
- {
- DoSave();
- }
- }
- }
- private void UserControl_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
- {
- if (Keyboard.IsKeyDown(Key.LeftCtrl))
- {
- int oldZoomLevel = zoomLevel;
- if (e.Delta < 0)
- {
- if (zoomLevel > 0)
- zoomLevel--;
- }
- else
- {
- if (zoomLevel < thumbnailSize.Length - 1)
- zoomLevel++;
- }
- if (zoomLevel != oldZoomLevel)
- {
- isZooming = true;
- PopulateThumbnailList();
- PageEditListBox.ScrollIntoView(PageEditListBox.Items[pdfViewer.CurrentIndex]);
- PageEditListBox.SelectedIndex = pdfViewer.CurrentIndex;
- isZooming = false;
- }
- }
- }
- private async void PageEditListBox_ScrollChanged(object sender, ScrollChangedEventArgs e)
- {
- if (NeedScroll)
- {
- await Task.Delay(500);
- var scroller = GetScrollHost(PageEditListBox);
- var v = scroller.VerticalOffset;
- scroller.ScrollToVerticalOffset(v + Speed);
- return;
- }
- if (scrollType != ScrollEventType.EndScroll || isZooming)
- return;
- ItemsInViewHitTest();
- }
- private void PageEditListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
-
- }
- private ScrollEventType scrollType = ScrollEventType.EndScroll;
- private void PageEditListBox_Scroll(object sender, System.Windows.Controls.Primitives.ScrollEventArgs e)
- {
- scrollType = e.ScrollEventType;
- if (scrollType != ScrollEventType.EndScroll || isZooming)
- return;
- ItemsInViewHitTest();
- }
- private bool IskeyDown = false;
- private void PageEditListBox_KeyUp(object sender, KeyEventArgs e)
- {
- if (e.Key == Key.LeftShift || e.Key == Key.LeftCtrl)
- {
- IskeyDown = true;
- return;
- }
- }
- private Point startPostion = new Point();
- private void PageEditListBox_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
- {
- NeedScroll = false;
- var pos = e.GetPosition(PageEditListBox);
- HitTestResult result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
- return;
- }
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- var scroller = Utils.FindVisualParent<ScrollBar>(result.VisualHit);
- if (listBoxItem == null)
- {
- if (scroller != null)
- {
- startchoose = false;
- return;
- }
- startchoose = true;
- PageEditListBox.SelectedItems.Clear();
- startPostion = e.GetPosition(PageEditListBox);
- startPostion = new Point(startPostion.X,startPostion.Y+GetScrollHost(PageEditListBox).VerticalOffset);
- IskeyDown = false;
- Mouse.Capture(PageEditListBox);
- return;
- }
- startchoose = false;
- if (listBoxItem.IsSelected == true && !Keyboard.IsKeyDown(Key.LeftCtrl))
- {
- e.Handled = true;
- }
- }
- private void PageEditListBox_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
- {
- ChooseRect.Visibility = Visibility.Collapsed;
- var pos = e.GetPosition(PageEditListBox);
- HitTestResult result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
- return;
- }
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- if (listBoxItem == null)
- {
- return;
- }
- if (IskeyDown && !Keyboard.IsKeyDown(Key.LeftCtrl)&&!Keyboard.IsKeyDown(Key.LeftShift))
- {
- IskeyDown = false;
- PageEditListBox.SelectedItems.Clear();
- PageEditListBox.SelectedItem = listBoxItem;
- listBoxItem.IsSelected = true;
- return;
- }
- }
- private void PageEditListBox_Drop(object sender, DragEventArgs e)
- {
- NeedScroll = false;
- if (!isDraging)
- {
- MidLane.Visibility = Visibility.Collapsed;
- return;
- }
- if (isDragingEnter)
- {
- CPDFDocument dragDoc = CPDFDocument.InitWithFilePath(dragingEnterPath);
- if (dragingEnterPath.Substring(dragingEnterPath.LastIndexOf(@".")).ToLower() == ".pdf")
- {
- int index = InsertIndex == -1 ? 0 : InsertIndex;
- pdfViewer.Document.ImportPagesAtIndex(dragDoc, "1-" + dragDoc.PageCount, index);
- PopulateThumbnailList();
- ItemsInViewHitTest();
- }
- else if (!string.IsNullOrEmpty(dragingEnterPath))
- DragAddTab.Invoke(dragingEnterPath, new RoutedEventArgs());
- MidLane.Visibility = Visibility.Collapsed;
- isDragingEnter = false;
- dragingEnterPath = null;
- return;
- }
- var pos = e.GetPosition(PageEditListBox);
- var result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
- MidLane.Visibility = Visibility.Collapsed;
- isDraging = false;
- return;
- }
- var sourcePerson = e.Data.GetData(typeof(StackPanel)) as StackPanel;
- if (sourcePerson == null)
- {
- MidLane.Visibility = Visibility.Collapsed;
- isDraging = false;
- return;
- }
- int targetindex = 0;
- if (InsertIndex != -1)
- {
- targetindex = InsertIndex;
- }
- else
- {
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- if (listBoxItem == null)
- {
- MidLane.Visibility = Visibility.Collapsed;
- isDraging = false;
- return;
- }
- var targetPerson = listBoxItem;
- targetPerson.Opacity = 1;
- sourcePerson.Opacity = 1;
- if (ReferenceEquals(targetPerson, sourcePerson))
- {
- MidLane.Visibility = Visibility.Collapsed;
- isDraging = false;
- return;
- }
- targetindex = PageEditListBox.Items.IndexOf(targetPerson);
- }
- List<ListBoxItem> list = new List<ListBoxItem>();
- List<int> sourceindex = new List<int>();
- List<int> pages = new List<int>();
- for (int i = 0; i < PageEditListBox.SelectedItems.Count; i++)
- {
- var pageindex = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItems[i] as ListBoxItem);
- pages.Add(pageindex);
- }
- pages.Sort();
- if (targetindex <= pages[0])
- {
- sourceindex.Add(-1);
- list = new List<ListBoxItem>();
- for (int i = 0; i < pages.Count; i++)
- {
- list.Add(PageEditListBox.Items[pages[i]] as ListBoxItem);
- sourceindex.Add(pages[i]);
- DragToSort(pages[i], targetindex + i);
- }
- }
- else if (targetindex >= pages[pages.Count - 1])
- {
- sourceindex.Add(1);
- list = new List<ListBoxItem>();
- for (int i = 0; i < pages.Count; i++)
- {
- list.Add(PageEditListBox.Items[pages[pages.Count - 1 - i]] as ListBoxItem);
- sourceindex.Add(pages[pages.Count-1-i]);
- DragToSort(pages[pages.Count - 1 - i], targetindex - 1 - i);
- }
- }
- else
- {
- int i, j, k;
- for (k = 0; k < pages.Count - 1; k++)
- {
- if (pages[k] < targetindex && pages[k + 1] >= targetindex)
- break;
- }
- sourceindex.Add(0);
- list = new List<ListBoxItem>();
- for (i = 0; i <= k; i++)
- {
- list.Add(PageEditListBox.Items[pages[k - i]] as ListBoxItem);
- sourceindex.Add(pages[k - i]);
- DragToSort(pages[k - i], targetindex - 1 - i);
- }
- for (j = i; j < pages.Count; j++)
- {
- list.Add(PageEditListBox.Items[pages[j]] as ListBoxItem);
- sourceindex.Add(pages[j]);
- DragToSort(pages[j], targetindex);
- targetindex++;
- }
- sourceindex.Add(k);
- }
- DealPages dealPages = new DealPages()
- {
- Pages = list,
- Op = Option.Exchange,
- OpInfo = sourceindex.ToArray()
- };
- UndoStack.Push(dealPages);
- isDraging = false;
- }
- private void MidLane_Drop(object sender, DragEventArgs e)
- {
- MidLane.Visibility = Visibility.Collapsed;
- this.PageEditListBox_Drop(sender, e);
- }
- private bool startchoose = false;
- private void PageEditListBox_PreviewMouseMove(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.LeftButton == MouseButtonState.Pressed)
- {
- if (startchoose)
- {
- var s = GetScrollHost(PageEditListBox);
- Point start = new Point();
- start = new Point(startPostion.X, startPostion.Y - s.VerticalOffset);
- var rec = new Rect(start, e.GetPosition(PageEditListBox));
- ChooseRect.Margin = new Thickness(rec.Left, rec.Top, 0, 0);
- ChooseRect.Width = rec.Width;
- ChooseRect.Height = rec.Height;
- ChooseRect.Visibility = Visibility.Visible;
-
- var item = PageEditListBox.Items[0] as ListBoxItem;
- var rang = GetRoughViewportRange(PageEditListBox, item.DesiredSize, item.Margin);
- var scroller = GetScrollHost(PageEditListBox);
- for (int i =0; i <= PageEditListBox.Items.Count; i++)
- {
- var _item = PageEditListBox.Items[i] as ListBoxItem;
- var v = VisualTreeHelper.GetOffset(_item);
- if (rec.IntersectsWith(new Rect(v.X, v.Y - scroller.VerticalOffset, _item.ActualWidth, _item.ActualHeight)))
- PageEditListBox.SelectedItems.Add(_item);
- else
- PageEditListBox.SelectedItems.Remove(_item);
- }
- return;
- }
- var pos = e.GetPosition(PageEditListBox);
- if (pos.Y < 0 || pos.Y > PageEditListBox.ActualHeight)
- {
- MidLane.Visibility = Visibility.Collapsed;
- return;
- }
- HitTestResult result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
- return;
- }
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- if (listBoxItem == null)
- {
- return;
- }
- isDragingEnter = false;
- TempItem = listBoxItem;
- var panel = GetPanel(TempItem);
- var item_pos = e.GetPosition(panel);
- if (item_pos != null)
- {
- item_x = item_pos.X;
- item_y = item_pos.Y;
- }
- var scroll = GetScrollHost(PageEditListBox);
- DataObject dataObj = new DataObject(listBoxItem.Content as StackPanel);
- DragDrop.DoDragDrop(PageEditListBox, dataObj, DragDropEffects.Move);
- Mouse.Capture(PageEditListBox);
- return;
- }
- ChooseRect.Visibility = Visibility.Collapsed;
- IskeyDown = true;
- Mouse.Capture(null);
- }
- catch (Exception ex)
- {
- }
- }
- private bool NeedScroll = false;
- private int Speed = 0;
- private double item_x;
- private double item_y;
- private int InsertIndex = -1;
- private void Grid_DragOver(object sender, DragEventArgs e)
- {
- if (startchoose)
- {
- return;
- }
- try
- {
- if (e.KeyStates == (DragDropKeyStates.ControlKey | DragDropKeyStates.LeftMouseButton) || e.KeyStates == (DragDropKeyStates.ShiftKey | DragDropKeyStates.LeftMouseButton | DragDropKeyStates.ControlKey))
- return;
- var pos = e.GetPosition(PageEditListBox);
- var result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
-
- }
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- if (listBoxItem == null)
- {
-
- }
- double xPos, yPos;
- if (!isDragingEnter)
- {
- Image image = GetImageElement(TempItem);
- Viewbox viewBox = (TempItem.Content as StackPanel).Children[0] as Viewbox;
- ShadowPicture.Width = viewBox.ActualWidth;
- ShadowPicture.Height = viewBox.ActualHeight;
- ShadowPicture.Source = image.Source;
- xPos = e.GetPosition(PageEditListBox).X - item_x;
- yPos = e.GetPosition(PageEditListBox).Y - item_y;
- }
- else
- {
- var pic = ToBitmapSource(dragingEnterPath);
- ShadowPicture.Width = pic.Width;
- ShadowPicture.Height = pic.Height;
- ShadowPicture.Source = pic;
- xPos = e.GetPosition(PageEditListBox).X - pic.Width / 2;
- yPos = e.GetPosition(PageEditListBox).Y - pic.Height / 2;
- }
- ShadowPicture.Margin = new Thickness(xPos, yPos, 0, 0);
- var scroll = GetScrollHost(PageEditListBox);
- if (listBoxItem != null)
- {
-
- var p = VisualTreeHelper.GetOffset(listBoxItem);
- MidLane.Visibility = Visibility.Visible;
- MidLane.X2 = MidLane.X1 = p.X + 10 + listBoxItem.ActualWidth;
- if (pos.X < p.X + 10 + listBoxItem.ActualWidth / 2)
- {
- isFrontHalf = true;
- MidLane.X2 = MidLane.X1 = p.X;
- InsertIndex = PageEditListBox.Items.IndexOf(listBoxItem);
- }
- else
- {
- isFrontHalf = false;
- InsertIndex = PageEditListBox.Items.IndexOf(listBoxItem) + 1;
- }
- MidLane.Y1 = p.Y;
- if (MidLane.Y1 < 0)
- MidLane.Y1 = 0;
- MidLane.Y2 = p.Y + listBoxItem.ActualHeight;
- if (MidLane.Y2 < 0)
- {
- MidLane.Y2 = 0;
- }
- }
- if (pos.Y <= 30 || pos.Y >= PageEditListBox.ActualHeight - 10)
- {
- MidLane.Visibility = Visibility.Collapsed;
- NeedScroll = false;
- }
- if (pos.X <= 40 || pos.X >= scroll.ViewportWidth - 50)
- {
- MidLane.Visibility = Visibility.Collapsed;
- NeedScroll = false;
- }
- Speed = 0;
- if (pos.Y >= PageEditListBox.ActualHeight - 30)
- {
- Speed = 30 - (int)(PageEditListBox.ActualHeight - pos.Y);
- NeedScroll = true;
- }
- else if (pos.Y <= 30)
- {
- Speed = (int)(pos.Y - 30);
- NeedScroll = true;
- }
- else
- NeedScroll = false;
- var v = scroll.VerticalOffset;
- scroll.ScrollToVerticalOffset(v + Speed);
- }
- catch (Exception ex)
- {
- }
- }
- private void ShadowPicture_Drop(object sender, DragEventArgs e)
- {
- this.PageEditListBox_Drop(sender, e);
- }
- private void ListBoxItem_DragLeave(object sender, DragEventArgs e)
- {
- isDraging = true;
- }
- private void Save_Click(object sender, RoutedEventArgs e)
- {
- DoSave();
- UndoStack.Clear();
- }
- private void Delete_Click(object sender, RoutedEventArgs e)
- {
- var list = GetListFromSelectedItems();
- DoDelete(list, true);
- UndoStack.Clear();
- }
- private void Rotate_Click(object sender, RoutedEventArgs e)
- {
- var item = sender as MenuItem;
- double step = 90;
- if (item.Name == "LeftRotate")
- step = -90;
- else
- step = 90;
- DoRotate(step);
- }
- private void Exchange_Click(object sender, RoutedEventArgs e)
- {
- List<ListBoxItem> list = new List<ListBoxItem>();
- list = GetListFromSelectedItems();
- DoExchange(list);
- DealPages pages = new DealPages()
- {
- Pages = list,
- Op = Option.Reverser
- };
- UndoStack.Push(pages);
- }
- private void ListBoxItem_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
- {
- e.GetPosition(PageEditListBox);
- var pos = e.GetPosition(PageEditListBox);
- HitTestResult result = VisualTreeHelper.HitTest(PageEditListBox, pos);
- if (result == null)
- {
- return;
- }
- var listBoxItem = Utils.FindVisualParent<ListBoxItem>(result.VisualHit);
- if (listBoxItem != null)
- {
- pdfViewer.GoToPage((int)listBoxItem.Tag);
- }
- this.Visibility = Visibility.Collapsed;
- }
- private void InsertBlank_Click(object sender, RoutedEventArgs e)
- {
- var send = sender as MenuItem;
- switch (send.Name)
- {
- case "InsertBlank":
- DoInsert("Blank");
- break;
- case "InsertFromPDF":
- var dialog = new OpenFileDialog();
- dialog.Multiselect = false;
- dialog.Filter = ComPDFKitDemo.Properties.Resources.OpenDialogFilter;
- if (dialog.ShowDialog() == true)
- {
- var index = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItem) + 1;
- DoAddFromOtherPdf(dialog.FileName, "all", index, 2);
- }
- break;
- default:
- break;
- }
- }
- private void Extract_Click(object sender, RoutedEventArgs e)
- {
- string page = PageEditListBox.SelectedItems.Count > 1 ? " pages " : " page ";
- SaveFileDialog save = new SaveFileDialog();
- save.FileName = pdfViewer.Document.FileName + page + GetPageParam() + " .pdf";
- if ((bool)save.ShowDialog())
- {
- DoExtract(save.FileName);
- }
- }
- private void Replace_Click(object sender, RoutedEventArgs e)
- {
- DoReplace();
- }
- private void Split_Click(object sender, RoutedEventArgs e)
- {
- }
- private void Paste_Click(object sender, RoutedEventArgs e)
- {
- DoPaste();
- }
- private void Copy_Click(object sender, RoutedEventArgs e)
- {
- DoCopy();
- }
- private void PageEditListBox_SizeChanged(object sender, SizeChangedEventArgs e)
- {
- PageEditListBox.ScrollIntoView(PageEditListBox.SelectedItem);
- }
- private void PageEditor_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
- {
- ListBoxItem item = PageEditListBox.Items[pdfViewer.CurrentIndex] as ListBoxItem;
- PageEditListBox.ScrollIntoView(PageEditListBox.SelectedItem);
- PageEditListBox.SelectedItem = item;
- }
- private async void ListBoxItem_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
- {
- var item = sender as ListBoxItem;
- Image img = GetImageElement(item);
- int itemindex = PageEditListBox.Items.IndexOf(item);
- if (img.Source == null)
- {
- await pdfViewer.GetThumbnail(itemindex, (int)img.Width, (int)img.Height);
- }
- }
- private String dragingEnterPath;
- private void PageGrid_PreviewDragEnter(object sender, DragEventArgs e)
- {
- var file = (System.Array)e.Data.GetData(DataFormats.FileDrop);
- if (file == null || file.Length > 1)
- { return; }
- foreach (var f in file)
- {
- dragingEnterPath = f.ToString();
- if (dragingEnterPath != null)
- {
- isDragingEnter = true;
- }
- }
- }
- private void ContextMenu_Loaded(object sender, RoutedEventArgs e)
- {
- if (App.CopyDoc == null)
- {
- var s = sender as ContextMenu;
- foreach (var item in s.Items)
- {
- if ((item as MenuItem).Name == "Paste")
- {
- (item as MenuItem).IsEnabled = false;
- }
- }
- }
- }
- #region Method
- public void Undo(DealPages dealPages)
- {
- var pages = dealPages.Pages;
- switch (dealPages.Op)
- {
- case Option.RightRotate:
- for (int i = 0; i < pages.Count; i++)
- {
- try
- {
- if(!PageEditListBox.Items.Contains(pages[i]))
- return;
- var image = GetImageElement(pages[i]);
- double angle = (double)image.LayoutTransform.GetValue(RotateTransform.AngleProperty);
- angle += -90;
- angle = angle % 360;
- image.LayoutTransform = new RotateTransform(angle, image.ActualWidth / 2, image.ActualHeight / 2);
- var index = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItems[i]);
- pdfViewer.Document.RotatePage(index, (int)-90 / 90);
- IsModefied = true;
- if (VisiblePageIndexes.Contains(index))
- VisiblePageIndexes.Remove(index);
- }
- catch(Exception ex)
- {
- }
- }
- ItemsInViewHitTest();
- break;
- case Option.LeftRotate:
- for (int i = 0; i < pages.Count; i++)
- {
- try
- {
- if (!PageEditListBox.Items.Contains(pages[i]))
- return;
- var image = GetImageElement(pages[i]);
- double angle = (double)image.LayoutTransform.GetValue(RotateTransform.AngleProperty);
- angle += 90;
- angle = angle % 360;
- image.LayoutTransform = new RotateTransform(angle, image.ActualWidth / 2, image.ActualHeight / 2);
- var index = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItems[i]);
- pdfViewer.Document.RotatePage(index, (int)90 / 90);
- IsModefied = true;
- if (VisiblePageIndexes.Contains(index))
- VisiblePageIndexes.Remove(index);
- }
- catch (Exception ex)
- {
- }
- }
- ItemsInViewHitTest();
- break;
- case Option.Exchange:
- UndoExchange(dealPages.Pages,dealPages.OpInfo.ToList());
- break;
- case Option.Insert:
- DoDelete(dealPages.Pages,false);
- break;
- case Option.Reverser:
- DoExchange(dealPages.Pages);
- break;
- default:
- break;
- }
- }
- private void UndoExchange(List<ListBoxItem> list,List<int>sourceindex)
- {
- int type = sourceindex[0];
- switch (type)
- {
- case -1:
- case 1:
- for (int i = 0; i < list.Count; i++)
- {
- int nowindex = PageEditListBox.Items.IndexOf(list[list.Count - 1 - i]);
- DragToSort(nowindex, sourceindex[sourceindex.Count - 1 - i]);
- }
- break;
- case 0:
- for (int i = 0; i < list.Count; i++)
- {
- int nowindex = PageEditListBox.Items.IndexOf(list[list.Count - 1 - i]);
- DragToSort(nowindex, sourceindex[sourceindex.Count - 2 - i]);
- }
- break;
- default:
- break;
- }
- }
- public void LoadThumbnails(CPDFViewer viewer)
- {
- if (viewer == null || viewer.Document == null)
- return;
- pdfViewer = viewer;
- if (!isInitialized)
- {
- this.PopulateThumbnailList();
- isInitialized = true;
- pdfViewer.OnThumbnailGenerated += _pdfviewer_OnThumbnailGenerated;
- }
- if(pdfViewer.CurrentIndex>=0)
- {
- PageEditListBox.ScrollIntoView(PageEditListBox.Items[pdfViewer.CurrentIndex]);
- (PageEditListBox.Items[pdfViewer.CurrentIndex] as ListBoxItem).IsSelected = true;
- }
- ItemsInViewHitTest();
- }
- public void PopulateThumbnailList()
- {
- PageEditListBox.Items.Clear();
- VisiblePageIndexes.Clear();
- BindPageList.Clear();
- GC.Collect();
- int thumbnailWidth = thumbnailSize[zoomLevel];
- for (int i = 0; i < pdfViewer.Document.PageCount; i++)
- {
- Size pageSize = pdfViewer.Document.GetPageSize(i);
- int imageWidth = pageSize.Width > pageSize.Height ? thumbnailWidth * 2 : (int)(pageSize.Width / pageSize.Height * thumbnailWidth * 2);
- int imageHeight = pageSize.Height > pageSize.Width ? thumbnailWidth * 2 : (int)(pageSize.Height / pageSize.Width * thumbnailWidth * 2);
- Image img = new Image()
- {
- Margin = new Thickness(0, 0, 5, 0),
- Width = imageWidth,
- Height = imageHeight,
- Stretch = Stretch.Uniform,
- };
- Border border = new Border()
- {
- BorderThickness = new Thickness(2),
- BorderBrush = Brushes.Black,
- Child = img,
- };
- Viewbox viewBox = new Viewbox()
- {
- Margin = new Thickness(0, 5, 0, 0),
- Stretch = System.Windows.Media.Stretch.Uniform,
- Width = thumbnailWidth,
- Height = thumbnailWidth,
- Child = border,
- };
- TextBlock text = new TextBlock()
- {
- HorizontalAlignment = System.Windows.HorizontalAlignment.Center,
- Text = (i + 1).ToString(),
- Foreground = Brushes.Black
- };
- StackPanel panel = new StackPanel();
- panel.Children.Add(viewBox);
- panel.Children.Add(text);
- ListBoxItem item = new ListBoxItem();
- item.Content = panel;
- item.Tag = i;
- item.Margin = new Thickness(5, 5, 5, 5);
- BindPageList.Add(item);
-
- }
- PageEditListBox.ItemsSource = BindPageList;
- }
- public ListBoxItem GetNewItem(int ItemIndex)
- {
- int thumbnailWidth = thumbnailSize[zoomLevel];
- Size pageSize = pdfViewer.Document.GetPageSize(ItemIndex);
- if(pageSize.Width==0||pageSize.Height==0)
- {
- pageSize = new Size(228,300);
- }
- int imageWidth = pageSize.Width > pageSize.Height ? thumbnailWidth * 2 : (int)(pageSize.Width / pageSize.Height * thumbnailWidth * 2);
- int imageHeight = pageSize.Height > pageSize.Width ? thumbnailWidth * 2 : (int)(pageSize.Height / pageSize.Width * thumbnailWidth * 2);
- Image img = new Image()
- {
- Margin = new Thickness(0, 0, 5, 0),
- Width = imageWidth,
- Height = imageHeight,
- Stretch = Stretch.Uniform,
- };
- Border border = new Border()
- {
- BorderThickness = new Thickness(2),
- BorderBrush = Brushes.Black,
- Child = img,
- };
- Viewbox viewBox = new Viewbox()
- {
- Margin = new Thickness(0, 5, 0, 0),
- Stretch = System.Windows.Media.Stretch.Uniform,
- Width = thumbnailWidth,
- Height = thumbnailWidth,
- Child = border,
- };
- TextBlock text = new TextBlock()
- {
- HorizontalAlignment = System.Windows.HorizontalAlignment.Center,
- Text = (ItemIndex + 1).ToString(),
- Foreground = Brushes.Black
- };
- StackPanel panel = new StackPanel();
- panel.Children.Add(viewBox);
- panel.Children.Add(text);
- ListBoxItem item = new ListBoxItem();
- item.Content = panel;
- item.Tag = ItemIndex;
- item.Margin = new Thickness(5, 5, 5, 5);
- return item;
- }
- public void AddBlankPages(int pagecount, int insertindex)
- {
- for (int i = 0; i < pagecount; i++)
- {
- var item = GetNewItem(insertindex + i);
- BindPageList.Insert(insertindex + i, item);
- if (VisiblePageIndexes.Contains(insertindex + i))
- VisiblePageIndexes.Remove(insertindex + i);
- }
- PageEditListBox.UpdateLayout();
- }
- private async void ItemsInViewHitTest()
- {
- try
- {
- ScrollViewer sv = GetScrollHost(PageEditListBox);
- if (sv == null) return;
- if (VisualTreeHelper.GetParent(this) == null)
- return;
- List<int> pagesOnScreen = new List<int>();
- PageThumbnailsToRequest.Clear();
- for (int i = 0; i < PageEditListBox.Items.Count; ++i)
- {
- ListBoxItem item = PageEditListBox.Items[i] as ListBoxItem;
- Image img = GetImageElement(item);
- if (ViewportHelper.IsInViewport(sv, item))
- {
- if (img.Source == null && !VisiblePageIndexes.Contains(i))
- {
- VisiblePageIndexes.Add(i);
- await pdfViewer.GetThumbnail(i, (int)img.Width, (int)img.Height);
- Debug.WriteLine("Page {0} is visible, asking for thumb", (i + 1));
- }
- else if (img.Source == null)
- {
- await pdfViewer.GetThumbnail(i, (int)img.Width, (int)img.Height);
- Debug.WriteLine("Page { 0} is visible, asking for thumb", (i + 1));
- }
- }
- else
- {
- if (VisiblePageIndexes.Contains(i))
- {
- Image image = GetImageElement(PageEditListBox.Items[i] as ListBoxItem);
- if (image.Source != null)
- {
- image.Source = null;
- Debug.WriteLine("Page {0} is out of range, removed thumb", (i + 1));
- }
- else
- {
- Debug.WriteLine("Page {0} is out of range, but had no thumb", (i + 1));
- }
- VisiblePageIndexes.Remove(i);
- }
- }
- }
- }
- catch (Exception ex)
- {
- Debug.WriteLine(ex.ToString());
- }
- }
- private void UpdateSelectedIndex()
- {
- if (PageEditListBox.Items.Count == 0)
- PageEditListBox.SelectedIndex = -1;
- else if (PageEditListBox.Items.Count <= pdfViewer.CurrentIndex)
- this.PageEditListBox.SelectedIndex = 0;
- else if (PageEditListBox.SelectedIndex != pdfViewer.CurrentIndex)
- PageEditListBox.SelectedIndex = pdfViewer.CurrentIndex;
- }
- private Image GetImageElement(ListBoxItem item)
- {
- Viewbox viewBox = (item.Content as StackPanel).Children[0] as Viewbox;
- Image img = (viewBox.Child as Border).Child as Image;
- return img;
- }
- private StackPanel GetPanel(ListBoxItem item)
- {
- StackPanel panel = item.Content as StackPanel;
- return panel;
- }
- private TextBlock GetPageNumTextBlock(ListBoxItem item)
- {
- TextBlock text = (item.Content as StackPanel).Children[1] as TextBlock;
- return text;
- }
- private ScrollViewer GetScrollHost(ListBox listBox)
- {
- if (VisualTreeHelper.GetChildrenCount(listBox) > 0)
- {
- Border border = VisualTreeHelper.GetChild(listBox, 0) as Border;
- if (border != null)
- {
- return VisualTreeHelper.GetChild(border, 0) as ScrollViewer;
- }
- }
- return null;
- }
- private void DragToSort(int sourceindex, int targetindex)
- {
- if (targetindex == sourceindex)
- {
- MidLane.Visibility = Visibility.Collapsed;
- return;
- }
- var source = PageEditListBox.Items[sourceindex];
- BindPageList.RemoveAt(sourceindex);
- MidLane.Visibility = Visibility.Collapsed;
- BindPageList.Insert(targetindex, source as ListBoxItem);
- PageEditListBox.SelectedItems.Add(source);
- var result = pdfViewer.Document.MovePage(sourceindex,targetindex);
- if(!result)
- {
- throw new Exception();
- }
- IsModefied = true;
- UpdateSortedPageNum(sourceindex,targetindex);
- }
- private void UpdateSortedPageNum(int sourceIndex,int targetIndex)
- {
- int sum = sourceIndex + targetIndex;
- targetIndex = targetIndex > sourceIndex ? targetIndex : sourceIndex;
- sourceIndex = sum - targetIndex;
- sourceIndex = sourceIndex <= 0 ? 0 : sourceIndex;
- targetIndex = targetIndex+1> PageEditListBox.Items.Count ? PageEditListBox.Items.Count-1:targetIndex;
- for (int i = sourceIndex; i <= targetIndex; i++)
- {
- var item = PageEditListBox.Items[i] as ListBoxItem;
- TextBlock pagenum = GetPageNumTextBlock(item);
- pagenum.Text = (i + 1).ToString();
- }
- }
- private void UpdateAllPageNum()
- {
- for(int i=0;i<PageEditListBox.Items.Count;i++)
- {
- var pagenum = GetPageNumTextBlock(PageEditListBox.Items[i] as ListBoxItem);
- pagenum.Text = (i + 1).ToString();
- }
- }
- private void DoSave()
- {
- if (pdfViewer.Document.IsLocked)
- return;
- var result = pdfViewer.Document.WriteToLoadedPath();
- if (result)
- {
- IsModefied = false;
- }
- else
- SetReadModeTip(true, "Failed to save the document. Please try again later", false);
- }
- private void DoInsert(string pagetype)
- {
- int insertIndex = 0;
- if (PageEditListBox.SelectedItem == null || PageEditListBox.SelectedItems.Count == 0)
- {
- insertIndex = 0;
- }
- else
- {
- for (int i = 0; i < PageEditListBox.SelectedItems.Count; i++)
- {
- var pagenum = GetPageNumTextBlock(PageEditListBox.SelectedItems[i] as ListBoxItem);
- int pageindex = Convert.ToInt32(pagenum.Text) - 1;
- if (pageindex > insertIndex)
- insertIndex = pageindex;
- }
- }
- Viewbox box = ((PageEditListBox.Items[insertIndex] as ListBoxItem).Content as StackPanel).Children[0] as Viewbox;
- ListBoxItem item = PageEditListBox.Items[insertIndex] as ListBoxItem;
- switch (pagetype)
- {
- case "Blank":
- pdfViewer.Document.InsertPage(insertIndex + 1,504, 661.4, null);
- pdfViewer.ReloadDocument();
- ListBoxItem listBoxItem = GetNewItem(insertIndex + 1);
- BindPageList.Insert(insertIndex + 1, listBoxItem);
- List<ListBoxItem> list = new List<ListBoxItem>();
- list.Add(PageEditListBox.Items[insertIndex + 1] as ListBoxItem);
- DealPages pages = new DealPages()
- {
- Pages = list,
- Op = Option.Insert
- };
- UndoStack.Push(pages);
- break;
- default:
- break;
- }
- ItemsInViewHitTest();
- UpdateAllPageNum();
- }
-
- private void DoReplace()
- {
- OpenFileDialog dialog = new OpenFileDialog();
- dialog.Multiselect = false;
- dialog.Filter = ComPDFKitDemo.Properties.Resources.OpenDialogFilter;
- if ((bool)dialog.ShowDialog())
- {
- CPDFDocument doc = CPDFDocument.InitWithFilePath(dialog.FileName);
- int pagecount = doc.PageCount;
- int insertindex = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItem);
- if (insertindex == -1)
- insertindex = 0;
- pdfViewer.Document.ImportPagesAtIndex(doc, "1-" + pagecount, insertindex);
- doc.Release();
- for (int i = 0; i < pagecount; i++)
- {
- var item = GetNewItem(insertindex + i);
- BindPageList.Insert(insertindex + i, item);
- if (VisiblePageIndexes.Contains(insertindex + i))
- VisiblePageIndexes.Remove(insertindex + i);
- }
- IsModefied = true;
- ItemsInViewHitTest();
- var list = GetListFromSelectedItems();
- DoDelete(list,false);
- UpdateAllPageNum();
- }
- }
- private void DoRotate(double angleStep)
- {
- List<ListBoxItem> pages = new List<ListBoxItem>();
- for (int i = 0; i < PageEditListBox.SelectedItems.Count; i++)
- {
- var image = GetImageElement(PageEditListBox.SelectedItems[i] as ListBoxItem);
- pages.Add(PageEditListBox.SelectedItems[i] as ListBoxItem);
- double angle = (double)image.LayoutTransform.GetValue(RotateTransform.AngleProperty);
- angle += angleStep;
- angle = angle % 360;
- image.LayoutTransform = new RotateTransform(angle, image.ActualWidth / 2, image.ActualHeight / 2);
- var index = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItems[i]);
- pdfViewer.Document.RotatePage(index, (int)angleStep/90);
- pdfViewer.Document.ReleasePages(index);
- IsModefied = true;
- if (VisiblePageIndexes.Contains(index))
- VisiblePageIndexes.Remove(index);
- }
- pdfViewer.ReloadDocument();
- DealPages dealPages = new DealPages() {
- Pages = pages,
- Op=angleStep>0?Option.RightRotate:Option.LeftRotate
- };
- UndoStack.Push(dealPages);
- ItemsInViewHitTest();
- }
- private void DoExtract(string path)
- {
- CPDFDocument savedoc = CPDFDocument.CreateDocument();
- string pagerange = GetPageParam();
- bool result = savedoc.ImportPages(pdfViewer.Document, pagerange);
- if (!result)
- {
- SetReadModeTip(true, "Extraction exception, please try again later", false);
- }
- result = savedoc.WriteToFilePath(path);
- if (!result)
- {
- SetReadModeTip(true, "Save exception, please try again later", false);
- }
- IsModefied = true;
- savedoc.Release();
- }
- private void DoPaste()
- {
- if (App.CopyDoc == null)
- {
- SetReadModeTip(true, "Please copy the page first", false);
- }
- int insertindex = PageEditListBox.Items.IndexOf(PageEditListBox.SelectedItem) + 1;
- int pagecount = App.CopyDoc.PageCount;
- bool result = pdfViewer.Document.ImportPagesAtIndex(App.CopyDoc, "1-" + pagecount, insertindex);
- if (!result)
- {
- SetReadModeTip(true, "Replication failed. Please try again later", false);
- return;
- }
- pdfViewer.ReloadDocument();
- AddBlankPages(pagecount, insertindex);
-
- IsModefied = true;
- ItemsInViewHitTest();
- List<ListBoxItem> pageList = new List<ListBoxItem>();
- for (int i = 0; i < pagecount; i++)
- {
- pageList.Add(PageEditListBox.Items[insertindex + i] as ListBoxItem);
- }
- DealPages dealPages = new DealPages()
- {
- Pages = pageList,
- Op = Option.Insert
- };
- UndoStack.Push(dealPages);
- UpdateAllPageNum();
- }
- private void DoCopy()
- {
- App.CopyDoc = null;
- App.CopyDoc = CPDFDocument.CreateDocument();
- string pageparm = GetPageParam();
- bool result = App.CopyDoc.ImportPages(pdfViewer.Document, pageparm);
- if (!result)
- {
- SetReadModeTip(true, "Replication failed. Please try again later", false);
- return;
- }
- }
- private void DoExchange(List<ListBoxItem> pageLists)
- {
- if (pageLists.Count <= 1)
- {
- SetReadModeTip(true, "Select multiple pages for operation", false);
- return;
- }
- List<int> pages = new List<int>();
- for (int i = 0; i < pageLists.Count; i++)
- {
- int pageIndex = PageEditListBox.Items.IndexOf(pageLists[i] as ListBoxItem);
- pages.Add(pageIndex);
- }
- pages.Sort();
- for (int i = 0; i < pages.Count; i++)
- {
- int preindex = pages[i];
- int laterIndex = pages[pages.Count - i - 1];
- if (laterIndex <= preindex)
- return;
- var sourceitem = PageEditListBox.Items[preindex] as ListBoxItem;
- var targetitem = PageEditListBox.Items[laterIndex] as ListBoxItem;
- BindPageList.Remove(sourceitem);
- BindPageList.Remove(targetitem);
- BindPageList.Insert(preindex, targetitem);
- BindPageList.Insert(laterIndex, sourceitem);
- pdfViewer.Document.ExchangePage(preindex, laterIndex);
- IsModefied = true;
- PageEditListBox.SelectedItems.Add(targetitem);
- PageEditListBox.SelectedItems.Add(sourceitem);
- }
- pdfViewer.ReloadDocument();
- }
- private void DoDelete(List<ListBoxItem> pageLists,bool tip)
- {
- if (pageLists.Count == PageEditListBox.Items.Count)
- {
- SetReadModeTip(true, "Unable to delete all pages, need to keep at least one!", false);
- return;
- }
- MessageBoxResult result = MessageBoxResult.OK;
- if (tip)
- {
- result = MessageBox.Show("Are you sure you want to delete the selected page?", null, MessageBoxButton.OKCancel);
- }
- if (result == MessageBoxResult.OK || !tip)
- {
- List<int> pages = new List<int>();
- for (int i = 0; i < pageLists.Count; i++)
- {
- var index = PageEditListBox.Items.IndexOf(pageLists[i]);
- pages.Add(index);
- }
- pages.Sort();
- for (int i = pages.Count - 1; i >= 0; i--)
- {
- BindPageList.RemoveAt(pages[i]);
- }
- var r = pdfViewer.Document.RemovePages(pages.ToArray());
- if (!r)
- {
- SetReadModeTip(true, "The deletion fails because the operation is abnormal. Please try again later!", false);
- return;
- }
- pdfViewer.ReloadDocument();
- IsModefied = true;
- UpdateAllPageNum();
- }
- }
- private List<ListBoxItem> GetListFromSelectedItems()
- {
- List<ListBoxItem> itemlists = new List<ListBoxItem>();
- for(int i=0;i<PageEditListBox.SelectedItems.Count;i++)
- {
- itemlists.Add(PageEditListBox.SelectedItems[i] as ListBoxItem);
- }
- return itemlists;
- }
- private void DoAddFromOtherPdf(string filepath, string pagerange, int insertindex, int pagecount)
- {
- CPDFDocument doc = CPDFDocument.InitWithFilePath(filepath);
- if (doc.IsEncrypted == true)
- {
- }
- if(pagerange.ToLower()=="all")
- {
- pagecount = doc.PageCount;
- pagerange = "1-" + pagecount;
- }
- var result = pdfViewer.Document.ImportPagesAtIndex(doc,pagerange,insertindex);
- if(!result)
- {
- SetReadModeTip(true, "Insert failed. Please try again later.", false);
- return;
- }
- doc.Release();
- pdfViewer.ReloadDocument();
- AddBlankPages(pagecount, insertindex);
- List<ListBoxItem> lists = new List<ListBoxItem>();
- for(int i=0;i<pagecount;i++)
- {
- lists.Add(PageEditListBox.Items[insertindex+i] as ListBoxItem);
- }
- DealPages pages = new DealPages()
- {
- Pages = lists,
- Op = Option.Insert
- };
- UndoStack.Push(pages);
- ItemsInViewHitTest();
- UpdateAllPageNum();
- }
- private string GetPageParam()
- {
- string pageParam = "";
- List<int> pagesList = new List<int>();
- for (int i = 0; i < PageEditListBox.SelectedItems.Count; i++)
- {
- var item = PageEditListBox.SelectedItems[i] as ListBoxItem;
- var page = GetPageNumTextBlock(item);
- if (page != null)
- {
- pagesList.Add(int.Parse(page.Text));
- }
- }
- if (pagesList.Count != 0)
- {
- pagesList.Sort();
- for (int i = 0; i < pagesList.Count; i++)
- {
- if (i == 0)
- {
- pageParam += pagesList[0].ToString();
- }
- else
- {
- if (pagesList[i] == pagesList[i - 1] + 1)
- {
- if (i >= 2)
- {
- if (pagesList[i - 1] != pagesList[i - 2] + 1)
- pageParam += "-";
- }
- else
- pageParam += "-";
- if (i == pagesList.Count - 1)
- {
- pageParam += pagesList[i].ToString();
- }
- }
- else
- {
- if (i >= 2)
- {
- if (pagesList[i - 1] == pagesList[i - 2] + 1)
- pageParam += pagesList[i - 1].ToString();
- }
- pageParam += "," + pagesList[i].ToString();
- }
- }
- }
- }
- return pageParam;
- }
- public static BitmapSource ToBitmapSource(string path)
- {
- System.Drawing.Icon ico = System.Drawing.Icon.ExtractAssociatedIcon(path);
- System.Drawing.Bitmap bitmap = ico.ToBitmap();
- BitmapSource returnSource;
- try
- {
- returnSource =System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(bitmap.GetHbitmap(), IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
- }
- catch
- {
- returnSource = null;
- }
- return returnSource;
- }
- private Tuple<int, int, int> GetRoughViewportRange(ListBox view, Size itemSize, Thickness itemMargin)
- {
- var scrollViewer = GetScrollHost(view);
- if (scrollViewer == null || scrollViewer.ActualHeight == 0 || scrollViewer.ActualWidth == 0)
- return new Tuple<int, int, int>(0, 0, 0);
- try
- {
- var currentHeight = scrollViewer.ActualHeight - view.Padding.Top;
- var currentWidth = scrollViewer.ActualWidth;
- var columnCount = (int)(currentWidth / (itemSize.Width + itemMargin.Left));
- var rowCount = (int)Math.Ceiling(currentHeight / (itemSize.Height + itemMargin.Bottom));
- var preItemCount = (int)((scrollViewer.VerticalOffset / scrollViewer.ExtentHeight) * ((pdfViewer.Document.PageCount + columnCount - 1) / columnCount));//滑动百分比*行数 = 大概的垂直位置
- preItemCount = preItemCount * columnCount;
- var preEnd = (int)(((scrollViewer.VerticalOffset + scrollViewer.ActualHeight) / scrollViewer.ExtentHeight) * ((pdfViewer.Document.PageCount + columnCount - 1) / columnCount));
- preEnd = preEnd * columnCount + columnCount - 1;
- var middle = (int)Math.Ceiling(preItemCount + preEnd / 2d);
- return new Tuple<int, int, int>(
- Math.Max(preItemCount, 0),
- Math.Min(view.Items.Count, preEnd),
- middle);
- }
- catch (Exception ex)
- {
- }
- return new Tuple<int, int, int>(0, 0, 0);
- }
- #endregion
- }
- }
|