-
Notifications
You must be signed in to change notification settings - Fork 0
/
LBAPackEd1.dfm
2965 lines (2965 loc) · 151 KB
/
LBAPackEd1.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object Form1: TForm1
Left = 218
Top = 108
Width = 626
Height = 477
ActiveControl = Panel1
Caption = 'LBA Package Editor'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
Menu = mMain
OldCreateOrder = False
Position = poScreenCenter
Scaled = False
OnClose = FormClose
OnCreate = FormCreate
OnResize = FormResize
DesignSize = (
618
431)
PixelsPerInch = 96
TextHeight = 16
object Status1: TStatusBar
Left = 0
Top = 409
Width = 618
Height = 22
Panels = <
item
Width = 120
end
item
Width = 50
end>
end
object Panel1: TPanel
Left = 0
Top = 26
Width = 618
Height = 57
Anchors = [akLeft, akTop, akRight]
BevelOuter = bvLowered
TabOrder = 1
DesignSize = (
618
57)
object InLabel: TLabel
Left = 120
Top = 4
Width = 490
Height = 16
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Caption = '>>> not specified <<<'
ParentShowHint = False
ShowHint = True
end
object OutLabel: TLabel
Left = 120
Top = 38
Width = 490
Height = 16
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Caption = '>>> not specified <<<'
ParentShowHint = False
ShowHint = True
end
object Label2: TLabel
Left = 6
Top = 4
Width = 92
Height = 16
Caption = 'Package file:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label3: TLabel
Left = 6
Top = 38
Width = 74
Height = 16
Caption = 'Output file:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object lb_filedesc: TLabel
Left = 120
Top = 21
Width = 490
Height = 16
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Caption = '...'
ParentShowHint = False
ShowHint = True
end
object Label6: TLabel
Left = 6
Top = 21
Width = 112
Height = 16
Caption = 'File description:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object bChangeIn: TButton
Left = 100
Top = 4
Width = 17
Height = 17
Action = aOpenPack
Caption = '...'
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object bChangeOut: TButton
Left = 100
Top = 37
Width = 17
Height = 17
Action = aSelectOut
Caption = '...'
TabOrder = 1
end
object bSame: TBitBtn
Left = 81
Top = 37
Width = 17
Height = 17
Hint = 'Same as input file (copy path)'
Enabled = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = bSameClick
Glyph.Data = {
C6040000424DC60400000000000036040000280000000B0000000C0000000100
0800000000009000000074120000741200000001000000000000000000004000
000080000000FF000000002000004020000080200000FF200000004000004040
000080400000FF400000006000004060000080600000FF600000008000004080
000080800000FF80000000A0000040A0000080A00000FFA0000000C0000040C0
000080C00000FFC0000000FF000040FF000080FF0000FFFF0000000020004000
200080002000FF002000002020004020200080202000FF202000004020004040
200080402000FF402000006020004060200080602000FF602000008020004080
200080802000FF80200000A0200040A0200080A02000FFA0200000C0200040C0
200080C02000FFC0200000FF200040FF200080FF2000FFFF2000000040004000
400080004000FF004000002040004020400080204000FF204000004040004040
400080404000FF404000006040004060400080604000FF604000008040004080
400080804000FF80400000A0400040A0400080A04000FFA0400000C0400040C0
400080C04000FFC0400000FF400040FF400080FF4000FFFF4000000060004000
600080006000FF006000002060004020600080206000FF206000004060004040
600080406000FF406000006060004060600080606000FF606000008060004080
600080806000FF80600000A0600040A0600080A06000FFA0600000C0600040C0
600080C06000FFC0600000FF600040FF600080FF6000FFFF6000000080004000
800080008000FF008000002080004020800080208000FF208000004080004040
800080408000FF408000006080004060800080608000FF608000008080004080
800080808000FF80800000A0800040A0800080A08000FFA0800000C0800040C0
800080C08000FFC0800000FF800040FF800080FF8000FFFF80000000A0004000
A0008000A000FF00A0000020A0004020A0008020A000FF20A0000040A0004040
A0008040A000FF40A0000060A0004060A0008060A000FF60A0000080A0004080
A0008080A000FF80A00000A0A00040A0A00080A0A000FFA0A00000C0A00040C0
A00080C0A000FFC0A00000FFA00040FFA00080FFA000FFFFA0000000C0004000
C0008000C000FF00C0000020C0004020C0008020C000FF20C0000040C0004040
C0008040C000FF40C0000060C0004060C0008060C000FF60C0000080C0004080
C0008080C000FF80C00000A0C00040A0C00080A0C000FFA0C00000C0C00040C0
C00080C0C000FFC0C00000FFC00040FFC00080FFC000FFFFC0000000FF004000
FF008000FF00FF00FF000020FF004020FF008020FF00FF20FF000040FF004040
FF008040FF00FF40FF000060FF004060FF008060FF00FF60FF000080FF004080
FF008080FF00FF80FF0000A0FF0040A0FF0080A0FF00FFA0FF0000C0FF0040C0
FF0080C0FF00FFC0FF0000FFFF0040FFFF0080FFFF00FFFFFF00E3E3E3E3E3E3
E3E3E3E3E300E3E3E3E3E3E3E3E3E3E3E300E3E3E3E3E300E3E3E3E3E300E3E3
E3E3001C00E3E3E3E300E3E3E3001C1C1C00E3E3E300E3E3001C1C1C1C1C00E3
E300E300FCFCFC1C1C1C1C00E30000000000FC1C1C0000000000E3E3E300FC1C
1C00E3E3E300E3E3E300FCFCFC00E3E3E300E3E3E30000000000E3E3E300E3E3
E3E3E3E3E3E3E3E3E300}
end
end
object Panel2: TPanel
Left = 0
Top = 104
Width = 617
Height = 304
Anchors = [akLeft, akTop, akRight, akBottom]
BevelOuter = bvNone
TabOrder = 3
DesignSize = (
617
304)
object Shape1: TShape
Left = 0
Top = 0
Width = 617
Height = 304
Anchors = [akLeft, akTop, akRight, akBottom]
Brush.Color = clSkyBlue
Brush.Style = bsDiagCross
Pen.Color = clWhite
Shape = stRoundRect
end
object Label1: TLabel
Left = 8
Top = 22
Width = 601
Height = 22
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption = '>>> NO PACKAGE FILE LOADED<<<'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Transparent = True
Layout = tlBottom
end
object Label11: TLabel
Left = 8
Top = 51
Width = 601
Height = 69
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption =
'Please click <Load package file> or <Open project> in the <File>' +
' menu'#13'(or just drag a file from Windows Explorer and drop it her' +
'e)'#13'After that you can simply drag files from Windows Explorer an' +
'd drop them on the list.'
Transparent = True
end
object Label4: TLabel
Left = 8
Top = 132
Width = 601
Height = 23
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption = 'LBA Package Editor'
Font.Charset = DEFAULT_CHARSET
Font.Color = clTeal
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Transparent = True
end
object Label7: TLabel
Left = 8
Top = 165
Width = 601
Height = 19
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption = 'Version: XXX'
Transparent = True
end
object Label8: TLabel
Left = 8
Top = 181
Width = 601
Height = 19
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption = 'by Zink'
Transparent = True
end
object Label9: TLabel
Left = 32
Top = 214
Width = 553
Height = 47
Alignment = taCenter
Anchors = [akLeft, akRight]
AutoSize = False
Caption =
'LBA Package Editor comes with ABSOLUTELY NO WARRANTY; for detail' +
's see License.txt. This is free software, and you are welcome to' +
' redistribute it under certain conditions; see License.txt for d' +
'etails.'
Transparent = True
WordWrap = True
end
end
object FileList: TStringGrid
Left = 0
Top = 103
Width = 618
Height = 306
Hint = 'Some hint used to enable hint showing'
Anchors = [akLeft, akTop, akRight, akBottom]
ColCount = 9
Ctl3D = True
DefaultRowHeight = 16
FixedCols = 0
RowCount = 2
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goRowSelect, goThumbTracking]
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
Visible = False
OnDblClick = FileListDblClick
OnDragDrop = FileListDragDrop
OnDragOver = FileListDragOver
OnDrawCell = FileListDrawCell
OnEndDrag = FileListEndDrag
OnKeyDown = FileListKeyDown
OnMouseDown = FileListMouseDown
OnMouseMove = FileListMouseMove
OnMouseUp = FileListMouseUp
OnSelectCell = FileListSelectCell
OnStartDrag = FileListStartDrag
ColWidths = (
40
53
62
52
12
48
24
160
139)
end
object InfAll: TStaticText
Left = 0
Top = 83
Width = 200
Height = 18
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Total number of entries:'
TabOrder = 4
end
object InfReal: TStaticText
Left = 200
Top = 83
Width = 103
Height = 18
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Normal:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 5
end
object InfHidden: TStaticText
Left = 303
Top = 83
Width = 97
Height = 18
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Hidden:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clOlive
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 6
end
object InfRep: TStaticText
Left = 400
Top = 83
Width = 120
Height = 18
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Repeated:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 7
end
object InfBlank: TStaticText
Left = 520
Top = 83
Width = 97
Height = 18
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Blank:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 8
end
object ToolBar1: TToolBar
Left = 0
Top = 0
Width = 618
Height = 26
ButtonHeight = 24
ButtonWidth = 24
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
EdgeInner = esNone
Flat = True
HideClippedButtons = True
Images = Images
Indent = 1
TabOrder = 9
Transparent = False
Wrapable = False
object tbLoadInput: TToolButton
Left = 1
Top = 0
Action = aOpenPack
ParentShowHint = False
ShowHint = True
end
object ToolButton11: TToolButton
Left = 25
Top = 0
Action = aReload
end
object tbUnloadPack: TToolButton
Left = 49
Top = 0
Action = aUnloadPack
ParentShowHint = False
ShowHint = True
end
object ToolButton1: TToolButton
Left = 73
Top = 0
Width = 10
ImageIndex = 1
Style = tbsSeparator
end
object tbOpenProject: TToolButton
Left = 83
Top = 0
Action = aOpenProject
ParentShowHint = False
ShowHint = True
end
object tbSaveProject: TToolButton
Left = 107
Top = 0
Action = aSaveProject
ParentShowHint = False
ShowHint = True
end
object ToolButton2: TToolButton
Left = 131
Top = 0
Width = 8
Caption = 'ToolButton2'
ImageIndex = 1
Style = tbsSeparator
end
object tbDispAll: TToolButton
Left = 139
Top = 0
Action = aBlank
ParentShowHint = False
ShowHint = True
Style = tbsCheck
end
object tbDispRH: TToolButton
Left = 163
Top = 0
Action = aCompact
ParentShowHint = False
ShowHint = True
Style = tbsCheck
end
object ToolButton3: TToolButton
Left = 187
Top = 0
Width = 8
Caption = 'ToolButton3'
ImageIndex = 9
Style = tbsSeparator
end
object tbSettings: TToolButton
Left = 195
Top = 0
Action = aSettings
ParentShowHint = False
ShowHint = True
end
object ToolButton5: TToolButton
Left = 219
Top = 0
Width = 8
Caption = 'ToolButton5'
ImageIndex = 4
Style = tbsSeparator
end
object tbReplace: TToolButton
Left = 227
Top = 0
Action = aReplace
ParentShowHint = False
ShowHint = True
end
object tbClear: TToolButton
Left = 251
Top = 0
Action = aClear
ParentShowHint = False
ShowHint = True
end
object ToolButton8: TToolButton
Left = 275
Top = 0
Width = 8
Caption = 'ToolButton8'
ImageIndex = 13
Style = tbsSeparator
end
object tbClearAll: TToolButton
Left = 283
Top = 0
Action = aClearAll
ParentShowHint = False
ShowHint = True
end
object ToolButton6: TToolButton
Left = 307
Top = 0
Width = 8
Caption = 'ToolButton6'
ImageIndex = 12
Style = tbsSeparator
end
object tbExtract: TToolButton
Left = 315
Top = 0
Action = aExtract
ParentShowHint = False
ShowHint = True
end
object ToolButton7: TToolButton
Left = 339
Top = 0
Action = aExtractPart
ParentShowHint = False
ShowHint = True
end
object ToolButton9: TToolButton
Left = 363
Top = 0
Width = 8
Caption = 'ToolButton9'
ImageIndex = 15
Style = tbsSeparator
end
object tbChangeOut: TToolButton
Left = 371
Top = 0
Action = aSelectOut
ParentShowHint = False
ShowHint = True
end
object tbBuild: TToolButton
Left = 395
Top = 0
Action = aBuild
ParentShowHint = False
ShowHint = True
end
object ToolButton10: TToolButton
Left = 419
Top = 0
Width = 8
Caption = 'ToolButton10'
ImageIndex = 31
Style = tbsSeparator
end
object Label5: TLabel
Left = 427
Top = 0
Width = 118
Height = 24
AutoSize = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Layout = tlCenter
end
end
object Edit1: TEdit
Left = 480
Top = 224
Width = 121
Height = 16
AutoSize = False
BevelInner = bvNone
Ctl3D = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentCtl3D = False
ParentFont = False
TabOrder = 10
Text = 'Edit1'
Visible = False
OnExit = Edit1Exit
OnKeyPress = Edit1KeyPress
end
object dOpenPack: TOpenDialog
Filter =
'All LBA packages|*.hqr;*.ile;*.obl;*.vox|HQR packages|*.hqr|ILE ' +
'packages|*.ile|OBL packages|*.obl|VOX packages|*.vox'
Options = [ofReadOnly, ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Title = 'Specify package file'
Left = 480
Top = 136
end
object dSavePack: TSaveDialog
DefaultExt = 'hqr'
Filter =
'HQR package|*.hqr|ILE package|*.ile|OBL package|*.obl|VOX packag' +
'e|*.vox'
Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
Title = 'Specify output file'
Left = 512
Top = 136
end
object dSaveProject: TSaveDialog
DefaultExt = 'lpp'
Filter = 'LBA Package Editor project (*.lpp)|*.lpp'
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
Title = 'Save project'
Left = 512
Top = 104
end
object dOpenProject: TOpenDialog
DefaultExt = '*.lpp'
Filter =
'All supported files (*.lpp, *.hms)|*.lpp; *.hms|LBA Package Edit' +
'or project (*.lpp)|*.lpp|HQR manager script file (*.hms)|*.hms'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Title = 'Open project'
Left = 480
Top = 104
end
object dOpenReplace: TOpenDialog
Filter =
'All extracted formats|*.lim;*.pal;*.lbt;*.lsp;*.lsr;*.lm1;*.lm2;' +
'*.wav;*.voc;*.smk;*.xmi;*.ldc;*.lun;*.ls1;*.ls2;*.lsh;*.brk;*.bl' +
'1;*.bl2;*.gr1;*.gr2;*.pcx|LBA images (*.lim)|*.lim|Palette files' +
' (*.pal)|*.pal|LBA text files (*.lbt)|*.lbt|LBA sprites (*.lsp)|' +
'*.lsp|LBA Raw sprites (*.lsr)|*.lsr|LBA 3D models (*.lm1, *.lm2)' +
'|*.lm1;*.lm2|LBA font files (*.lfn)|*.lfn|Riff wave files (*.wav' +
')|*.wav|Creative voice files (*.voc)|*.voc|Smacker movies (*.smk' +
')|*.smk|XMidi files(*.xmi)|*.xmi|LBA animations (*.anm)|*.anm|Gr' +
'aphics images (*.gif)|*.gif|LBA shape files (*.lsh)|*.lsh|LBA sc' +
'enes (*.ls1, *.ls2)|*.ls1;*.ls2|LBA brick files (*.brk)|*.brk|LB' +
'A layouts libraries (*.bl1, *.bl2)|*.bl1;*.bl2|LBA grid files (*' +
'.gr1, *.gr2)|*.gr1;*.gr2|LBA grid fragments (*.grf)|*.grf|ZSoft ' +
'paintbrush (*.pcx)|*.pcx|Unknown files (*.ldc, *.lun)|*.ldc;*.lu' +
'n|All files (*.*)|*.*'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
Title = 'Specify files to replace selected entries with'
Left = 480
Top = 168
end
object dSaveEntry: TSaveDialog
DefaultExt = 'lun'
Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
Title = 'Extract selected entry as file'
Left = 512
Top = 168
end
object Images: TImageList
AllocBy = 100
ShareImages = True
Left = 448
Top = 104
Bitmap = {
494C01012C003100040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
000000000000360000002800000040000000D0000000010020000000000000D0
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FF000000FF000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FF000000FF000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FF000000FF000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00000000000000000000000000000000000000
00000000000000000000FF000000FF0000000000000000000000FF000000FF00
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000FF000000FF0000000000000000000000FF000000FF00