forked from pascalabcnet/pascalabcnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserOptions.cs
More file actions
279 lines (241 loc) · 9.19 KB
/
UserOptions.cs
File metadata and controls
279 lines (241 loc) · 9.19 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Text;
namespace VisualPascalABC
{
public class UserOptions : VisualPascalABCPlugins.IUserOptions
{
public bool RedirectConsoleIO = false;
public bool ShowLineNums = false;
public bool EnableFolding = false; // SSM 4.09.08
public bool ShowMatchBracket = false;
public bool ConverTabsToSpaces = true;
public bool deleteEXEAfterExecute = false;
public bool deletePDBAfterExecute = true;
public bool UseOutputDirectory = true;
public string OutputDirectory = null;
public bool PauseInRunModeIfConsole = true;
public string DefaultSourceFileNameFormat = "Program{0}.pas";
public int TabIndent = 2;
public int EditorFontSize = 12;
public bool AllowCodeCompletion = true;
public bool CodeCompletionHint = true;
public bool CodeCompletionDot = true;
public bool CodeCompletionParams = true;
public bool SaveSourceFilesIfComilationOk = false;
public int CodeCompletionNamespaceVisibleRange = 3;
public int CursorTabCount = 2;
public bool ShowCompletionInfoByGroup = true;
public bool EnableSmartIntellisense = false;
public bool ShowQuickClassBrowserPanel = false;
public bool UseSemanticIntellisense = false;
public bool AllowCodeFormatting = false;
public bool SkipStackTraceItemIfSourceFileInSystemDirectory = true;
public bool AlwaysAttachDebuggerAtStart = false;
public string CurrentFontFamily = "Consolas";
public bool HighlightOperatorBrackets=true;
public bool UseDllForSystemUnits = true;
public bool PABCDllChecked = false;
public bool AutoInsertCodeIsEnabledOnStartup = true;
public UserOptions()
{
try // SSM 25/04/22
{
var installedFontCollection = new System.Drawing.Text.InstalledFontCollection();
if (!Array.Exists(installedFontCollection.Families, f => f.Name == CurrentFontFamily))
CurrentFontFamily = "Courier New";
}
catch { }
}
public bool DeleteEXEAfterExecute
{
get
{
if (ProjectFactory.Instance.CurrentProject != null)
return ProjectFactory.Instance.CurrentProject.DeleteEXE;
return deleteEXEAfterExecute;
}
set
{
deleteEXEAfterExecute = value;
}
}
public bool DeletePDBAfterExecute
{
get
{
if (ProjectFactory.Instance.CurrentProject != null)
return ProjectFactory.Instance.CurrentProject.DeletePDB;
return deletePDBAfterExecute;
}
set
{
deletePDBAfterExecute = value;
}
}
#region IUserOptions Member
bool VisualPascalABCPlugins.IUserOptions.AllowCodeCompletion
{
get { return AllowCodeCompletion; }
set { AllowCodeCompletion = value; }
}
bool VisualPascalABCPlugins.IUserOptions.AllowCodeFormatting
{
get { return AllowCodeFormatting; }
set { AllowCodeFormatting = value; }
}
bool VisualPascalABCPlugins.IUserOptions.AlwaysAttachDebuggerAtStart
{
get { return AlwaysAttachDebuggerAtStart; }
set { AlwaysAttachDebuggerAtStart = value; }
}
bool VisualPascalABCPlugins.IUserOptions.CodeCompletionDot
{
get { return CodeCompletionDot; }
set { CodeCompletionDot = value; }
}
bool VisualPascalABCPlugins.IUserOptions.CodeCompletionHint
{
get { return CodeCompletionHint; }
set { CodeCompletionHint = value; }
}
int VisualPascalABCPlugins.IUserOptions.CodeCompletionNamespaceVisibleRange
{
get { return CodeCompletionNamespaceVisibleRange; }
set { CodeCompletionNamespaceVisibleRange = value; }
}
bool VisualPascalABCPlugins.IUserOptions.CodeCompletionParams
{
get { return CodeCompletionParams; }
set { CodeCompletionParams = value; }
}
bool VisualPascalABCPlugins.IUserOptions.ConverTabsToSpaces
{
get { return ConverTabsToSpaces; }
set { ConverTabsToSpaces = value; }
}
string VisualPascalABCPlugins.IUserOptions.CurrentFontFamily
{
get { return CurrentFontFamily; }
set { CurrentFontFamily = value; }
}
int VisualPascalABCPlugins.IUserOptions.CursorTabCount
{
get { return CursorTabCount; }
set { CursorTabCount = value; }
}
string VisualPascalABCPlugins.IUserOptions.DefaultSourceFileNameFormat
{
get { return DefaultSourceFileNameFormat; }
set { DefaultSourceFileNameFormat = value; }
}
bool VisualPascalABCPlugins.IUserOptions.DeleteEXEAfterExecute
{
get { return DeleteEXEAfterExecute; }
set { DeleteEXEAfterExecute = value; }
}
bool VisualPascalABCPlugins.IUserOptions.DeletePDBAfterExecute
{
get { return DeletePDBAfterExecute; }
set { DeletePDBAfterExecute = value; }
}
int VisualPascalABCPlugins.IUserOptions.EditorFontSize
{
get { return EditorFontSize; }
set { EditorFontSize = value; }
}
bool VisualPascalABCPlugins.IUserOptions.EnableFolding
{
get { return EnableFolding; }
set { EnableFolding = value; }
}
bool VisualPascalABCPlugins.IUserOptions.EnableSmartIntellisense
{
get { return EnableSmartIntellisense; }
set { EnableSmartIntellisense = value; }
}
bool VisualPascalABCPlugins.IUserOptions.HighlightOperatorBrackets
{
get { return HighlightOperatorBrackets; }
set { HighlightOperatorBrackets = value; }
}
string VisualPascalABCPlugins.IUserOptions.OutputDirectory
{
get { return OutputDirectory; }
set { OutputDirectory = value; }
}
bool VisualPascalABCPlugins.IUserOptions.PauseInRunModeIfConsole
{
get { return PauseInRunModeIfConsole; }
set { PauseInRunModeIfConsole = value; }
}
bool VisualPascalABCPlugins.IUserOptions.RedirectConsoleIO
{
get { return RedirectConsoleIO; }
set { RedirectConsoleIO = value; }
}
bool VisualPascalABCPlugins.IUserOptions.SaveSourceFilesIfComilationOk
{
get { return SaveSourceFilesIfComilationOk; }
set { SaveSourceFilesIfComilationOk = value; }
}
bool VisualPascalABCPlugins.IUserOptions.AutoInsertCodeIsEnabledOnStartup
{
get { return AutoInsertCodeIsEnabledOnStartup; }
set { AutoInsertCodeIsEnabledOnStartup = value; }
}
bool VisualPascalABCPlugins.IUserOptions.ShowCompletionInfoByGroup
{
get { return ShowCompletionInfoByGroup; }
set { ShowCompletionInfoByGroup = value; }
}
bool VisualPascalABCPlugins.IUserOptions.ShowLineNums
{
get { return ShowLineNums; }
set { ShowLineNums = value; }
}
bool VisualPascalABCPlugins.IUserOptions.ShowMatchBracket
{
get { return ShowMatchBracket; }
set { ShowMatchBracket = value; }
}
bool VisualPascalABCPlugins.IUserOptions.ShowQuickClassBrowserPanel
{
get { return ShowQuickClassBrowserPanel; }
set { ShowQuickClassBrowserPanel = value; }
}
bool VisualPascalABCPlugins.IUserOptions.SkipStakTraceItemIfSourceFileInSystemDirectory
{
get { return SkipStackTraceItemIfSourceFileInSystemDirectory; }
set { SkipStackTraceItemIfSourceFileInSystemDirectory = value; }
}
int VisualPascalABCPlugins.IUserOptions.TabIndent
{
get { return TabIndent; }
set { TabIndent = value; }
}
bool VisualPascalABCPlugins.IUserOptions.UseOutputDirectory
{
get { return UseOutputDirectory; }
set { UseOutputDirectory = value; }
}
bool VisualPascalABCPlugins.IUserOptions.UseDllForSystemUnits
{
get { return UseDllForSystemUnits; }
set { UseDllForSystemUnits = value; }
}
bool VisualPascalABCPlugins.IUserOptions.PABCDllChecked
{
get { return PABCDllChecked; }
set { PABCDllChecked = value; }
}
bool VisualPascalABCPlugins.IUserOptions.UseSemanticIntellisense
{
get { return UseSemanticIntellisense; }
set { UseSemanticIntellisense = value; }
}
#endregion
}
}