-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathunit1.lfm
219 lines (219 loc) · 5.03 KB
/
unit1.lfm
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
object Form1: TForm1
Left = 335
Height = 354
Top = 115
Width = 604
AllowDropFiles = True
Caption = 'Form1'
ClientHeight = 354
ClientWidth = 604
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDropFiles = FormDropFiles
OnShow = FormShow
PopupMenu = PopupMenu2
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Label1: TLabel
Left = 8
Height = 15
Top = 18
Width = 38
Caption = 'Scan in'
ParentColor = False
end
object Edit1: TEdit
Left = 64
Height = 23
Top = 8
Width = 320
Anchors = [akTop, akLeft, akRight]
OnKeyPress = Edit2KeyPress
TabOrder = 0
Text = 'Edit1'
end
object Label2: TLabel
Left = 8
Height = 15
Top = 50
Width = 28
Caption = 'Mask'
ParentColor = False
end
object Edit2: TEdit
Left = 64
Height = 23
Hint = 'Enter a commalist (eg. ".txt,.pas") or *'#13#10'Searching for "." gives you all files in the directory'
Top = 40
Width = 320
Anchors = [akTop, akLeft, akRight]
OnKeyPress = Edit2KeyPress
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = 'Edit2'
end
object Button1: TButton
Left = 504
Height = 91
Top = 8
Width = 90
Anchors = [akTop, akRight]
Caption = 'Scan'
OnClick = Button1Click
TabOrder = 5
end
object CheckBox1: TCheckBox
Left = 397
Height = 19
Top = 32
Width = 93
Anchors = [akTop, akRight]
Caption = 'Scan recursive'
Checked = True
ParentShowHint = False
State = cbChecked
TabOrder = 3
end
object ListBox1: TListBox
Left = 8
Height = 219
Top = 104
Width = 586
Anchors = [akTop, akLeft, akRight, akBottom]
ItemHeight = 0
MultiSelect = True
OnDblClick = MenuItem3Click
PopupMenu = PopupMenu1
ScrollWidth = 584
TabOrder = 6
end
object Label3: TLabel
Left = 8
Height = 15
Top = 82
Width = 47
Caption = 'Contains'
ParentColor = False
end
object Edit3: TEdit
Left = 64
Height = 23
Hint = 'If set, all files which are found via mask, will additional '#13#10'checked for the containing text. Only matches with'#13#10'mask and containing text will shown.'#13#10#13#10'Leave empty if not used.'
Top = 72
Width = 320
Anchors = [akTop, akLeft, akRight]
OnKeyPress = Edit2KeyPress
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Edit3'
end
object CheckBox2: TCheckBox
Left = 397
Height = 19
Top = 56
Width = 91
Anchors = [akTop, akRight]
Caption = 'Case sensitive'
TabOrder = 4
end
object StatusBar1: TStatusBar
Left = 0
Height = 23
Top = 331
Width = 604
Panels = <
item
Width = 50
end>
SimplePanel = False
end
object CheckBox3: TCheckBox
Left = 384
Height = 19
Hint = 'If selected the filenames are matched via Regex'#13#10'eg.'#13#10'[.]*\.pas$\L Finds all .pas files'
Top = 8
Width = 110
Caption = 'Match with regex'
ParentShowHint = False
ShowHint = True
TabOrder = 8
Visible = False
end
object PopupMenu1: TPopupMenu
Left = 32
Top = 120
object MenuItem1: TMenuItem
Caption = 'Copy Filename'
OnClick = MenuItem1Click
end
object MenuItem10: TMenuItem
Caption = 'Copy Foldername'
OnClick = MenuItem10Click
end
object Separator1: TMenuItem
Caption = '-'
end
object MenuItem3: TMenuItem
Caption = 'Open File'
OnClick = MenuItem3Click
end
object MenuItem2: TMenuItem
Caption = 'Explore to..'
OnClick = MenuItem2Click
end
object Separator2: TMenuItem
Caption = '-'
end
object MenuItem5: TMenuItem
Caption = 'Export found list'
OnClick = MenuItem5Click
end
object MenuItem9: TMenuItem
Caption = 'Rename selected Filenames'
OnClick = MenuItem9Click
end
object Separator3: TMenuItem
Caption = '-'
end
object MenuItem11: TMenuItem
Caption = 'Copy selected files to'
OnClick = MenuItem11Click
end
object MenuItem12: TMenuItem
Caption = 'Move selected files to'
OnClick = MenuItem12Click
end
object MenuItem6: TMenuItem
Caption = 'Delete selected'
OnClick = MenuItem6Click
end
object MenuItem7: TMenuItem
Caption = '-'
end
object MenuItem8: TMenuItem
Caption = 'Select all'
ShortCut = 16449
OnClick = MenuItem8Click
end
end
object PopupMenu2: TPopupMenu
Left = 128
Top = 120
object MenuItem4: TMenuItem
Caption = 'Stay on top'
OnClick = MenuItem4Click
end
end
object SaveDialog1: TSaveDialog
DefaultExt = '.txt'
Filter = 'Textfiles|*.txt|All|*.*'
Left = 216
Top = 120
end
object SelectDirectoryDialog1: TSelectDirectoryDialog
Left = 328
Top = 120
end
end