source: oup/releases/0.23a/Unit11_extractor.dfm@ 1065

Last change on this file since 1065 was 23, checked in by alloc, 18 years ago
File size: 6.0 KB
Line 
1object Form11: TForm11
2 Left = 0
3 Top = 0
4 Width = 495
5 Height = 425
6 Caption = 'Extractor'
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 OnActivate = FormActivate
18 OnClose = FormClose
19 OnCreate = FormCreate
20 OnResize = FormResize
21 PixelsPerInch = 96
22 TextHeight = 13
23 object group_select: TGroupBox
24 Left = 0
25 Top = 0
26 Width = 191
27 Height = 398
28 Align = alClient
29 Caption = '1. Select file(s)'
30 TabOrder = 0
31 object panel_extension: TPanel
32 Left = 2
33 Top = 293
34 Width = 187
35 Height = 103
36 Align = alBottom
37 BevelOuter = bvNone
38 TabOrder = 0
39 OnResize = panel_extensionResize
40 object lbl_filter: TLabel
41 Left = 2
42 Top = 62
43 Width = 100
44 Height = 17
45 AutoSize = False
46 Caption = 'Filter by &extension:'
47 FocusControl = combo_extension
48 end
49 object combo_extension: TComboBox
50 Left = 2
51 Top = 76
52 Width = 145
53 Height = 21
54 Style = csDropDownList
55 DropDownCount = 12
56 Font.Charset = DEFAULT_CHARSET
57 Font.Color = clWindowText
58 Font.Height = -11
59 Font.Name = 'Tahoma'
60 Font.Style = []
61 ItemHeight = 13
62 ParentFont = False
63 Sorted = True
64 TabOrder = 3
65 OnClick = combo_extensionClick
66 end
67 object check_zerobyte: TCheckBox
68 Left = 2
69 Top = 44
70 Width = 130
71 Height = 13
72 Caption = 'Show &zero-byte files'
73 TabOrder = 2
74 OnClick = check_zerobyteClick
75 end
76 object edit_filtername: TEdit
77 Left = 2
78 Top = 20
79 Width = 145
80 Height = 18
81 AutoSize = False
82 TabOrder = 1
83 end
84 object check_filtername: TCheckBox
85 Left = 2
86 Top = 5
87 Width = 130
88 Height = 15
89 Caption = 'Filter by file&name:'
90 TabOrder = 0
91 OnClick = check_filternameClick
92 end
93 end
94 object list: TListBox
95 Left = 2
96 Top = 15
97 Width = 187
98 Height = 278
99 Align = alClient
100 ItemHeight = 13
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
257end
Note: See TracBrowser for help on using the repository browser.