123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Media;
- namespace PDF_Office.Helper
- {
-
-
-
-
-
-
-
-
-
- public static class CommonHelper
- {
-
-
-
-
-
-
- public static T FindVisualParent<T>(DependencyObject obj) where T : class
- {
- try
- {
- while (obj != null)
- {
- if (obj is T)
- return obj as T;
- obj = VisualTreeHelper.GetParent(obj);
- }
- return null;
- }
- catch { return null; }
- }
-
-
-
-
-
-
- public static childItem FindVisualChild<childItem>(DependencyObject obj)
- where childItem : DependencyObject
- {
- try
- {
- for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
- {
- DependencyObject child = VisualTreeHelper.GetChild(obj, i);
- if (child != null && child is childItem)
- return (childItem)child;
- else
- {
- childItem childOfChild = FindVisualChild<childItem>(child);
- if (childOfChild != null)
- return childOfChild;
- }
- }
- return null;
- }
- catch { return null; }
- }
-
-
-
-
-
- public static string GetPageParmFromList(List<int> pagesList)
- {
- string pageParam = "";
- 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 bool GetPagesInRange(ref List<int> pageIndexList, string pageRange, int count, char[] enumerationSeparator, char[] rangeSeparator, bool inittag = false)
- {
- string[] rangeSplit = pageRange.Split(enumerationSeparator);
- pageIndexList.Clear();
- foreach (string range in rangeSplit)
- {
- int starttag = 1;
- if (inittag)
- {
- starttag = 0;
- }
- if (range.Contains("-"))
- {
- try
- {
- string[] limits = range.Split(rangeSeparator);
- if (limits.Length >= 2 && !string.IsNullOrWhiteSpace(limits[0]) && !string.IsNullOrWhiteSpace(limits[1]))
- {
- int start = int.Parse(limits[0]);
- int end = int.Parse(limits[1]);
- if ((start < starttag) || (end > count) || (start > end))
- {
- return false;
- }
- for (int i = start; i <= end; ++i)
- {
- if (pageIndexList.Contains(i))
- {
- return false;
- }
- pageIndexList.Add(i - 1);
- }
- continue;
- }
- }
- catch
- {
- return false;
- }
- }
- int pageNr;
- try
- {
-
- pageNr = int.Parse(range);
- }
- catch
- {
- return false;
- }
- if (pageNr < starttag || pageNr > count)
- {
- return false;
- }
- if (pageIndexList.Contains(pageNr))
- {
- return false;
- }
- pageIndexList.Add(pageNr - 1);
- }
- return true;
- }
-
-
-
-
- public static void ShowFileBrowser(string selectedFile=null)
- {
- if(string.IsNullOrEmpty(selectedFile))
- {
- Process.Start(@"explorer.exe");
- }
- else
- {
- Process.Start(@"explorer.exe", "/select,\"" + selectedFile + "\"");
- }
-
- }
-
-
-
-
-
- public static string CreateFilePath(string path)
- {
- int i = 1;
- string oldDestName = path;
- do
- {
- if (File.Exists(path))
- {
- int lastDot = oldDestName.LastIndexOf('.');
- string fileExtension = string.Empty;
- string fileName = oldDestName;
- if (lastDot > 0)
- {
- fileExtension = fileName.Substring(lastDot);
- fileName = fileName.Substring(0, lastDot);
- }
- path = fileName + string.Format(@"({0})", i) + fileExtension;
- }
- ++i;
- } while (File.Exists(path));
- return path;
- }
-
-
-
-
-
- public static string CreateFolder(string folder)
- {
- int i = 1;
- string oldDestName = folder;
- DirectoryInfo info = new DirectoryInfo(folder);
- do
- {
- info = new DirectoryInfo(folder);
- if (info.Exists)
- {
- string fileName = oldDestName;
- folder = fileName + string.Format(@"({0})", i);
- }
- ++i;
- } while (info.Exists);
- info.Create();
- return folder;
- }
- }
- }
|