123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Drawing;
- using ComPDFKitViewer.PdfViewer;
- using ComPDFKitViewer;
- namespace PDFSettings
- {
- public class APPSettingProperties
- {
- public DescriptionPropertyClass Description = new DescriptionPropertyClass();
- public InitialVIewPropertyClass InitialVIew = new InitialVIewPropertyClass();
- public AnnotatePropertyClass Annotate = new AnnotatePropertyClass();
-
- public List<System.Windows.Media.Color> CustomColorList = new List<System.Windows.Media.Color>();
-
- public int DateMode = 0;
- public string CustomAuthor = "PDF Reader Pro";
-
- public int TabSelectedIndex = 0;
-
- public bool IsFixed = true;
-
- public List<string> NeedToDeletePath = new List<string>();
-
- public List<string> CustomStampFilePathLists = new List<string>();
- public List<string> SignatureFilePathLists = new List<string>();
- public string culture = System.Globalization.CultureInfo.CurrentUICulture.ToString();
-
-
-
- public int RecentFileListMode = 0;
-
-
-
- public List<string> NeedToOpenFileList = new List<string>();
- }
- public class DescriptionPropertyClass
- {
- private string author = "PDF Reader Pro";
- public string Author
- {
- get { return author; }
- set { author = value; }
- }
-
-
-
- public int OpenDocumentMode = 1;
-
-
-
- public int HideOpenTabWindow = 0;
- public ViewMode DefualtLayout = ViewMode.SingleContinuous;
- public FitMode NewDocumentFitMode = FitMode.FitSize;
- public ViewMode DefualtLayoutInFullScreen = ViewMode.SingleContinuous;
- public bool IsOpenLastFilesAtStart = false;
- public bool IsRememberLastPageViewed = true;
- public bool IsOpenPanelOnlyforOutline = false;
- }
- public class InitialVIewPropertyClass
- {
-
- public string Background = "#DBDDE5";
- }
- public class AnnotatePropertyClass
- {
-
-
-
- public int TextAlign = 0;
-
-
-
- public string TextFontFamaily = "Helvetica";
-
-
-
- public string AnchoredFamaily = "Helvetica";
- }
- }
|