-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit1.dfm
4366 lines (4309 loc) · 181 KB
/
Unit1.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 = 279
Top = 181
Width = 808
Height = 661
Caption = 'Q3 Model Tool v1.6.2'
Color = clBtnFace
Constraints.MinHeight = 612
Constraints.MinWidth = 808
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Icon.Data = {
0000010002002020100000000000E80200002600000010101000000000002801
00000E0300002800000020000000400000000100040000000000800200000000
0000000000000000000000000000000000000000800000800000008080008000
0000800080008080000080808000C0C0C0000000FF0000FF000000FFFF00FF00
0000FF00FF00FFFF0000FFFFFF00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000088877778888000000000000000000877666666666667780000000000
0087666666666777766666678000000007666666778800000000887667000008
6666667800000000000000008778008666666780000000000000000000880066
6666600000000000000000000000076666668000000000000000000000000666
6668000000000000000000000000866666680000000000000000000000008666
6668000000000000000000000000076666670000000000000000000000000866
6666800000000000000000000000007666666000000000000000000000000007
6666678000000000000000000088000076666678800000000000000087700000
0876666677788800000888767800000000087666666666676666667800000000
0000088776666666667788000000000000000000008888888000000000000000
0000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFF80
003FFC000007F800FF03E00FFFF0C01FFFFCC07FFFFF807FFFFF80FFFFFF00FF
FFFF00FFFFFF80FFFFFF807FFFFFC07FFFFFE01FFFFCF007FFF1F8003E03FE00
000FFF80003FFFFC07FFFFFFFFFF280000001000000020000000010004000000
0000C00000000000000000000000000000000000000000000000000080000080
00000080800080000000800080008080000080808000C0C0C0000000FF0000FF
000000FFFF00FF000000FF00FF00FFFF0000FFFFFF0000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
8877777780000087666788877780086668000000088886668000000000007667
0000000000008667000000000000066670000000000008666800000000880008
66677777778000000887777880000000000000000000FFFF0000FFFF0000FFFF
0000FFFF0000FFFF0000F0070000C001000083F8000007FF00000FFF00000FFF
000087FF000083FC0000E0010000F8070000FFFF0000}
Menu = MainMenu
OldCreateOrder = False
Position = poScreenCenter
ShowHint = True
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnMouseWheelDown = FormMouseWheelDown
OnMouseWheelUp = FormMouseWheelUp
OnPaint = FormPaint
OnResize = FormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object gbModel: TGroupBox
Left = 0
Top = 73
Width = 800
Height = 515
Align = alClient
Caption = 'Model'
TabOrder = 0
object pcTabs: TPageControl
Left = 2
Top = 15
Width = 796
Height = 498
ActivePage = tabSurfaces
Align = alClient
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnChange = pcTabsChange
object tabGeneral: TTabSheet
Caption = 'General'
object leName: TLabeledEdit
Left = 72
Top = 200
Width = 697
Height = 21
TabStop = False
BevelInner = bvNone
BevelOuter = bvNone
Color = clBtnFace
Ctl3D = True
EditLabel.Width = 38
EditLabel.Height = 13
EditLabel.Caption = 'FilePath'
LabelPosition = lpLeft
LabelSpacing = 10
ParentCtl3D = False
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 0
end
object gbHeader: TGroupBox
Left = 0
Top = 8
Width = 785
Height = 177
Align = alCustom
Caption = 'Header'
TabOrder = 1
object leHeaderFlags: TLabeledEdit
Left = 72
Top = 96
Width = 81
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 25
EditLabel.Height = 13
EditLabel.Caption = 'Flags'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 0
end
object leHeaderIdent: TLabeledEdit
Left = 72
Top = 24
Width = 81
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 24
EditLabel.Height = 13
EditLabel.Caption = 'Ident'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 1
end
object leVersion: TLabeledEdit
Left = 72
Top = 48
Width = 81
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 35
EditLabel.Height = 13
EditLabel.Caption = 'Version'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 2
end
object leHeaderName: TLabeledEdit
Left = 72
Top = 72
Width = 697
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 28
EditLabel.Height = 13
EditLabel.Caption = 'Name'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 3
end
end
end
object tabAnimation: TTabSheet
Caption = 'Animation'
ImageIndex = 1
object Label3: TLabel
Left = 39
Top = 43
Width = 86
Height = 13
Caption = 'BoundingBox Min.'
end
object Label4: TLabel
Left = 38
Top = 68
Width = 89
Height = 13
Caption = 'BoundingBox Max.'
end
object Label5: TLabel
Left = 70
Top = 92
Width = 56
Height = 13
Caption = 'Local Origin'
end
object Label6: TLabel
Left = 13
Top = 115
Width = 115
Height = 13
Caption = 'BoundingSphere Radius'
end
object cbNamesFrames: TComboBox
Left = 136
Top = 16
Width = 281
Height = 21
Style = csDropDownList
Color = clBtnFace
ItemHeight = 13
ParentShowHint = False
ShowHint = False
TabOrder = 0
TabStop = False
OnSelect = cbNamesFramesSelect
end
object leNumFrames: TLabeledEdit
Left = 72
Top = 16
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 44
EditLabel.Height = 13
EditLabel.Caption = '# Frames'
LabelPosition = lpLeft
LabelSpacing = 10
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 1
end
object gbCopyFrames: TGroupBox
Left = 0
Top = 388
Width = 785
Height = 81
Align = alCustom
Anchors = [akLeft, akRight]
Caption = 'Copy Frames'
Color = clBtnFace
Enabled = False
ParentColor = False
TabOrder = 2
object leModelFilename: TLabeledEdit
Left = 64
Top = 40
Width = 593
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 107
EditLabel.Height = 13
EditLabel.Caption = 'From another .MD3 file'
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 1
end
object bModelFilename: TButton
Left = 664
Top = 40
Width = 89
Height = 21
Caption = 'Select .MD3'
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
end
object cbBBMinFrames: TComboBox
Left = 136
Top = 40
Width = 641
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 3
TabStop = False
OnSelect = cbBBMinFramesSelect
end
object cbBBMaxFrames: TComboBox
Left = 136
Top = 64
Width = 641
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 4
TabStop = False
OnSelect = cbBBMaxFramesSelect
end
object cbOriginFrames: TComboBox
Left = 136
Top = 88
Width = 641
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 5
TabStop = False
OnSelect = cbOriginFramesSelect
end
object cbRadiusFrames: TComboBox
Left = 136
Top = 112
Width = 281
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 6
TabStop = False
OnSelect = cbRadiusFramesSelect
end
end
object tabTags: TTabSheet
Caption = 'Tags'
ImageIndex = 2
object Label1: TLabel
Left = 97
Top = 68
Width = 27
Height = 13
Caption = 'Origin'
end
object Label2: TLabel
Left = 105
Top = 91
Width = 19
Height = 13
Caption = 'Axis'
end
object Label9: TLabel
Left = 94
Top = 43
Width = 29
Height = 13
Caption = 'Frame'
end
object leNumTags: TLabeledEdit
Left = 72
Top = 16
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 34
EditLabel.Height = 13
EditLabel.Caption = '# Tags'
LabelPosition = lpLeft
LabelSpacing = 10
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 0
end
object cbNamesTags: TComboBox
Left = 136
Top = 16
Width = 241
Height = 21
Style = csDropDownList
Color = clBtnFace
ItemHeight = 13
ParentShowHint = False
ShowHint = False
TabOrder = 1
TabStop = False
OnSelect = cbNamesTagsSelect
end
object cbTagOrigins: TComboBox
Left = 136
Top = 64
Width = 641
Height = 21
AutoComplete = False
Style = csSimple
Color = clBtnFace
ItemHeight = 13
ParentShowHint = False
ShowHint = False
TabOrder = 3
TabStop = False
OnSelect = cbTagOriginsSelect
end
object gbInsertTags: TGroupBox
Left = 0
Top = 118
Width = 785
Height = 257
Align = alCustom
Anchors = [akLeft, akRight]
Caption = 'Adding Tags'
TabOrder = 5
object leTagFilename: TLabeledEdit
Left = 64
Top = 32
Width = 545
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 89
EditLabel.Height = 13
EditLabel.Caption = 'From .tag Filename'
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 1
end
object bTagFilename: TButton
Left = 624
Top = 32
Width = 97
Height = 21
Caption = 'From .tag File...'
ParentShowHint = False
ShowHint = False
TabOrder = 2
OnClick = bTagFilenameClick
end
object gbTagManually: TGroupBox
Left = 0
Top = 64
Width = 785
Height = 193
Align = alCustom
Anchors = [akLeft, akRight]
Caption = 'Manually'
TabOrder = 0
object Label27: TLabel
Left = 24
Top = 80
Width = 27
Height = 13
Caption = 'Origin'
end
object Label28: TLabel
Left = 32
Top = 115
Width = 19
Height = 13
Caption = 'Axis'
end
object leTagOriginX: TLabeledEdit
Left = 64
Top = 76
Width = 177
Height = 21
EditLabel.Width = 7
EditLabel.Height = 13
EditLabel.Caption = 'X'
TabOrder = 1
end
object leTagOriginY: TLabeledEdit
Left = 248
Top = 76
Width = 177
Height = 21
EditLabel.Width = 7
EditLabel.Height = 13
EditLabel.Caption = 'Y'
TabOrder = 2
end
object leTagOriginZ: TLabeledEdit
Left = 432
Top = 76
Width = 177
Height = 21
EditLabel.Width = 7
EditLabel.Height = 13
EditLabel.Caption = 'Z'
TabOrder = 3
end
object bTagAddManually: TButton
Left = 626
Top = 76
Width = 95
Height = 21
Caption = 'Add'
ParentShowHint = False
ShowHint = False
TabOrder = 4
OnClick = bTagAddManuallyClick
end
object leTagName: TLabeledEdit
Left = 64
Top = 32
Width = 361
Height = 21
EditLabel.Width = 48
EditLabel.Height = 13
EditLabel.Caption = 'Tag name'
TabOrder = 0
Text = 'tag_'
end
object eTagAxis0X: TEdit
Left = 64
Top = 112
Width = 177
Height = 21
TabOrder = 5
Text = '1.0'
end
object eTagAxis0Z: TEdit
Left = 432
Top = 112
Width = 177
Height = 21
TabOrder = 7
Text = '0.0'
end
object eTagAxis0Y: TEdit
Left = 248
Top = 112
Width = 177
Height = 21
TabOrder = 6
Text = '0.0'
end
object eTagAxis1Z: TEdit
Left = 432
Top = 136
Width = 177
Height = 21
TabOrder = 10
Text = '0.0'
end
object eTagAxis1Y: TEdit
Left = 248
Top = 136
Width = 177
Height = 21
TabOrder = 9
Text = '1.0'
end
object eTagAxis1X: TEdit
Left = 64
Top = 136
Width = 177
Height = 21
TabOrder = 8
Text = '0.0'
end
object eTagAxis2Z: TEdit
Left = 432
Top = 160
Width = 177
Height = 21
TabOrder = 13
Text = '1.0'
end
object eTagAxis2Y: TEdit
Left = 248
Top = 160
Width = 177
Height = 21
TabOrder = 12
Text = '0.0'
end
object eTagAxis2X: TEdit
Left = 64
Top = 160
Width = 177
Height = 21
TabOrder = 11
Text = '0.0'
end
end
end
object cbTagAxis: TComboBox
Left = 136
Top = 88
Width = 641
Height = 21
Hint = 'Axis Vectors: (X,Y,Z)'
AutoComplete = False
Style = csSimple
Color = clBtnFace
ItemHeight = 13
ParentShowHint = False
ShowHint = True
TabOrder = 4
TabStop = False
OnSelect = cbTagAxisSelect
end
object cbTagFrameNr: TComboBox
Left = 136
Top = 40
Width = 241
Height = 21
Style = csDropDownList
Color = clBtnFace
ItemHeight = 13
TabOrder = 2
TabStop = False
OnSelect = cbTagFrameNrSelect
end
object gbTagSave: TGroupBox
Left = 0
Top = 412
Width = 785
Height = 57
Align = alCustom
Anchors = [akLeft, akRight]
Caption = 'Saving Tags'
TabOrder = 6
object bSaveTags: TButton
Left = 64
Top = 21
Width = 97
Height = 25
Caption = 'To .tag File...'
TabOrder = 0
OnClick = bSaveTagsClick
end
end
end
object tabSurfaces: TTabSheet
Caption = 'Surfaces'
ImageIndex = 3
object Shape1: TShape
Left = 96
Top = 138
Width = 1
Height = 236
end
object Shape4: TShape
Left = 96
Top = 41
Width = 1
Height = 20
end
object shapeShaderFile: TShape
Left = 147
Top = 89
Width = 1
Height = 229
end
object shapeShaderTexture: TShape
Left = 147
Top = 328
Width = 1
Height = 45
end
object shapeSkinTexture: TShape
Left = 147
Top = 199
Width = 1
Height = 174
end
object shapeSkinFile: TLabel
Left = 147
Top = 187
Width = 24
Height = 13
Caption = '____'
Transparent = True
end
object shapeShaderFileOut: TLabel
Left = 147
Top = 316
Width = 24
Height = 13
Caption = '____'
Transparent = True
end
object shapeShaderFileIn: TLabel
Left = 147
Top = 305
Width = 24
Height = 13
Caption = '____'
Transparent = True
end
object shapeTextureFile: TShape
Left = 147
Top = 89
Width = 1
Height = 284
end
object shapeSkinShader: TShape
Left = 147
Top = 199
Width = 1
Height = 119
end
object Label10: TLabel
Left = 108
Top = 393
Width = 24
Height = 13
Caption = '____'
end
object shapeSkinShaderlist: TShape
Left = 147
Top = 199
Width = 1
Height = 68
end
object shapeShaderlistIn: TLabel
Left = 147
Top = 254
Width = 24
Height = 13
Caption = '____'
Transparent = True
end
object shapeShaderlistOut: TLabel
Left = 147
Top = 265
Width = 24
Height = 13
Caption = '____'
Transparent = True
end
object shapeShaderlistShader: TShape
Left = 147
Top = 277
Width = 1
Height = 41
end
object shapeShaderlistTexture: TShape
Left = 147
Top = 277
Width = 1
Height = 96
end
object shapeShaderlist: TShape
Left = 147
Top = 89
Width = 1
Height = 178
end
object Label13: TLabel
Left = 152
Top = 152
Width = 624
Height = 13
Caption =
'----------------------------------------------------------------' +
'----------------------------------------------------------------' +
'----------------------------------------------------------------' +
'----------------'
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label18: TLabel
Left = 101
Top = 152
Width = 42
Height = 13
Caption = '--------------'
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label19: TLabel
Left = 10
Top = 152
Width = 81
Height = 13
Caption = '---------------------------'
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label20: TLabel
Left = 16
Top = 179
Width = 61
Height = 13
Caption = 'external data'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGray
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label21: TLabel
Left = 16
Top = 168
Width = 29
Height = 13
Caption = 'Model'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGray
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object shapeSurfaceShader: TShape
Left = 147
Top = 41
Width = 1
Height = 20
end
object cbNamesSurfaces: TComboBox
Left = 136
Top = 16
Width = 641
Height = 21
ItemHeight = 13
TabOrder = 0
OnChange = cbNamesSurfacesChange
OnKeyDown = cbNamesSurfacesKeyDown
OnSelect = cbNamesSurfacesSelect
end
object leNumSurfaces: TLabeledEdit
Left = 72
Top = 16
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 52
EditLabel.Height = 13
EditLabel.Caption = '# Surfaces'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 2
end
object cbNamesShaders: TComboBox
Left = 136
Top = 64
Width = 641
Height = 21
Style = csSimple
ItemHeight = 13
ParentShowHint = False
ShowHint = False
TabOrder = 1
OnKeyDown = cbNamesShadersKeyDown
end
object leNumShaders: TLabeledEdit
Left = 72
Top = 64
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 49
EditLabel.Height = 13
EditLabel.Caption = '# Shaders'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 3
end
object leNumVerts: TLabeledEdit
Left = 72
Top = 88
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 34
EditLabel.Height = 13
EditLabel.Caption = '# Verts'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 4
end
object leNumTriangles: TLabeledEdit
Left = 72
Top = 112
Width = 57
Height = 21
TabStop = False
Color = clBtnFace
EditLabel.Width = 53
EditLabel.Height = 13
EditLabel.Caption = '# Triangles'
LabelPosition = lpLeft
LabelSpacing = 10
ReadOnly = True
TabOrder = 5
end
object gbOGLtris: TGroupBox
Left = 8
Top = 357
Width = 97
Height = 110
Caption = 'Texture Preview'
Color = 14933984
ParentColor = False
TabOrder = 6
object img3DView: TImage
Left = 2
Top = 15
Width = 93
Height = 93
Align = alClient
AutoSize = True
Center = True
Picture.Data = {
055449636F6E0000010002002020100000000000E80200002600000010101000
00000000280100000E0300002800000020000000400000000100040000000000
8002000000000000000000000000000000000000000000000000800000800000
0080800080000000800080008080000080808000C0C0C0000000FF0000FF0000
00FFFF00FF000000FF00FF00FFFF0000FFFFFF00000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000088877778888000000000000000000877666666666667
7800000000000087666666666777766666678000000007666666778800000000
8876670000086666667800000000000000008778008666666780000000000000
0000008800666666600000000000000000000000076666668000000000000000
0000000006666668000000000000000000000000866666680000000000000000
0000000086666668000000000000000000000000076666670000000000000000
0000000008666666800000000000000000000000007666666000000000000000
0000000000076666678000000000000000000088000076666678800000000000
0000877000000876666677788800000888767800000000087666666666676666
6678000000000000088776666666667788000000000000000000008888888000
0000000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFF001FFFF80003FFC000007F800FF03E00FFFF0C01FFFFCC07FFFFF807FFFFF
80FFFFFF00FFFFFF00FFFFFF80FFFFFF807FFFFFC07FFFFFE01FFFFCF007FFF1
F8003E03FE00000FFF80003FFFFC07FFFFFFFFFF280000001000000020000000
0100040000000000C00000000000000000000000000000000000000000000000
00008000008000000080800080000000800080008080000080808000C0C0C000
0000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF0000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000008877777780000087666788877780086668000000088886668000
0000000076670000000000008667000000000000066670000000000008666800
00000088000866677777778000000887777880000000000000000000FFFF0000
FFFF0000FFFF0000FFFF0000FFFF0000F0070000C001000083F8000007FF0000
0FFF00000FFF000087FF000083FC0000E0010000F8070000FFFF0000}
Proportional = True
end
end
object gbShaderFile: TGroupBox
Left = 176
Top = 296
Width = 601
Height = 81
Caption = 'Shader File'
TabOrder = 7
object Label14: TLabel
Left = 13
Top = 25
Width = 42
Height = 13
Caption = 'Filename'
end
object Label11: TLabel
Left = 21
Top = 52
Width = 34
Height = 13
Alignment = taRightJustify
Caption = 'Shader'
end
object cbShaderFile: TComboBox
Left = 64
Top = 20
Width = 521
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 0
TabStop = False
end
object cbShaderNameFound: TComboBox
Left = 64
Top = 48
Width = 521
Height = 21
Style = csSimple
Color = clBtnFace
ItemHeight = 13
TabOrder = 1
TabStop = False
end
end