-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPasfmt.SettingsFrame.dfm
128 lines (128 loc) · 2.64 KB
/
Pasfmt.SettingsFrame.dfm
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
object PasfmtSettingsFrame: TPasfmtSettingsFrame
Left = 0
Top = 0
Width = 392
Height = 376
Constraints.MinHeight = 180
Constraints.MinWidth = 390
TabOrder = 0
object LogLevelLabel: TLabel
Left = 3
Top = 48
Width = 116
Height = 15
Caption = 'Minimum log severity'
end
object ExePathLabel: TLabel
Left = 3
Top = 205
Width = 103
Height = 15
Caption = 'Executable location'
end
object UserSettingsLabel: TLabel
Left = 3
Top = 3
Width = 67
Height = 15
Caption = 'User settings'
end
object TimeoutLabel: TLabel
Left = 3
Top = 104
Width = 110
Height = 15
Caption = 'Format timeout (ms)'
end
object FastModeThresholdLabel: TLabel
Left = 3
Top = 155
Width = 220
Height = 15
Cursor = crHelp
Hint =
'To avoid performance issues with updating large files, a faster method ' +
'is used when the file size exceeds this configured threshold.'#13#10'This ' +
'faster method unfortunately clears the undo history of the edit buffer.'
Caption = 'Maximum file size with undo history (KiB)'
end
object LogLevelCombo: TComboBox
Left = 11
Top = 66
Width = 129
Height = 23
Style = csDropDownList
TabOrder = 0
Items.Strings = (
'Debug'
'Info'
'Warn'
'Error'
'None')
end
object ExePathBrowseButton: TButton
Left = 309
Top = 304
Width = 71
Height = 23
Caption = 'Browse...'
TabOrder = 2
OnClick = ExePathBrowseButtonClick
end
object ExePathRadioGroup: TRadioGroup
Left = 3
Top = 210
Width = 185
Height = 65
ItemIndex = 0
Items.Strings = (
'Detect automatically'
'At specific path')
ShowFrame = False
TabOrder = 3
OnClick = ExePathRadioGroupClick
end
object ExePathEdit: TEdit
Left = 29
Top = 275
Width = 351
Height = 23
TabOrder = 1
end
object OnSaveCheckBox: TCheckBox
Left = 11
Top = 21
Width = 105
Height = 17
Caption = 'Format on save'
TabOrder = 4
end
object TimeoutEdit: TEdit
Left = 11
Top = 122
Width = 129
Height = 23
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 5
Text = '500'
end
object FastModeThresholdEdit: TEdit
Left = 11
Top = 173
Width = 129
Height = 23
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 6
Text = '1024'
end
object ExeChooseDialog: TOpenDialog
Filter = 'Executable files (*.exe)|*.exe'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Left = 291
Top = 52
end
end