forked from fdorg/flashdevelop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProperties.cs
More file actions
103 lines (100 loc) · 4.79 KB
/
Copy pathProperties.cs
File metadata and controls
103 lines (100 loc) · 4.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using System;
using System.Text;
using System.Drawing;
using System.Reflection;
using System.Collections;
using System.ComponentModel;
using System.Collections.Generic;
using PluginCore.Localization;
using System.Windows.Forms;
using PluginCore.Managers;
using PluginCore;
namespace FlashDevelop.Settings
{
[Serializable]
[DefaultProperty("AutoFilterList")]
public partial class SettingObject : ISettings
{
private CodePage defaultCodePage = CodePage.UTF8;
private ScintillaNet.Enums.EndOfLine eolMode = ScintillaNet.Enums.EndOfLine.CRLF;
private ScintillaNet.Enums.IndentView indentView = ScintillaNet.Enums.IndentView.Real;
private ScintillaNet.Enums.FoldFlag foldFlags = ScintillaNet.Enums.FoldFlag.LineAfterContracted;
private ScintillaNet.Enums.SmartIndent smartIndentType = ScintillaNet.Enums.SmartIndent.CPP;
private ScintillaNet.Enums.VirtualSpaceMode virtualSpaceMode = ScintillaNet.Enums.VirtualSpaceMode.RectangularSelection;
private UiRenderMode uiRenderMode = UiRenderMode.Professional;
private CodingStyle codingStyle = CodingStyle.BracesAfterLine;
private CommentBlockStyle commentBlockStyle = CommentBlockStyle.Indented;
private FlatStyle comboBoxFlatStyle = FlatStyle.Popup;
private Font consoleFont = new Font("Courier New", 8.75F);
private Font defaultFont = new Font("Tahoma", 8.25F);
private String customProjectsDir = String.Empty;
private String customTemplateDir = String.Empty;
private String customSnippetDir = String.Empty;
private Int32 tabWidth = 4;
private Int32 indentSize = 4;
private Int32 caretPeriod = 500;
private Int32 caretWidth = 2;
private Int32 scrollWidth = 3000;
private Int32 latestCommand = 0;
private Int32 printMarginColumn = 0;
private Int32 backupInterval = 15000;
private Int32 filePollInterval = 3000;
private LocaleVersion localeVersion = LocaleVersion.en_US;
private List<String> previousDocuments = new List<String>();
private List<String> disabledPlugins = new List<String>();
private String latestDialogPath = Application.StartupPath;
private String defaultFileExtension = "as";
private Boolean confirmOnExit = false;
private Boolean useSystemColors = false;
private Boolean disableFindOptionSync = false;
private Boolean disableSimpleQuickFind = false;
private Boolean disableTabDifferentiation = false;
private Boolean disableReplaceFilesConfirm = false;
private Boolean autoReloadModifiedFiles = false;
private Boolean saveUnicodeWithBOM = false;
private Boolean disableFindTextUpdating = false;
private Boolean redirectFilesResults = true;
private Boolean useListViewGrouping = true;
private Boolean applyFileExtension = true;
private Boolean restoreFileStates = true;
private Boolean restoreFileSession = true;
private Boolean backSpaceUnIndents = false;
private Boolean braceMatchingEnabled = true;
private Boolean caretLineVisible = false;
private Boolean ensureConsistentLineEnds = true;
private Boolean ensureLastLineEnd = false;
private Boolean foldAtElse = false;
private Boolean foldComment = true;
private Boolean foldCompact = false;
private Boolean foldHtml = true;
private Boolean foldPreprocessor = true;
private Boolean highlightGuide = true;
private Boolean lineCommentsAfterIndent = true;
private Boolean moveCursorAfterComment = false;
private Boolean stripTrailingSpaces = false;
private Boolean sequentialTabbing = false;
private Boolean tabIndents = true;
private Boolean useFolding = true;
private Boolean useTabs = true;
private Boolean viewEOL = false;
private Boolean viewBookmarks = true;
private Boolean viewLineNumbers = true;
private Boolean viewIndentationGuides = true;
private Boolean viewToolBar = true;
private Boolean viewStatusBar = true;
private Boolean viewWhitespace = false;
private Boolean viewModifiedLines = false;
private Boolean wrapText = false;
private FormWindowState windowState = FormWindowState.Maximized;
private Point windowPosition = new Point(100, 100);
private Size windowSize = new Size(800, 600);
private Int32 uiHoverDelay = 500;
private Int32 uiDisplayDelay = 100;
private Boolean uiShowDetails = false;
private Boolean uiAutoFilterList = true;
private Boolean uiEnableAutoHide = true;
private Boolean uiWrapList = false;
private Boolean uiDisableSmartMatch = false;
private String uiInsertionTriggers = "";
}
}