123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Markup;
- namespace ComPDFKit.Tool
- {
-
-
-
- public class AlignmentsHelp
- {
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignLeft(Rect src, Rect dst)
- {
- Point movePoint = new Point(dst.Left - src.Left, 0);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignHorizonCenter(Rect src, Rect dst)
- {
- Point movePoint = new Point((dst.Left + dst.Right - src.Left - src.Right) / 2, 0);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignRight(Rect src, Rect dst)
- {
- Point movePoint = new Point(dst.Right - src.Width - src.Left, 0);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignTop(Rect src, Rect dst)
- {
- Point movePoint = new Point(0, dst.Top - src.Top);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignVerticalCenter(Rect src, Rect dst)
- {
- Point movePoint = new Point(0, (dst.Bottom + dst.Top - src.Top - src.Bottom) / 2);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignHorizonVerticalCenter(Rect src, Rect dst)
- {
- Point movePoint = new Point((dst.Left + dst.Right - src.Left - src.Right) / 2, (dst.Bottom + dst.Top - src.Top - src.Bottom) / 2);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Point SetAlignBottom(Rect src, Rect dst)
- {
- Point movePoint = new Point(0, dst.Bottom - src.Height - src.Top);
- return movePoint;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Dictionary<Rect, Point> SetDistributeHorizontal(List<Rect> src, Rect dst)
- {
- Dictionary<Rect, Point> dictionary = new Dictionary<Rect, Point>();
- List<double> Leftlist = new List<double>();
-
- foreach (Rect srcRect in src)
- {
- Leftlist.Add(srcRect.Left + srcRect.Width / 2);
- }
- double[] datalist = Leftlist.ToArray();
- Sort(datalist, 0, Leftlist.Count - 1);
- double startX = dst.Left;
- double endX = dst.Right;
- double interval = (endX - startX) / Leftlist.Count;
- for (int i = 0; i < datalist.Count(); i++)
- {
- int index = Leftlist.IndexOf(datalist[i]);
- Point movePoint = new Point(startX + i * interval - src[index].Left - src[index].Width / 2, 0);
- dictionary.Add(src[index], movePoint);
- }
- return dictionary;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Dictionary<Rect, Point> SetDistributeVertical(List<Rect> src, Rect dst)
- {
- Dictionary<Rect, Point> dictionary = new Dictionary<Rect, Point>();
- List<double> Leftlist = new List<double>();
-
- foreach (Rect srcRect in src)
- {
- Leftlist.Add(srcRect.Left + srcRect.Width / 2);
- }
- double[] datalist = Leftlist.ToArray();
- Sort(datalist, 0, Leftlist.Count - 1);
- double startY = dst.Top;
- double endY = dst.Bottom;
- double interval = (endY - startY) / Leftlist.Count;
- for (int i = 0; i < datalist.Count(); i++)
- {
- int index = Leftlist.IndexOf(datalist[i]);
- Point movePoint = new Point(0, startY + i * interval - src[index].Top - src[index].Height / 2);
- dictionary.Add(src[index], movePoint);
- }
- return dictionary;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Dictionary<Rect, Point> SetGapDistributeHorizontal(List<Rect> src, Rect dst)
- {
- Dictionary<Rect, Point> dictionary = new Dictionary<Rect, Point>();
- List<double> Leftlist = new List<double>();
-
- double weight = 0;
- foreach (Rect srcRect in src)
- {
- double left = srcRect.Left;
- if (Leftlist.Contains(left))
- {
- left += src.IndexOf(srcRect) * 0.01;
- }
- Leftlist.Add(left);
- weight += srcRect.Width;
- }
- double[] datalist = Leftlist.ToArray();
- Sort(datalist, 0, Leftlist.Count - 1);
- double startX = dst.Left;
- double endX = dst.Right;
- double interval = ((endX - startX) - weight) / (Leftlist.Count - 1);
- for (int i = 0; i < datalist.Count(); i++)
- {
- int index = Leftlist.IndexOf(datalist[i]);
- Point movePoint = new Point();
- if (i == 0 || i == datalist.Count() - 1)
- {
- movePoint = new Point(0, 0);
- }
- else
- {
- double width = 0;
- for (int f = 0; f < i; f++)
- {
- int index2 = 0;
- if (f != 0)
- {
- index2 = Leftlist.IndexOf(datalist[i - 1]);
- width += src[index2].Width;
- }
- int index0 = Leftlist.IndexOf(datalist[0]);
- if (f == 0)
- {
- width += src[index0].Right;
- }
- width += interval;
- }
- movePoint = new Point(width - src[index].X , 0);
- }
- dictionary.Add(src[index], movePoint);
- }
- return dictionary;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public static Dictionary<Rect, Point> SetGapDistributeVertical(List<Rect> src, Rect dst)
- {
- Dictionary<Rect, Point> dictionary = new Dictionary<Rect, Point>();
- List<double> Leftlist = new List<double>();
-
- double tall = 0;
- foreach (Rect srcRect in src)
- {
- double top = srcRect.Top;
- if (Leftlist.Contains(top)) {
- top += src.IndexOf(srcRect)*0.01;
- }
- Leftlist.Add(top);
- tall += srcRect.Height;
- }
- double[] datalist = Leftlist.ToArray();
- Sort(datalist, 0, Leftlist.Count - 1);
- double startY = dst.Top;
- double endY = dst.Bottom;
- double interval = ((endY - startY) - tall) / (Leftlist.Count - 1);
- for (int i = 0; i < datalist.Count(); i++)
- {
- int index = Leftlist.IndexOf(datalist[i]);
- Point movePoint = new Point();
- if (i == 0 || i == datalist.Count() - 1)
- {
- movePoint = new Point(0, 0);
- }
- else
- {
- double height = 0;
- for (int f = 0; f < i; f++)
- {
- int index2 = 0;
- if (f != 0)
- {
- index2 = Leftlist.IndexOf(datalist[i - 1]);
- height += src[index2].Height;
- }
- int index0 = Leftlist.IndexOf(datalist[0]);
- if (f == 0)
- {
- height += src[index0].Bottom;
- }
- height +=interval;
- }
- movePoint = new Point(0, height - src[index].Y);
- }
- dictionary.Add(src[index], movePoint);
- }
- return dictionary;
- }
- #region Quick sort
- private static int SortUnit(double[] array, int low, int high)
- {
- double key = array[low];
- while (low < high)
- {
-
- while (array[high] >= key && high > low)
- --high;
-
- array[low] = array[high];
-
- while (array[low] <= key && high > low)
- ++low;
-
- array[high] = array[low];
- }
-
-
-
- array[low] = key;
- return high;
- }
- private static void Sort(double[] array, int low, int high)
- {
- if (low >= high)
- return;
-
- int index = SortUnit(array, low, high);
-
- Sort(array, low, index - 1);
-
- Sort(array, index + 1, high);
- }
- #endregion
- }
- }
|