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

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