source: oup/releases/0.11a/Unit1_main.dfm@ 219

Last change on this file since 219 was 19, checked in by alloc, 18 years ago
File size: 6.8 KB
Line 
1object Form1: TForm1
2 Left = 0
3 Top = 0
4 HorzScrollBar.Visible = False
5 VertScrollBar.Visible = False
6 AutoScroll = False
7 Caption = 'Form1'
8 ClientHeight = 454
9 ClientWidth = 742
10 Color = clBtnFace
11 Font.Charset = DEFAULT_CHARSET
12 Font.Color = clWindowText
13 Font.Height = -11
14 Font.Name = 'Tahoma'
15 Font.Style = []
16 Menu = menu
17 OldCreateOrder = False
18 OnClose = FormClose
19 OnCreate = FormCreate
20 OnResize = FormResize
21 PixelsPerInch = 96
22 TextHeight = 13
23 object panel_all: TPanel
24 Left = 0
25 Top = 100
26 Width = 692
27 Height = 300
28 BevelOuter = bvNone
29 TabOrder = 0
30 object Splitter2: TSplitter
31 Left = 360
32 Top = 0
33 Width = 8
34 Height = 300
35 AutoSnap = False
36 Beveled = True
37 MinSize = 360
38 OnMoved = Splitter2Moved
39 end
40 object panel_left: TPanel
41 Left = 0
42 Top = 0
43 Width = 360
44 Height = 300
45 Cursor = crDrag
46 Align = alLeft
47 BevelOuter = bvNone
48 TabOrder = 0
49 object Splitter1: TSplitter
50 Left = 0
51 Top = 241
52 Width = 360
53 Height = 8
54 Cursor = crVSplit
55 Align = alTop
56 AutoSnap = False
57 Beveled = True
58 MinSize = 75
59 OnMoved = Splitter1Moved
60 end
61 object panel_files: TPanel
62 Left = 0
63 Top = 0
64 Width = 360
65 Height = 241
66 Align = alTop
67 BevelOuter = bvNone
68 TabOrder = 0
69 object btn_extractallconvert: TButton
70 Left = 273
71 Top = 208
72 Width = 82
73 Height = 33
74 Caption = 'Extract all (with convert)'
75 TabOrder = 0
76 WordWrap = True
77 OnClick = btn_extractallconvertClick
78 end
79 object btn_extract: TButton
80 Left = 0
81 Top = 208
82 Width = 100
83 Height = 33
84 Caption = 'Extract file (without convert)'
85 TabOrder = 1
86 WordWrap = True
87 OnClick = btn_extractconvertClick
88 end
89 object btn_extractconvert: TButton
90 Left = 101
91 Top = 208
92 Width = 105
93 Height = 33
94 Caption = 'Extract file (with convert if possible)'
95 TabOrder = 2
96 WordWrap = True
97 OnClick = btn_extractconvertClick
98 end
99 object list_files: TListBox
100 Left = 0
101 Top = 0
102 Width = 360
103 Height = 209
104 Align = alTop
105 Font.Charset = DEFAULT_CHARSET
106 Font.Color = clWindowText
107 Font.Height = -11
108 Font.Name = 'Fixedsys'
109 Font.Style = []
110 ItemHeight = 15
111 ParentFont = False
112 TabOrder = 3
113 OnClick = list_filesDblClick
114 OnDblClick = list_filesDblClick
115 end
116 object btn_extractall: TButton
117 Left = 210
118 Top = 208
119 Width = 62
120 Height = 33
121 Caption = 'Extract all'
122 TabOrder = 4
123 WordWrap = True
124 OnClick = btn_extractallconvertClick
125 end
126 end
127 object list_extensions: TListBox
128 Left = 0
129 Top = 249
130 Width = 360
131 Height = 51
132 Align = alClient
133 Font.Charset = DEFAULT_CHARSET
134 Font.Color = clWindowText
135 Font.Height = -11
136 Font.Name = 'Fixedsys'
137 Font.Style = []
138 ItemHeight = 15
139 ParentFont = False
140 Sorted = True
141 TabOrder = 1
142 OnClick = list_extensionsClick
143 OnDblClick = list_extensionsClick
144 end
145 end
146 object panel_right: TPanel
147 Left = 368
148 Top = 0
149 Width = 324
150 Height = 300
151 Align = alClient
152 BevelOuter = bvNone
153 TabOrder = 1
154 object Splitter3: TSplitter
155 Left = 0
156 Top = 200
157 Width = 324
158 Height = 8
159 Cursor = crVSplit
160 Align = alTop
161 AutoSnap = False
162 Beveled = True
163 MinSize = 75
164 end
165 object edit_data: TMemo
166 Left = 0
167 Top = 0
168 Width = 324
169 Height = 200
170 Align = alTop
171 Font.Charset = DEFAULT_CHARSET
172 Font.Color = clWindowText
173 Font.Height = -13
174 Font.Name = 'Fixedsys'
175 Font.Style = []
176 ParentFont = False
177 ReadOnly = True
178 ScrollBars = ssVertical
179 TabOrder = 0
180 WordWrap = False
181 end
182 object list_names: TListBox
183 Left = 0
184 Top = 208
185 Width = 324
186 Height = 92
187 Align = alClient
188 Font.Charset = DEFAULT_CHARSET
189 Font.Color = clWindowText
190 Font.Height = -11
191 Font.Name = 'Fixedsys'
192 Font.Style = []
193 ItemHeight = 15
194 ParentFont = False
195 Sorted = True
196 TabOrder = 1
197 end
198 end
199 end
200 object panel_info: TPanel
201 Left = 0
202 Top = 0
203 Width = 742
204 Height = 100
205 Align = alTop
206 BevelOuter = bvNone
207 TabOrder = 1
208 object lbl_info: TLabel
209 Left = 2
210 Top = 26
211 Width = 345
212 Height = 73
213 AutoSize = False
214 Caption = 'lbl_info'
215 end
216 object lbl_fileinfo: TLabel
217 Left = 380
218 Top = 0
219 Width = 345
220 Height = 99
221 AutoSize = False
222 Caption = 'lbl_fileinfo'
223 end
224 object btn_load: TButton
225 Left = 0
226 Top = 0
227 Width = 81
228 Height = 25
229 Caption = 'Load dat-file'
230 TabOrder = 0
231 OnClick = btn_loadClick
232 end
233 object btn_hexcopy: TButton
234 Left = 295
235 Top = 64
236 Width = 89
237 Height = 33
238 Caption = 'Copy filedata as hex to clipboard'
239 TabOrder = 1
240 WordWrap = True
241 OnClick = btn_hexcopyClick
242 end
243 end
244 object group_progress: TGroupBox
245 Left = 160
246 Top = 384
247 Width = 297
248 Height = 57
249 Caption = 'Extracting...'
250 TabOrder = 2
251 Visible = False
252 object lbl_progress: TLabel
253 Left = 10
254 Top = 36
255 Width = 279
256 Height = 18
257 AutoSize = False
258 end
259 object progress: TProgressBar
260 Left = 8
261 Top = 16
262 Width = 217
263 Height = 17
264 Step = 1
265 TabOrder = 0
266 end
267 object btn_extractcancel: TButton
268 Left = 232
269 Top = 16
270 Width = 57
271 Height = 33
272 Caption = 'Cancel'
273 TabOrder = 1
274 OnClick = btn_extractcancelClick
275 end
276 end
277 object fopen: TOpenDialog
278 Filter = 'Oni-Dat-Files|*.dat|Oni-Sep-Files (MAC)|*.sep'
279 Left = 72
280 end
281 object menu: TMainMenu
282 AutoHotkeys = maManual
283 Left = 128
284 object menu_main: TMenuItem
285 Caption = 'Main'
286 object menu_exit: TMenuItem
287 Caption = 'Exit'
288 end
289 end
290 object menu_preview: TMenuItem
291 Caption = 'Preview Window'
292 OnClick = menu_previewClick
293 end
294 end
295end
Note: See TracBrowser for help on using the repository browser.