source: oup/current/Tool_Extractor.dfm@ 45

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