source: oup/current/Tools/Extractor.dfm@ 66

Last change on this file since 66 was 46, checked in by alloc, 18 years ago
File size: 5.3 KB
Line 
1inherited Form_Extractor: TForm_Extractor
2 Caption = 'Extractor'
3 PixelsPerInch = 96
4 TextHeight = 13
5 inherited Splitter1: TSplitter
6 Left = 483
7 Align = alRight
8 Visible = False
9 ExplicitLeft = 172
10 ExplicitTop = -8
11 ExplicitHeight = 423
12 end
13 inherited panel_files: TPanel
14 Width = 184
15 Align = alClient
16 ExplicitWidth = 184
17 inherited filelist: TListBox
18 Width = 184
19 ExplicitWidth = 184
20 end
21 inherited panel_extension: TPanel
22 Width = 184
23 ExplicitWidth = 184
24 inherited combo_extension: TComboBox
25 Width = 176
26 ExplicitWidth = 176
27 end
28 inherited edit_filtername: TEdit
29 Width = 176
30 ExplicitWidth = 176
31 end
32 end
33 end
34 inherited content: TPanel
35 Left = 184
36 Width = 299
37 Align = alRight
38 ExplicitLeft = 184
39 ExplicitWidth = 299
40 object group_extract: TGroupBox
41 Left = 3
42 Top = 0
43 Width = 296
44 Height = 423
45 Align = alRight
46 Caption = '2. Select extract-method'
47 TabOrder = 0
48 object group_singlefiles: TGroupBox
49 AlignWithMargins = True
50 Left = 8
51 Top = 16
52 Width = 280
53 Height = 185
54 Margins.Left = 6
55 Margins.Top = 1
56 Margins.Right = 6
57 Align = alTop
58 Caption = 'Write data into single files'
59 TabOrder = 0
60 object btn_sel_dat: TButton
61 Left = 8
62 Top = 16
63 Width = 129
64 Height = 49
65 Caption = 'Selected files (dat contents only)'
66 TabOrder = 0
67 WordWrap = True
68 OnClick = Extract
69 end
70 object btn_sel_datraw: TButton
71 Left = 8
72 Top = 72
73 Width = 129
74 Height = 49
75 Caption = 'Selected files (dat+raw)'
76 TabOrder = 1
77 WordWrap = True
78 OnClick = Extract
79 end
80 object btn_sel_datraw_convert: TButton
81 Left = 8
82 Top = 128
83 Width = 129
84 Height = 49
85 Caption = 'Selected files (dat+raw) (with convert if possible)'
86 TabOrder = 2
87 WordWrap = True
88 OnClick = Extract
89 end
90 object btn_all_dat: TButton
91 Left = 144
92 Top = 16
93 Width = 129
94 Height = 49
95 Caption = 'All files in list (dat contents only)'
96 TabOrder = 3
97 WordWrap = True
98 OnClick = Extract
99 end
100 object btn_all_datraw: TButton
101 Left = 144
102 Top = 72
103 Width = 129
104 Height = 49
105 Caption = 'All files in list (dat+raw)'
106 TabOrder = 4
107 WordWrap = True
108 OnClick = Extract
109 end
110 object btn_all_datraw_convert: TButton
111 Left = 144
112 Top = 128
113 Width = 129
114 Height = 49
115 BiDiMode = bdLeftToRight
116 Caption = 'All files in list (dat+raw) (with convert if possible)'
117 ParentBiDiMode = False
118 TabOrder = 5
119 WordWrap = True
120 OnClick = Extract
121 end
122 end
123 object group_onefile: TGroupBox
124 AlignWithMargins = True
125 Left = 8
126 Top = 205
127 Width = 280
128 Height = 73
129 Margins.Left = 6
130 Margins.Top = 1
131 Margins.Right = 6
132 Align = alTop
133 Caption = 'Write data into one file'
134 TabOrder = 1
135 object btn_sel_files_toone: TButton
136 Left = 8
137 Top = 16
138 Width = 129
139 Height = 49
140 Caption = 'Selected files (dat contents only)'
141 TabOrder = 0
142 WordWrap = True
143 OnClick = Extract
144 end
145 object btn_all_files_toone: TButton
146 Left = 144
147 Top = 16
148 Width = 129
149 Height = 49
150 Caption = 'All files in list (dat contents only)'
151 TabOrder = 1
152 WordWrap = True
153 OnClick = Extract
154 end
155 end
156 object group_progress: TGroupBox
157 AlignWithMargins = True
158 Left = 8
159 Top = 282
160 Width = 280
161 Height = 132
162 Margins.Left = 6
163 Margins.Top = 1
164 Margins.Right = 6
165 Margins.Bottom = 7
166 Align = alClient
167 Caption = 'Progress ...'
168 TabOrder = 2
169 Visible = False
170 object lbl_progress: TLabel
171 Left = 8
172 Top = 40
173 Width = 265
174 Height = 17
175 AutoSize = False
176 Caption = 'Files done: 0/0'
177 end
178 object lbl_estimated: TLabel
179 Left = 8
180 Top = 56
181 Width = 265
182 Height = 17
183 AutoSize = False
184 Caption = 'Estimated finishing time: 00:00:00'
185 end
186 object progress: TProgressBar
187 Left = 8
188 Top = 16
189 Width = 265
190 Height = 17
191 Smooth = True
192 TabOrder = 0
193 end
194 object btn_abort: TButton
195 Left = 8
196 Top = 72
197 Width = 97
198 Height = 23
199 Caption = 'Abort'
200 Enabled = False
201 TabOrder = 1
202 OnClick = btn_abortClick
203 end
204 end
205 end
206 end
207 object saved: TSaveDialog [3]
208 Left = 448
209 Top = 328
210 end
211end
Note: See TracBrowser for help on using the repository browser.