forked from pyscripter/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlgDirectoryList.dfm
172 lines (172 loc) · 4.01 KB
/
dlgDirectoryList.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
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
ExplicitWidth = 395
ExplicitHeight = 380
PixelsPerInch = 96
TextHeight = 13
object SpTBXPanel1: TSpTBXPanel
Left = 0
Top = 0
Width = 379
Height = 232
Align = alClient
TabOrder = 0
TBXStyleBackground = True
DesignSize = (
379
232)
object DirectoryList: TSpTBXListBox
Left = 10
Top = 34
Width = 332
Height = 189
Style = lbStandard
Anchors = [akLeft, akTop, akRight, akBottom]
DragMode = dmAutomatic
ItemHeight = 13
TabOrder = 0
OnClick = DirectoryListClick
OnDragDrop = DirectoryListDragDrop
OnDragOver = DirectoryListDragOver
end
object btnMoveUp: TSpTBXButton
Left = 345
Top = 96
Width = 28
Height = 24
Hint = 'Move up'
Anchors = [akTop]
TabOrder = 1
OnClick = btnMoveUpClick
Images = CommandsDataModule.Images
ImageIndex = 47
end
object btnMoveDown: TSpTBXButton
Left = 345
Top = 134
Width = 28
Height = 24
Hint = 'Move down'
Anchors = [akTop]
TabOrder = 2
OnClick = btnMoveDownClick
Images = CommandsDataModule.Images
ImageIndex = 48
end
object SpTBXLabel1: TSpTBXLabel
Left = 10
Top = 9
Width = 126
Height = 19
Caption = 'Ordered list of file paths:'
end
end
object SpTBXPanel2: TSpTBXPanel
Left = 0
Top = 232
Width = 379
Height = 110
Caption = 'SpTBXPanel2'
Align = alBottom
TabOrder = 1
BorderType = pbrFramed
TBXStyleBackground = True
DesignSize = (
379
110)
object SpTBXPanel3: TSpTBXPanel
Left = 2
Top = 66
Width = 375
Height = 42
Caption = 'SpTBXPanel3'
Align = alBottom
TabOrder = 0
TBXStyleBackground = True
DesignSize = (
375
42)
object OKBtn: TSpTBXButton
Left = 200
Top = 10
Width = 75
Height = 25
Caption = '&OK'
Anchors = [akTop, akRight]
TabOrder = 0
Default = True
ModalResult = 1
end
object CancelBtn: TSpTBXButton
Left = 288
Top = 10
Width = 75
Height = 25
Caption = '&Cancel'
Anchors = [akTop, akRight]
TabOrder = 1
Cancel = True
ModalResult = 2
end
end
object btnAdd: TSpTBXButton
Left = 44
Top = 33
Width = 75
Height = 25
Hint = 'Add file path to the list'
Caption = '&Add...'
TabOrder = 1
OnClick = btnAddClick
end
object btnReplace: TSpTBXButton
Left = 136
Top = 33
Width = 75
Height = 25
Hint = 'Replace the selected file path'
Caption = '&Replace'
TabOrder = 2
OnClick = btnReplaceClick
end
object edPath: TSpTBXButtonEdit
Left = 10
Top = 6
Width = 332
Height = 21
Hint = 'Enter file path here'
Anchors = [akLeft, akTop, akRight]
TabOrder = 3
OnChange = edPathChange
EditButton.Left = 308
EditButton.Top = 0
EditButton.Width = 20
EditButton.Height = 17
EditButton.Hint = 'Select file path'
EditButton.Align = alRight
EditButton.OnClick = BtnPathClick
EditButton.Images = CommandsDataModule.Images
EditButton.ImageIndex = 45
end
object btnDelete: TSpTBXButton
Left = 228
Top = 33
Width = 75
Height = 25
Hint = 'Delete the selected file path'
Caption = '&Delete'
TabOrder = 4
OnClick = btnDeleteClick
end
end
end