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

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