|
@@ -15,14 +15,18 @@ namespace PDFSettings
|
|
|
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";
|
|
|
+
|
|
|
//ToolTabControl 选中项
|
|
|
public int TabSelectedIndex = 0;
|
|
|
+
|
|
|
//是否固定
|
|
|
public bool IsFixed = true;
|
|
|
|
|
@@ -31,6 +35,7 @@ namespace PDFSettings
|
|
|
|
|
|
//文件源路径集合
|
|
|
public List<string> CustomStampFilePathLists = new List<string>();
|
|
|
+
|
|
|
public List<string> SignatureFilePathLists = new List<string>();
|
|
|
|
|
|
public string culture = System.Globalization.CultureInfo.CurrentUICulture.ToString();
|
|
@@ -40,7 +45,6 @@ namespace PDFSettings
|
|
|
/// </summary>
|
|
|
public int RecentFileListMode = 0;
|
|
|
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 删除最近文件记录时是否显示询问弹窗
|
|
|
/// </summary>
|
|
@@ -84,7 +88,6 @@ namespace PDFSettings
|
|
|
/// </summary>
|
|
|
public int AutoSaveInterval = 5;
|
|
|
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 关闭文档 弹出保存提示
|
|
|
/// </summary>
|
|
@@ -133,7 +136,6 @@ namespace PDFSettings
|
|
|
/// </summary>
|
|
|
public bool RememberBOTA = false;
|
|
|
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 有大纲时默认显示大纲列表
|
|
|
/// </summary>
|
|
@@ -177,7 +179,7 @@ namespace PDFSettings
|
|
|
/// <summary>
|
|
|
/// 高亮链接
|
|
|
/// </summary>
|
|
|
- public bool HighlightLink = true;
|
|
|
+ public bool HighlightLink = true;
|
|
|
}
|
|
|
|
|
|
public class AnnotatePropertyClass
|
|
@@ -186,14 +188,29 @@ namespace PDFSettings
|
|
|
|
|
|
public Color HighLightColor = Color.FromArgb(0xFF, 0xFF, 0xC7, 0x00);
|
|
|
public Color UnderLineColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 删除线
|
|
|
+ /// </summary>
|
|
|
public Color StrikethroughColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
+
|
|
|
public Color FreeHandColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 文本字体颜色
|
|
|
+ /// </summary>
|
|
|
public Color TextAnnoteColor = Colors.Black;
|
|
|
- public Color NoteAnnoteColor = Color.FromArgb(0xFF, 0x25, 0x26, 0x29);
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 便签默认颜色
|
|
|
+ /// </summary>
|
|
|
+ /// #FFD573
|
|
|
+ public Color NoteAnnoteColor = Color.FromArgb(0xFF, 0xFF, 0xD5, 0x73);
|
|
|
+
|
|
|
public Color RectangleBorderColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
- public Color RectangleFillColor = Colors.White;
|
|
|
+ public Color RectangleFillColor = Colors.Transparent;
|
|
|
public Color CircleBorderColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
- public Color CircleFillColor = Colors.White;
|
|
|
+ public Color CircleFillColor = Colors.Transparent;
|
|
|
public Color LineColor = Color.FromArgb(0xFF, 0xFC, 0x1F, 0x1F);
|
|
|
|
|
|
/// <summary>
|
|
@@ -211,5 +228,4 @@ namespace PDFSettings
|
|
|
/// </summary>
|
|
|
public string AnchoredFamaily = "Helvetica";
|
|
|
}
|
|
|
-
|
|
|
-}
|
|
|
+}
|