source: oup/releases/0.15a/Unit1_main.dfm@ 197

Last change on this file since 197 was 21, checked in by alloc, 18 years ago
File size: 6.2 KB
RevLine 
[21]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 = 582
9 ClientWidth = 692
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 end
39 object panel_left: TPanel
40 Left = 0
41 Top = 0
42 Width = 360
43 Height = 300
44 Cursor = crDrag
45 Align = alLeft
46 BevelOuter = bvNone
47 TabOrder = 0
48 object Splitter1: TSplitter
49 Left = 0
50 Top = 241
51 Width = 360
52 Height = 8
53 Cursor = crVSplit
54 Align = alTop
55 AutoSnap = False
56 Beveled = True
57 MinSize = 75
58 OnMoved = Splitter1Moved
59 end
60 object panel_files: TPanel
61 Left = 0
62 Top = 0
63 Width = 360
64 Height = 241
65 Align = alTop
66 BevelOuter = bvNone
67 TabOrder = 0
68 object btn_extractconvert: TButton
69 Left = 1
70 Top = 220
71 Width = 358
72 Height = 20
73 Caption = 'Convert and extract file'
74 Enabled = False
75 TabOrder = 0
76 WordWrap = True
77 OnClick = btn_extractconvertClick
78 end
79 object list_files: TListBox
80 Left = 0
81 Top = 0
82 Width = 360
83 Height = 218
84 Align = alTop
85 Font.Charset = DEFAULT_CHARSET
86 Font.Color = clWindowText
87 Font.Height = -11
88 Font.Name = 'Fixedsys'
89 Font.Style = []
90 ItemHeight = 15
91 ParentFont = False
92 TabOrder = 1
93 OnClick = list_filesDblClick
94 OnDblClick = list_filesDblClick
95 end
96 end
97 object list_extensions: TListBox
98 Left = 0
99 Top = 249
100 Width = 360
101 Height = 51
102 Align = alClient
103 Font.Charset = DEFAULT_CHARSET
104 Font.Color = clWindowText
105 Font.Height = -11
106 Font.Name = 'Fixedsys'
107 Font.Style = []
108 ItemHeight = 15
109 ParentFont = False
110 Sorted = True
111 TabOrder = 1
112 OnClick = list_extensionsClick
113 OnDblClick = list_extensionsClick
114 end
115 end
116 object panel_file: TPanel
117 Left = 368
118 Top = 0
119 Width = 324
120 Height = 300
121 Align = alClient
122 BevelOuter = bvNone
123 TabOrder = 1
124 object lbl_fileinfo: TLabel
125 Left = 0
126 Top = 0
127 Width = 324
128 Height = 49
129 Align = alTop
130 AutoSize = False
131 end
132 object edit_data: TMemo
133 Left = 0
134 Top = 49
135 Width = 324
136 Height = 251
137 Align = alClient
138 Font.Charset = DEFAULT_CHARSET
139 Font.Color = clWindowText
140 Font.Height = -13
141 Font.Name = 'Fixedsys'
142 Font.Style = []
143 ParentFont = False
144 ReadOnly = True
145 ScrollBars = ssVertical
146 TabOrder = 0
147 WordWrap = False
148 end
149 end
150 end
151 object group_progress: TGroupBox
152 Left = 296
153 Top = 480
154 Width = 297
155 Height = 57
156 Caption = 'Extracting...'
157 TabOrder = 1
158 Visible = False
159 object lbl_progress: TLabel
160 Left = 10
161 Top = 36
162 Width = 279
163 Height = 18
164 AutoSize = False
165 end
166 object progress: TProgressBar
167 Left = 8
168 Top = 16
169 Width = 217
170 Height = 17
171 Step = 1
172 TabOrder = 0
173 end
174 object btn_extractcancel: TButton
175 Left = 232
176 Top = 16
177 Width = 57
178 Height = 33
179 Caption = 'Cancel'
180 TabOrder = 1
181 OnClick = btn_extractcancelClick
182 end
183 end
184 object statbar: TStatusBar
185 Left = 0
186 Top = 565
187 Width = 692
188 Height = 17
189 BiDiMode = bdLeftToRight
190 Panels = <
191 item
192 Text = 'Current .dat: -'
193 Width = 500
194 end
195 item
196 Text = 'Files: -'
197 Width = 90
198 end
199 item
200 Text = 'Extensions: -'
201 Width = 100
202 end>
203 ParentBiDiMode = False
204 end
205 object fopen: TOpenDialog
206 Filter = 'Oni-Dat-Files|*.dat|Oni-Sep-Files (MAC)|*.sep'
207 Left = 64
208 Top = 120
209 end
210 object menu: TMainMenu
211 AutoHotkeys = maManual
212 Left = 224
213 object menu_main: TMenuItem
214 Caption = '&Main'
215 object menu_loaddat: TMenuItem
216 Caption = '&Select .dat-file ...'
217 OnClick = menu_loaddatClick
218 end
219 object menu_sep1: TMenuItem
220 Caption = '-'
221 end
222 object menu_exit: TMenuItem
223 Caption = '&Exit'
224 OnClick = menu_exitClick
225 end
226 end
227 object menu_extract: TMenuItem
228 Caption = '&Extract/Convert'
229 Enabled = False
230 object menu_extractfile: TMenuItem
231 Caption = 'Convert and extract current &file'
232 OnClick = menu_extractfileClick
233 end
234 object menu_extractlist: TMenuItem
235 Caption = 'Convert and extract all files currently in &list'
236 OnClick = menu_extractlistClick
237 end
238 object menu_extractall: TMenuItem
239 Caption = 'Convert and extract &all files'
240 OnClick = menu_extractallClick
241 end
242 end
243 object menu_tools: TMenuItem
244 Caption = '&Tools'
245 Enabled = False
246 object menu_preview: TMenuItem
247 Caption = '&Preview Window ...'
248 OnClick = menu_previewClick
249 end
250 object menu_binedit: TMenuItem
251 Caption = '&Binary .dat editor ...'
252 Enabled = False
253 OnClick = menu_bineditClick
254 end
255 object menu_txmpreplace: TMenuItem
256 Caption = '&TXMP replacer ...'
257 OnClick = menu_txmpreplaceClick
258 end
259 end
260 end
261end
Note: See TracBrowser for help on using the repository browser.