forked from lmbelo/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdlgDirectoryList.dfm
More file actions
193 lines (193 loc) · 4.35 KB
/
dlgDirectoryList.dfm
File metadata and controls
193 lines (193 loc) · 4.35 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
inherited DirectoryListDialog: TDirectoryListDialog
Left = 206
Top = 99
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeable
Caption = 'Directory list'
ClientHeight = 342
ClientWidth = 379
Constraints.MinHeight = 208
Constraints.MinWidth = 358
OldCreateOrder = True
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 379
Height = 232
Align = alClient
TabOrder = 0
DesignSize = (
379
232)
object Label1: TLabel
Left = 10
Top = 9
Width = 120
Height = 13
Caption = 'Ordered list of file paths:'
Color = clNone
ParentColor = False
end
object btnMoveUp: TButton
Left = 345
Top = 96
Width = 28
Height = 24
Hint = 'Move up'
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 1
ImageName = 'Up'
Images = vilImages
TabOrder = 1
OnClick = btnMoveUpClick
end
object btnMoveDown: TButton
Left = 345
Top = 126
Width = 28
Height = 24
Hint = 'Move down'
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Down'
Images = vilImages
TabOrder = 2
OnClick = btnMoveDownClick
end
object DirectoryList: TListBox
Left = 10
Top = 34
Width = 332
Height = 189
Anchors = [akLeft, akTop, akRight, akBottom]
DragMode = dmAutomatic
ItemHeight = 13
TabOrder = 0
OnClick = DirectoryListClick
OnDragDrop = DirectoryListDragDrop
OnDragOver = DirectoryListDragOver
end
end
object Panel2: TPanel
Left = 0
Top = 232
Width = 379
Height = 110
Align = alBottom
TabOrder = 1
DesignSize = (
379
110)
object Panel3: TPanel
Left = 1
Top = 67
Width = 377
Height = 42
Align = alBottom
TabOrder = 0
DesignSize = (
377
42)
object OKBtn: TButton
Left = 202
Top = 10
Width = 75
Height = 25
Anchors = [akTop, akRight]
Caption = '&OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelBtn: TButton
Left = 290
Top = 10
Width = 75
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 1
end
end
object btnAdd: TButton
Left = 44
Top = 33
Width = 75
Height = 25
Hint = 'Add file path to the list'
Caption = '&Add...'
TabOrder = 1
OnClick = btnAddClick
end
object btnReplace: TButton
Left = 136
Top = 33
Width = 75
Height = 25
Hint = 'Replace the selected file path'
Caption = '&Replace'
TabOrder = 2
OnClick = btnReplaceClick
end
object btnDelete: TButton
Left = 228
Top = 33
Width = 75
Height = 25
Hint = 'Delete the selected file path'
Caption = '&Delete'
TabOrder = 4
OnClick = btnDeleteClick
end
object edPath: TButtonedEdit
Left = 10
Top = 6
Width = 332
Height = 21
Hint = 'Enter file path here'
Anchors = [akLeft, akTop, akRight]
Color = clBtnFace
Images = vilImages
RightButton.ImageIndex = 0
RightButton.ImageName = 'OpenFolder'
RightButton.Visible = True
TabOrder = 3
OnChange = edPathChange
OnRightButtonClick = BtnPathClick
end
end
object vilImages: TVirtualImageList
DisabledGrayscale = False
DisabledSuffix = '_Disabled'
Images = <
item
CollectionIndex = 60
CollectionName = 'OpenFolder'
Disabled = False
Name = 'OpenFolder'
end
item
CollectionIndex = 126
CollectionName = 'Up'
Disabled = False
Name = 'Up'
end
item
CollectionIndex = 21
CollectionName = 'Down'
Disabled = False
Name = 'Down'
end>
ImageCollection = CommandsDataModule.icSVGImages
PreserveItems = True
Left = 40
Top = 120
end
end