forked from lmbelo/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdlgCustomParams.dfm
More file actions
276 lines (276 loc) · 6.32 KB
/
dlgCustomParams.dfm
File metadata and controls
276 lines (276 loc) · 6.32 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
inherited CustomizeParams: TCustomizeParams
Left = 340
Top = 192
HelpContext = 720
Caption = 'Custom Parameters'
ClientHeight = 343
ClientWidth = 557
ShowHint = True
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 15
object Panel: TPanel
Left = 0
Top = 0
Width = 557
Height = 343
Align = alClient
TabOrder = 0
DesignSize = (
557
343)
object Label3: TLabel
Left = 12
Top = 304
Width = 235
Height = 15
Caption = 'Press Shift+Ctrl+P for Parameter completion'
Enabled = False
end
object Label4: TLabel
Left = 12
Top = 319
Width = 230
Height = 15
Caption = 'Press Shift+Ctrl+M for Modifier completion'
Enabled = False
end
object TBXButton1: TButton
Left = 8
Top = 183
Width = 100
Height = 24
Action = actAddItem
Images = vilImages
TabOrder = 3
end
object TBXButton3: TButton
Left = 117
Top = 183
Width = 100
Height = 24
Action = actDeleteItem
Images = vilImages
TabOrder = 4
end
object TBXButton4: TButton
Left = 227
Top = 183
Width = 100
Height = 24
Action = actMoveUp
Images = vilImages
TabOrder = 5
end
object TBXButton5: TButton
Left = 336
Top = 183
Width = 100
Height = 24
Action = actMoveDown
Images = vilImages
TabOrder = 6
end
object TBXButton2: TButton
Left = 446
Top = 183
Width = 100
Height = 24
Action = actUpdateItem
Images = vilImages
TabOrder = 7
end
object btnOK: TButton
Left = 382
Top = 308
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = '&OK'
Default = True
ModalResult = 1
TabOrder = 1
end
object btnCancel: TButton
Left = 462
Top = 308
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 8
end
object GroupBox1: TGroupBox
Left = 10
Top = 215
Width = 536
Height = 83
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'Name-Value Pair'
TabOrder = 2
object Label1: TLabel
Left = 14
Top = 28
Width = 35
Height = 15
Caption = '&Name:'
end
object Label2: TLabel
Left = 14
Top = 50
Width = 31
Height = 15
Caption = '&Value:'
end
object SynValue: TSynEdit
Left = 133
Top = 48
Width = 380
Height = 20
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Pitch = fpFixed
Font.Style = []
Font.Quality = fqClearTypeNatural
TabOrder = 1
UseCodeFolding = False
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Courier New'
Gutter.Font.Style = []
Gutter.Visible = False
Gutter.Bands = <
item
Kind = gbkMarks
Width = 15
end
item
Kind = gbkLineNumbers
Visible = False
end
item
Kind = gbkFold
Visible = False
end
item
Kind = gbkMargin
Width = 2
end>
HideSelection = True
Options = [eoAutoIndent, eoDragDropEditing, eoEnhanceEndKey, eoGroupUndo, eoShowScrollHint, eoSmartTabDelete, eoSmartTabs, eoTabsToSpaces]
ScrollBars = ssNone
WantReturns = False
end
object edName: TEdit
Left = 133
Top = 23
Width = 155
Height = 23
TabOrder = 0
OnKeyPress = edNameKeyPress
end
end
object lvItems: TListView
Left = 1
Top = 1
Width = 555
Height = 171
Align = alTop
Columns = <
item
Caption = 'Name'
Width = 140
end
item
Caption = 'Value'
Width = 250
end>
ColumnClick = False
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = lvItemsSelectItem
end
end
object ActionList: TActionList
Images = vilImages
OnUpdate = ActionListUpdate
Left = 354
Top = 18
object actAddItem: TAction
Caption = '&Add'
Hint = 'Add item'
ImageIndex = 4
ImageName = 'Plus'
OnExecute = actAddItemExecute
end
object actDeleteItem: TAction
Caption = '&Delete'
Hint = 'Delete item'
ImageIndex = 0
ImageName = 'Delete'
OnExecute = actDeleteItemExecute
end
object actMoveUp: TAction
Caption = '&Up'
Hint = 'Move item up'
ImageIndex = 2
ImageName = 'Up'
OnExecute = actMoveUpExecute
end
object actMoveDown: TAction
Caption = '&Down'
Hint = 'Move item down'
ImageIndex = 3
ImageName = 'Down'
OnExecute = actMoveDownExecute
end
object actUpdateItem: TAction
Caption = '&Update'
Hint = 'Update item'
ImageIndex = 1
ImageName = 'Refresh'
OnExecute = actUpdateItemExecute
end
end
object vilImages: TVirtualImageList
Images = <
item
CollectionIndex = 21
CollectionName = 'Delete'
Name = 'Delete'
end
item
CollectionIndex = 88
CollectionName = 'Refresh'
Name = 'Refresh'
end
item
CollectionIndex = 129
CollectionName = 'Up'
Name = 'Up'
end
item
CollectionIndex = 22
CollectionName = 'Down'
Name = 'Down'
end
item
CollectionIndex = 68
CollectionName = 'Plus'
Name = 'Plus'
end>
ImageCollection = CommandsDataModule.icSVGImages
PreserveItems = True
Left = 304
Top = 17
end
end