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

Last change on this file since 76 was 74, checked in by alloc, 18 years ago
File size: 4.9 KB
Line 
1inherited Form_Extractor: TForm_Extractor
2 Caption = 'Extractor'
3 ClientHeight = 491
4 ExplicitWidth = 500
5 ExplicitHeight = 518
6 PixelsPerInch = 96
7 TextHeight = 13
8 inherited Splitter1: TSplitter
9 Left = 483
10 Height = 491
11 Align = alRight
12 Visible = False
13 ExplicitLeft = 172
14 ExplicitTop = -8
15 ExplicitHeight = 423
16 end
17 inherited panel_files: TPanel
18 Width = 333
19 Height = 491
20 ExplicitWidth = 333
21 ExplicitHeight = 491
22 inherited filelist: TListBox
23 Width = 333
24 Height = 362
25 ExplicitWidth = 333
26 ExplicitHeight = 362
27 end
28 inherited panel_extension: TPanel
29 Width = 333
30 ExplicitWidth = 333
31 inherited combo_extension: TComboBox
32 Width = 325
33 ExplicitWidth = 325
34 end
35 inherited check_zerobyte: TCheckBox
36 Visible = False
37 end
38 inherited edit_filtername: TEdit
39 Width = 325
40 ExplicitWidth = 325
41 end
42 end
43 end
44 inherited content: TPanel
45 Left = 333
46 Width = 150
47 Height = 491
48 ExplicitLeft = 333
49 ExplicitWidth = 150
50 ExplicitHeight = 491
51 object group_extract: TGroupBox
52 AlignWithMargins = True
53 Left = 6
54 Top = 3
55 Width = 138
56 Height = 374
57 Margins.Left = 6
58 Margins.Right = 6
59 Align = alClient
60 Caption = '2. Select extract-method'
61 TabOrder = 0
62 DesignSize = (
63 138
64 374)
65 object label_export_sel: TLabel
66 Left = 7
67 Top = 18
68 Width = 62
69 Height = 20
70 AutoSize = False
71 Caption = 'Export ...'
72 end
73 object label_path: TLabel
74 Left = 7
75 Top = 136
76 Width = 30
77 Height = 18
78 AutoSize = False
79 Caption = 'Path:'
80 end
81 object check_dat: TCheckBox
82 Left = 7
83 Top = 75
84 Width = 121
85 Height = 18
86 Anchors = [akLeft, akTop, akRight]
87 Caption = 'Export .dat-entries'
88 Checked = True
89 State = cbChecked
90 TabOrder = 0
91 end
92 object check_raw: TCheckBox
93 Left = 7
94 Top = 94
95 Width = 121
96 Height = 18
97 Anchors = [akLeft, akTop, akRight]
98 Caption = 'Export .raw-entries'
99 TabOrder = 1
100 end
101 object check_convert: TCheckBox
102 Left = 7
103 Top = 112
104 Width = 121
105 Height = 18
106 Anchors = [akLeft, akTop, akRight]
107 Caption = 'Convert files'
108 TabOrder = 2
109 end
110 object radio_selected: TRadioButton
111 Left = 7
112 Top = 36
113 Width = 113
114 Height = 17
115 Caption = 'selected files'
116 Checked = True
117 TabOrder = 3
118 TabStop = True
119 end
120 object radio_all: TRadioButton
121 Left = 7
122 Top = 52
123 Width = 113
124 Height = 17
125 Caption = 'all files in list'
126 TabOrder = 4
127 end
128 object edit_path: TEdit
129 Left = 36
130 Top = 133
131 Width = 28
132 Height = 21
133 Anchors = [akLeft, akTop, akRight]
134 ReadOnly = True
135 TabOrder = 5
136 Text = 'C:\'
137 OnClick = btn_pathClick
138 end
139 object btn_path: TButton
140 Left = 70
141 Top = 133
142 Width = 62
143 Height = 21
144 Anchors = [akTop, akRight]
145 Caption = 'Select...'
146 TabOrder = 6
147 OnClick = btn_pathClick
148 end
149 object btn_export: TButton
150 Left = 7
151 Top = 180
152 Width = 75
153 Height = 25
154 Caption = 'Export!'
155 TabOrder = 7
156 OnClick = btn_exportClick
157 end
158 end
159 object group_progress: TGroupBox
160 AlignWithMargins = True
161 Left = 6
162 Top = 381
163 Width = 138
164 Height = 104
165 Margins.Left = 6
166 Margins.Top = 1
167 Margins.Right = 6
168 Margins.Bottom = 6
169 Align = alBottom
170 Caption = 'Progress ...'
171 TabOrder = 1
172 Visible = False
173 DesignSize = (
174 138
175 104)
176 object lbl_progress: TLabel
177 Left = 8
178 Top = 40
179 Width = 265
180 Height = 17
181 AutoSize = False
182 Caption = 'Files done: 0/0'
183 end
184 object lbl_estimated: TLabel
185 Left = 8
186 Top = 56
187 Width = 265
188 Height = 17
189 AutoSize = False
190 Caption = 'Estimated finishing time: 00:00:00'
191 end
192 object progress: TProgressBar
193 Left = 8
194 Top = 16
195 Width = 122
196 Height = 17
197 Anchors = [akLeft, akTop, akRight]
198 Smooth = True
199 TabOrder = 0
200 end
201 object btn_abort: TButton
202 Left = 8
203 Top = 72
204 Width = 97
205 Height = 23
206 Caption = 'Abort'
207 Enabled = False
208 TabOrder = 1
209 OnClick = btn_abortClick
210 end
211 end
212 end
213end
Note: See TracBrowser for help on using the repository browser.