-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmModuleSelectForm.dfm
228 lines (228 loc) · 6.4 KB
/
frmModuleSelectForm.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
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
object frmModuleSelect: TfrmModuleSelect
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'Module Selection'
ClientHeight = 615
ClientWidth = 864
Color = clBtnFace
ParentFont = True
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
DesignSize = (
864
615)
PixelsPerInch = 96
TextHeight = 13
object lblPreset: TLabel
Left = 375
Top = 11
Width = 35
Height = 13
Anchors = [akTop, akRight]
Caption = '&Preset:'
FocusControl = cbPreset
end
object btnOK: TButton
Left = 781
Top = 582
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
ModalResult = 1
TabOrder = 8
OnClick = btnOKClick
end
object vstModules: TVirtualStringTree
Left = 8
Top = 35
Width = 848
Height = 541
Anchors = [akLeft, akTop, akRight, akBottom]
DefaultText = 'Node'
Header.AutoSizeIndex = 0
Header.Height = 16
Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoShowSortGlyphs, hoVisible]
Header.SortColumn = 0
PopupMenu = pmuModules
TabOrder = 5
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toEditOnClick]
TreeOptions.PaintOptions = [toPopupMode, toShowButtons, toShowDropmark, toShowHorzGridLines, toShowRoot, toShowTreeLines, toShowVertGridLines, toThemeAware, toUseBlendedImages, toFullVertGridLines, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toFullRowSelect, toLevelSelectConstraint, toMultiSelect, toRightClickSelect, toSiblingSelectConstraint, toAlwaysSelectNode]
OnChecked = vstModulesChecked
OnCompareNodes = vstModulesCompareNodes
OnFreeNode = vstModulesFreeNode
OnGetText = vstModulesGetText
OnPaintText = vstModulesPaintText
OnHeaderClick = vstModulesHeaderClick
OnIncrementalSearch = vstModulesIncrementalSearch
OnInitChildren = vstModulesInitChildren
OnInitNode = vstModulesInitNode
OnKeyDown = vstModulesKeyDown
OnKeyPress = vstModulesKeyPress
OnNodeDblClick = vstModulesNodeDblClick
OnBeforeGetCheckState = vstModulesBeforeGetCheckState
Columns = <
item
Position = 0
Text = 'Filename'
Width = 409
end
item
Alignment = taRightJustify
CaptionAlignment = taCenter
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment, coEditable, coStyleColor]
Position = 1
Text = 'File Order'
Width = 200
end
item
Alignment = taCenter
CaptionAlignment = taCenter
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment, coEditable, coStyleColor]
Position = 2
Text = 'ESM'
Width = 40
end
item
Alignment = taCenter
CaptionAlignment = taCenter
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment, coEditable, coStyleColor]
Position = 3
Text = 'ESL'
Width = 40
end
item
Alignment = taRightJustify
CaptionAlignment = taCenter
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment, coEditable, coStyleColor]
Position = 4
Text = 'Load Order'
Width = 75
end
item
CaptionAlignment = taCenter
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment, coEditable, coStyleColor]
Position = 5
Text = 'FormID Prefix'
Width = 80
end>
end
object pnlError: TPanel
Left = 8
Top = 582
Width = 681
Height = 25
Alignment = taLeftJustify
Anchors = [akLeft, akTop, akRight]
BevelOuter = bvLowered
BorderWidth = 3
TabOrder = 6
end
object edFilter: TLabeledEdit
Left = 39
Top = 8
Width = 330
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 28
EditLabel.Height = 13
EditLabel.Caption = '&Filter:'
LabelPosition = lpLeft
TabOrder = 0
OnChange = edFilterChange
OnKeyDown = edFilterKeyDown
end
object btnCancel: TButton
Left = 700
Top = 582
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Cancel'
ModalResult = 2
TabOrder = 7
Visible = False
end
object bnDelete: TButton
Left = 781
Top = 4
Width = 75
Height = 25
Action = acPresetDelete
Anchors = [akTop, akRight]
TabOrder = 4
end
object bnSave: TButton
Left = 700
Top = 4
Width = 75
Height = 25
Action = acPresetSave
Anchors = [akTop, akRight]
TabOrder = 3
end
object bnLoad: TButton
Left = 619
Top = 4
Width = 75
Height = 25
Action = acPresetLoad
Anchors = [akTop, akRight]
BiDiMode = bdRightToLeft
ParentBiDiMode = False
TabOrder = 2
end
object cbPreset: TComboBox
Left = 416
Top = 8
Width = 197
Height = 21
Anchors = [akTop, akRight]
TabOrder = 1
OnKeyPress = cbPresetKeyPress
end
object pmuModules: TPopupMenu
OnPopup = pmuModulesPopup
Left = 128
Top = 184
object mniSelectAll: TMenuItem
Caption = 'Select All'
OnClick = mniSelectAllClick
end
object mniSelectNone: TMenuItem
Caption = 'Select None'
OnClick = mniSelectNoneClick
end
object mniInvertSelection: TMenuItem
Caption = 'Invert Selection'
OnClick = mniInvertSelectionClick
end
end
object aclModules: TActionList
Left = 424
Top = 320
object acPresetLoad: TAction
Caption = '&Load'
OnExecute = acPresetLoadExecute
OnUpdate = acPresetLoadUpdate
end
object acPresetSave: TAction
AutoCheck = True
Caption = '&Save'
OnExecute = acPresetSaveExecute
OnUpdate = acPresetSaveUpdate
end
object acPresetDelete: TAction
Caption = '&Delete'
OnExecute = acPresetDeleteExecute
OnUpdate = acPresetDeleteUpdate
end
end
end