1 | object Form11: TForm11 |
---|
2 | Left = 0 |
---|
3 | Top = 0 |
---|
4 | Caption = 'Extractor' |
---|
5 | ClientHeight = 398 |
---|
6 | ClientWidth = 487 |
---|
7 | Color = clBtnFace |
---|
8 | Font.Charset = DEFAULT_CHARSET |
---|
9 | Font.Color = clWindowText |
---|
10 | Font.Height = -11 |
---|
11 | Font.Name = 'Tahoma' |
---|
12 | Font.Style = [] |
---|
13 | FormStyle = fsMDIChild |
---|
14 | OldCreateOrder = False |
---|
15 | Visible = True |
---|
16 | WindowState = wsMaximized |
---|
17 | OnClose = FormClose |
---|
18 | OnCreate = FormCreate |
---|
19 | OnResize = FormResize |
---|
20 | PixelsPerInch = 96 |
---|
21 | TextHeight = 13 |
---|
22 | object group_select: TGroupBox |
---|
23 | Left = 0 |
---|
24 | Top = 0 |
---|
25 | Width = 191 |
---|
26 | Height = 398 |
---|
27 | Align = alClient |
---|
28 | Caption = '1. Select file(s)' |
---|
29 | TabOrder = 0 |
---|
30 | object panel_extension: TPanel |
---|
31 | Left = 2 |
---|
32 | Top = 293 |
---|
33 | Width = 187 |
---|
34 | Height = 103 |
---|
35 | Align = alBottom |
---|
36 | BevelOuter = bvNone |
---|
37 | TabOrder = 0 |
---|
38 | OnResize = panel_extensionResize |
---|
39 | object lbl_filter: TLabel |
---|
40 | Left = 2 |
---|
41 | Top = 62 |
---|
42 | Width = 100 |
---|
43 | Height = 17 |
---|
44 | AutoSize = False |
---|
45 | Caption = 'Filter by &extension:' |
---|
46 | FocusControl = combo_extension |
---|
47 | end |
---|
48 | object combo_extension: TComboBox |
---|
49 | Left = 2 |
---|
50 | Top = 76 |
---|
51 | Width = 145 |
---|
52 | Height = 21 |
---|
53 | Style = csDropDownList |
---|
54 | DropDownCount = 12 |
---|
55 | Font.Charset = DEFAULT_CHARSET |
---|
56 | Font.Color = clWindowText |
---|
57 | Font.Height = -11 |
---|
58 | Font.Name = 'Tahoma' |
---|
59 | Font.Style = [] |
---|
60 | ItemHeight = 13 |
---|
61 | ParentFont = False |
---|
62 | Sorted = True |
---|
63 | TabOrder = 3 |
---|
64 | OnClick = combo_extensionClick |
---|
65 | end |
---|
66 | object check_zerobyte: TCheckBox |
---|
67 | Left = 2 |
---|
68 | Top = 44 |
---|
69 | Width = 130 |
---|
70 | Height = 13 |
---|
71 | Caption = 'Show &zero-byte files' |
---|
72 | TabOrder = 2 |
---|
73 | OnClick = check_zerobyteClick |
---|
74 | end |
---|
75 | object edit_filtername: TEdit |
---|
76 | Left = 2 |
---|
77 | Top = 20 |
---|
78 | Width = 145 |
---|
79 | Height = 18 |
---|
80 | AutoSize = False |
---|
81 | TabOrder = 1 |
---|
82 | end |
---|
83 | object check_filtername: TCheckBox |
---|
84 | Left = 2 |
---|
85 | Top = 5 |
---|
86 | Width = 130 |
---|
87 | Height = 15 |
---|
88 | Caption = 'Filter by file&name:' |
---|
89 | TabOrder = 0 |
---|
90 | OnClick = check_filternameClick |
---|
91 | end |
---|
92 | end |
---|
93 | object list: TListBox |
---|
94 | Left = 2 |
---|
95 | Top = 15 |
---|
96 | Width = 187 |
---|
97 | Height = 278 |
---|
98 | Align = alClient |
---|
99 | ItemHeight = 13 |
---|
100 | MultiSelect = True |
---|
101 | TabOrder = 1 |
---|
102 | end |
---|
103 | end |
---|
104 | object group_extract: TGroupBox |
---|
105 | Left = 191 |
---|
106 | Top = 0 |
---|
107 | Width = 296 |
---|
108 | Height = 398 |
---|
109 | Align = alRight |
---|
110 | Caption = '2. Select extract-method' |
---|
111 | TabOrder = 1 |
---|
112 | object group_singlefiles: TGroupBox |
---|
113 | Left = 8 |
---|
114 | Top = 16 |
---|
115 | Width = 281 |
---|
116 | Height = 185 |
---|
117 | Caption = 'Write data into single files' |
---|
118 | TabOrder = 0 |
---|
119 | object btn_sel_dat: TButton |
---|
120 | Left = 8 |
---|
121 | Top = 16 |
---|
122 | Width = 129 |
---|
123 | Height = 49 |
---|
124 | Caption = 'Selected files (dat contents only)' |
---|
125 | TabOrder = 0 |
---|
126 | WordWrap = True |
---|
127 | OnClick = Extract |
---|
128 | end |
---|
129 | object btn_sel_datraw: TButton |
---|
130 | Left = 8 |
---|
131 | Top = 72 |
---|
132 | Width = 129 |
---|
133 | Height = 49 |
---|
134 | Caption = 'Selected files (dat+raw)' |
---|
135 | TabOrder = 1 |
---|
136 | WordWrap = True |
---|
137 | OnClick = Extract |
---|
138 | end |
---|
139 | object btn_sel_datraw_convert: TButton |
---|
140 | Left = 8 |
---|
141 | Top = 128 |
---|
142 | Width = 129 |
---|
143 | Height = 49 |
---|
144 | Caption = 'Selected files (dat+raw) (with convert if possible)' |
---|
145 | TabOrder = 2 |
---|
146 | WordWrap = True |
---|
147 | OnClick = Extract |
---|
148 | end |
---|
149 | object btn_all_dat: TButton |
---|
150 | Left = 144 |
---|
151 | Top = 16 |
---|
152 | Width = 129 |
---|
153 | Height = 49 |
---|
154 | Caption = 'All files in list (dat contents only)' |
---|
155 | TabOrder = 3 |
---|
156 | WordWrap = True |
---|
157 | OnClick = Extract |
---|
158 | end |
---|
159 | object btn_all_datraw: TButton |
---|
160 | Left = 144 |
---|
161 | Top = 72 |
---|
162 | Width = 129 |
---|
163 | Height = 49 |
---|
164 | Caption = 'All files in list (dat+raw)' |
---|
165 | TabOrder = 4 |
---|
166 | WordWrap = True |
---|
167 | OnClick = Extract |
---|
168 | end |
---|
169 | object btn_all_datraw_convert: TButton |
---|
170 | Left = 144 |
---|
171 | Top = 128 |
---|
172 | Width = 129 |
---|
173 | Height = 49 |
---|
174 | BiDiMode = bdLeftToRight |
---|
175 | Caption = 'All files in list (dat+raw) (with convert if possible)' |
---|
176 | ParentBiDiMode = False |
---|
177 | TabOrder = 5 |
---|
178 | WordWrap = True |
---|
179 | OnClick = Extract |
---|
180 | end |
---|
181 | end |
---|
182 | object group_onefile: TGroupBox |
---|
183 | Left = 8 |
---|
184 | Top = 208 |
---|
185 | Width = 281 |
---|
186 | Height = 73 |
---|
187 | Caption = 'Write data into one file' |
---|
188 | TabOrder = 1 |
---|
189 | object btn_sel_files_toone: TButton |
---|
190 | Left = 8 |
---|
191 | Top = 16 |
---|
192 | Width = 129 |
---|
193 | Height = 49 |
---|
194 | Caption = 'Selected files (dat contents only)' |
---|
195 | TabOrder = 0 |
---|
196 | WordWrap = True |
---|
197 | OnClick = Extract |
---|
198 | end |
---|
199 | object btn_all_files_toone: TButton |
---|
200 | Left = 144 |
---|
201 | Top = 16 |
---|
202 | Width = 129 |
---|
203 | Height = 49 |
---|
204 | Caption = 'All files in list (dat contents only)' |
---|
205 | TabOrder = 1 |
---|
206 | WordWrap = True |
---|
207 | OnClick = Extract |
---|
208 | end |
---|
209 | end |
---|
210 | object group_progress: TGroupBox |
---|
211 | Left = 8 |
---|
212 | Top = 288 |
---|
213 | Width = 281 |
---|
214 | Height = 105 |
---|
215 | Caption = 'Progress ...' |
---|
216 | TabOrder = 2 |
---|
217 | Visible = False |
---|
218 | object lbl_progress: TLabel |
---|
219 | Left = 8 |
---|
220 | Top = 40 |
---|
221 | Width = 265 |
---|
222 | Height = 17 |
---|
223 | AutoSize = False |
---|
224 | Caption = 'Files done: 0/0' |
---|
225 | end |
---|
226 | object lbl_estimated: TLabel |
---|
227 | Left = 8 |
---|
228 | Top = 56 |
---|
229 | Width = 265 |
---|
230 | Height = 17 |
---|
231 | AutoSize = False |
---|
232 | Caption = 'Estimated finishing time: 00:00:00' |
---|
233 | end |
---|
234 | object progress: TProgressBar |
---|
235 | Left = 8 |
---|
236 | Top = 16 |
---|
237 | Width = 265 |
---|
238 | Height = 17 |
---|
239 | Smooth = True |
---|
240 | TabOrder = 0 |
---|
241 | end |
---|
242 | object btn_abort: TButton |
---|
243 | Left = 8 |
---|
244 | Top = 72 |
---|
245 | Width = 97 |
---|
246 | Height = 23 |
---|
247 | Caption = 'Abort' |
---|
248 | Enabled = False |
---|
249 | TabOrder = 1 |
---|
250 | end |
---|
251 | end |
---|
252 | end |
---|
253 | object saved: TSaveDialog |
---|
254 | Left = 448 |
---|
255 | Top = 328 |
---|
256 | end |
---|
257 | end |
---|