-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.dfm
3369 lines (3369 loc) · 87.4 KB
/
Main.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 FormMain: TFormMain
Left = 315
Top = 324
Width = 725
Height = 453
HelpContext = 1000
Caption = 'eXtendable Wad Editor'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
OnActivate = FormActivate
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 13
object BrowserSplitter: TSplitter
Left = 217
Top = 0
Width = 6
Height = 341
Cursor = crHSplit
AutoSnap = False
ResizeStyle = rsLine
OnMoved = BrowserSplitterMoved
end
object Label1: TLabel
Left = 8
Top = 8
Width = 16
Height = 13
AutoSize = False
Caption = 'R:'
end
object Label20: TLabel
Left = 8
Top = 32
Width = 16
Height = 13
AutoSize = False
Caption = 'G:'
end
object Label21: TLabel
Left = 8
Top = 56
Width = 16
Height = 13
AutoSize = False
Caption = 'B:'
end
object PanelGrid: TPanel
Left = 264
Top = 40
Width = 297
Height = 257
BorderWidth = 6
TabOrder = 5
Visible = False
object GridEditorTotal: TLabel
Left = 8
Top = 235
Width = 145
Height = 13
Anchors = [akLeft, akBottom]
AutoSize = False
Caption = '...'
end
object GridMain: TStringGrid
Left = 8
Top = 32
Width = 279
Height = 201
Anchors = [akLeft, akTop, akRight, akBottom]
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goAlwaysShowEditor]
TabOrder = 0
OnKeyDown = GridMainKeyDown
OnKeyPress = GridMainKeyPress
OnSelectCell = GridMainSelectCell
RowHeights = (
24
24
24
23
24)
end
object GridEditHeader: TEdit
Left = 8
Top = 8
Width = 169
Height = 21
TabOrder = 1
end
end
object PanelTextScreen: TPanel
Left = 328
Top = 104
Width = 297
Height = 257
TabOrder = 3
Visible = False
object ImageTextScreen: TImage
Left = 8
Top = 64
Width = 281
Height = 185
Anchors = [akLeft, akTop, akRight, akBottom]
OnMouseDown = ImageTextScreenMouseDown
OnMouseMove = ImageTextScreenMouseMove
end
object ImageTextScreenColors: TImage
Left = 8
Top = 32
Width = 281
Height = 25
Anchors = [akLeft, akTop, akRight]
OnMouseDown = ImageTextScreenColorsMouseDown
end
object chkTextScreenGrid: TCheckBox
Left = 8
Top = 8
Width = 49
Height = 17
Caption = '&Grid'
TabOrder = 0
OnClick = chkTextScreenGridClick
end
object TextScreenEdit: TEdit
Left = 64
Top = 6
Width = 81
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
OnKeyDown = TextScreenEditKeyDown
OnKeyPress = TextScreenEditKeyPress
end
end
object PanelBrowse: TPanel
Left = 0
Top = 0
Width = 217
Height = 341
Align = alLeft
DockSite = True
TabOrder = 0
object LabelQuickFind: TLabel
Left = 8
Top = 8
Width = 50
Height = 13
Caption = '&QuickFind:'
FocusControl = EditQuickFind
end
object EditQuickFind: TEdit
Left = 8
Top = 24
Width = 200
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = EditQuickFindChange
OnKeyDown = EditQuickFindKeyDown
OnKeyPress = EditQuickFindKeyPress
end
object ListWad: TListView
Left = 8
Top = 48
Width = 200
Height = 303
Anchors = [akLeft, akTop, akRight, akBottom]
Columns = <>
ReadOnly = True
PopupMenu = PopupListWad
SmallImages = ilEntryType
TabOrder = 0
OnColumnClick = ListWadColumnClick
OnCustomDrawItem = ListWadCustomDrawItem
OnDblClick = ListWadDblClick
OnDragDrop = ListWadDragDrop
OnDragOver = ListWadDragOver
OnKeyDown = ListWadKeyDown
OnKeyPress = ListWadKeyPress
OnMouseDown = ListWadMouseDown
OnMouseUp = ListWadMouseUp
OnSelectItem = ListWadSelectItem
end
object chkBrowsePanel: TCheckBox
Left = 195
Top = 7
Width = 16
Height = 17
Anchors = [akTop, akRight]
Checked = True
State = cbChecked
TabOrder = 2
OnClick = chkBrowsePanelClick
end
end
object StatusBrowse: TStatusBar
Left = 0
Top = 341
Width = 717
Height = 19
Panels = <>
SimplePanel = False
SizeGrip = False
end
object PanelPatchNames: TPanel
Left = 288
Top = 64
Width = 297
Height = 257
BorderWidth = 6
TabOrder = 8
Visible = False
object PatchNamesList: TMemo
Left = 7
Top = 32
Width = 283
Height = 218
Align = alBottom
Anchors = [akLeft, akTop, akRight, akBottom]
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Fixedsys'
Font.Style = []
ParentFont = False
ScrollBars = ssVertical
TabOrder = 0
OnChange = PatchNamesListChange
end
object PatchNamesCount: TEdit
Left = 8
Top = 8
Width = 281
Height = 21
TabOrder = 1
end
end
object PanelColorMap: TPanel
Left = 320
Top = 248
Width = 169
Height = 105
BorderWidth = 6
TabOrder = 13
Visible = False
object ImageColorMap: TImage
Left = 7
Top = 7
Width = 155
Height = 91
Align = alClient
end
end
object PanelMus: TPanel
Left = 296
Top = 72
Width = 297
Height = 257
BorderWidth = 6
TabOrder = 10
Visible = False
object MusSplitter: TSplitter
Left = 7
Top = 89
Width = 283
Height = 6
Cursor = crVSplit
Align = alTop
end
object PanelMus1: TPanel
Left = 7
Top = 7
Width = 283
Height = 82
Align = alTop
BevelOuter = bvLowered
BorderWidth = 4
TabOrder = 0
object MusMemoIns: TMemo
Left = 5
Top = 5
Width = 273
Height = 72
Align = alClient
Lines.Strings = (
'MusMemoIns')
ScrollBars = ssBoth
TabOrder = 0
end
object mpMusic: TMediaPlayer
Left = 16
Top = 16
Width = 253
Height = 30
Visible = False
TabOrder = 1
OnNotify = mpMusicNotify
end
end
object PanelMus2: TPanel
Left = 7
Top = 95
Width = 283
Height = 155
Align = alClient
BevelOuter = bvLowered
BorderWidth = 4
TabOrder = 1
object MusGrid: TStringGrid
Left = 5
Top = 5
Width = 273
Height = 145
Align = alClient
ColCount = 3
DefaultRowHeight = 18
FixedCols = 0
RowCount = 4
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing]
TabOrder = 0
end
end
end
object tbFilter: TToolBar
Left = 0
Top = 360
Width = 717
Height = 29
Align = alBottom
ButtonHeight = 21
ButtonWidth = 50
EdgeBorders = [ebTop, ebBottom]
ShowCaptions = True
TabOrder = 14
object tbFilterAll: TToolButton
Left = 0
Top = 2
Caption = 'All'
ImageIndex = 0
OnClick = tbFilterAllClick
end
object tbFilterLumps: TToolButton
Left = 50
Top = 2
Hint = ' '
Caption = 'Lumps'
ImageIndex = 8
OnClick = tbFilterClick
end
object tbFilterGfx: TToolButton
Left = 100
Top = 2
Hint = 'GFX'
Caption = 'Gfx'
ImageIndex = 8
OnClick = tbFilterClick
end
object tbFilterSprites: TToolButton
Left = 150
Top = 2
Hint = 'SPRITE'
Caption = 'Sprites'
ImageIndex = 1
OnClick = tbFilterClick
end
object tbFilterSounds: TToolButton
Left = 200
Top = 2
Hint = 'WAVESOUND'
Caption = 'Sounds'
ImageIndex = 2
OnClick = tbFilterClick
end
object tbFilterMusic: TToolButton
Left = 250
Top = 2
Hint = 'MUS'
Caption = 'Music'
ImageIndex = 3
OnClick = tbFilterClick
end
object tbFilterMaps: TToolButton
Left = 300
Top = 2
Hint = 'MAP'
Caption = 'Maps'
ImageIndex = 4
OnClick = tbFilterClick
end
object tbFilterTextures: TToolButton
Left = 350
Top = 2
Hint = 'TEXTURE'
Caption = 'Textures'
ImageIndex = 5
OnClick = tbFilterClick
end
object tbFilterPatches: TToolButton
Left = 400
Top = 2
Hint = 'PATCH'
Caption = 'Patches'
ImageIndex = 6
OnClick = tbFilterClick
end
object tbFilterFloors: TToolButton
Left = 450
Top = 2
Hint = 'FLOOR'
Caption = 'Floors'
ImageIndex = 7
OnClick = tbFilterClick
end
end
object PanelWave: TPanel
Left = 280
Top = 56
Width = 297
Height = 257
BorderWidth = 6
TabOrder = 7
Visible = False
object PanelWaveImage: TImage
Left = 8
Top = 32
Width = 279
Height = 193
Anchors = [akLeft, akTop, akRight, akBottom]
OnMouseDown = PanelWaveImageMouseDown
OnMouseMove = PanelWaveImageMouseMove
OnMouseUp = PanelWaveImageMouseUp
end
object PanelWaveZoom: TLabel
Left = 40
Top = 11
Width = 30
Height = 13
AutoSize = False
Caption = 'Zoom:'
end
object WaveLabelSampleRate: TLabel
Left = 176
Top = 11
Width = 70
Height = 13
AutoSize = False
Caption = 'Sample Rate:'
end
object PanelWaveUpDownZoom: TUpDown
Left = 137
Top = 8
Width = 34
Height = 21
Associate = PanelWaveEditZoom
Min = 1
Orientation = udHorizontal
Position = 10
TabOrder = 2
Wrap = False
OnClick = PanelWaveUpDownZoomClick
end
object PanelWaveEditZoom: TComboBox
Left = 72
Top = 8
Width = 65
Height = 21
ItemHeight = 13
TabOrder = 1
Text = '10'
end
object WaveScroll: TScrollBar
Left = 8
Top = 232
Width = 281
Height = 16
Anchors = [akLeft, akRight, akBottom]
PageSize = 0
TabOrder = 4
OnChange = WaveScrollChange
end
object WaveEditSampleRate: TEdit
Left = 248
Top = 8
Width = 58
Height = 21
TabOrder = 3
OnChange = WaveEditSampleRateChange
end
object WaveEdit: TEdit
Left = 8
Top = 8
Width = 24
Height = 21
TabOrder = 0
OnKeyDown = WaveEditKeyDown
OnKeyPress = WaveEditKeyPress
end
end
object PanelMap: TPanel
Left = 256
Top = 0
Width = 570
Height = 305
BorderWidth = 6
TabOrder = 9
Visible = False
object ImageMap: TImage
Left = 7
Top = 7
Width = 474
Height = 193
Align = alClient
IncrementalDisplay = True
PopupMenu = PopupMap
OnMouseDown = ImageMapMouseDown
OnMouseMove = ImageMapMouseMove
OnMouseUp = ImageMapMouseUp
end
object EditMapZoom: TEdit
Left = 2
Top = 2
Width = 30
Height = 16
AutoSize = False
TabOrder = 0
OnKeyDown = EditMapZoomKeyDown
OnKeyPress = EditMapZoomKeyPress
OnKeyUp = EditMapZoomKeyUp
end
object MapListErrors: TListBox
Left = 2
Top = 18
Width = 213
Height = 97
ItemHeight = 13
TabOrder = 4
Visible = False
OnClick = MapListErrorsClick
end
object PanelMapVertex: TPanel
Left = 32
Top = 176
Width = 65
Height = 98
TabOrder = 6
Visible = False
end
object MapPanelList: TPanel
Left = 128
Top = 0
Width = 169
Height = 41
TabOrder = 5
Visible = False
object MapListTypes: TListBox
Left = 56
Top = 8
Width = 41
Height = 97
ItemHeight = 16
Style = lbOwnerDrawFixed
TabOrder = 0
OnDrawItem = MapListTypesDrawItem
end
object MapListClasses: TListBox
Left = 8
Top = 8
Width = 41
Height = 97
ItemHeight = 16
Style = lbOwnerDrawFixed
TabOrder = 1
OnClick = MapListClassesClick
OnDrawItem = MapListClassesDrawItem
end
object MapListOK: TButton
Left = 24
Top = 8
Width = 75
Height = 23
Caption = 'OK'
TabOrder = 2
OnClick = MapListOKClick
end
object MapListCancel: TButton
Left = 80
Top = 8
Width = 75
Height = 23
Caption = 'Cancel'
TabOrder = 3
OnClick = MapListCancelClick
end
end
object PanelMapWaded: TPanel
Left = 481
Top = 7
Width = 82
Height = 193
Align = alRight
TabOrder = 7
object MapGridButton2: TSpeedButton
Left = 16
Top = 160
Width = 65
Height = 22
GroupIndex = 2
Visible = False
end
object MapModeThings: TSpeedButton
Left = 8
Top = 56
Width = 65
Height = 22
GroupIndex = 1
Caption = 'Things'
OnClick = MapModeThingsClick
end
object MapModeLineDefs: TSpeedButton
Left = 8
Top = 32
Width = 65
Height = 22
GroupIndex = 1
Caption = 'LineDefs'
OnClick = MapModeLineDefsClick
end
object MapModeAll: TSpeedButton
Left = 8
Top = 8
Width = 65
Height = 22
GroupIndex = 1
Caption = 'All'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
OnClick = MapModeAllClick
end
object MapModeSectors: TSpeedButton
Left = 8
Top = 80
Width = 65
Height = 22
GroupIndex = 1
Caption = 'Sectors'
OnClick = MapModeSectorsClick
end
object MapModeDraw: TSpeedButton
Left = 8
Top = 104
Width = 65
Height = 22
GroupIndex = 1
Down = True
Caption = 'Draw'
OnClick = MapModeDrawClick
end
object MapGridButton: TSpeedButton
Left = 8
Top = 152
Width = 65
Height = 22
GroupIndex = 2
Caption = 'Grid'
OnClick = MapGridButtonClick
end
end
object PanelMapThings: TPanel
Left = 8
Top = 192
Width = 585
Height = 98
TabOrder = 2
Visible = False
object Label9: TLabel
Left = 8
Top = 50
Width = 49
Height = 17
AutoSize = False
Caption = 'Angle'
end
object LabelMapThingXYZ: TLabel
Left = 8
Top = 78
Width = 49
Height = 17
AutoSize = False
Caption = 'X, Y, Z'
end
object Label8: TLabel
Left = 56
Top = 6
Width = 49
Height = 17
AutoSize = False
Caption = 'Type'
end
object lblThing: TLabel
Left = 8
Top = 24
Width = 172
Height = 13
AutoSize = False
Caption = '...'
Color = 11577504
ParentColor = False
end
object MapImageThing: TImage
Left = 187
Top = 2
Width = 94
Height = 94
end
object MapEditThingAngle: TEdit
Left = 56
Top = 48
Width = 41
Height = 16
AutoSize = False
BorderStyle = bsNone
Color = 11577504
TabOrder = 3
OnChange = MapEditThingAngleChange
OnKeyPress = MapEditThingAngleKeyPress
end
object MapEditThingX: TEdit
Left = 56
Top = 76
Width = 40
Height = 16
AutoSize = False
BorderStyle = bsNone
Color = 11577504
TabOrder = 12
end
object MapEditThingY: TEdit
Left = 98
Top = 76
Width = 40
Height = 16
AutoSize = False
BorderStyle = bsNone
Color = 11577504
TabOrder = 13
end
object MapEditType: TEdit
Left = 104
Top = 4
Width = 40
Height = 16
AutoSize = False
BorderStyle = bsNone
Color = 11577504
TabOrder = 1
OnChange = MapEditTypeChange
OnKeyPress = MapEditTypeKeyPress
end
object MapEditThingFlags1: TCheckBox
Left = 288
Top = 8
Width = 90
Height = 17
Caption = 'Level 1, 2'
TabOrder = 15
end
object MapEditThingFlags2: TCheckBox
Left = 288
Top = 24
Width = 90
Height = 17
Caption = 'Level 3'
TabOrder = 16
end
object MapEditThingFlags3: TCheckBox
Left = 288
Top = 40
Width = 90
Height = 17
Caption = 'Level 4, 5'
TabOrder = 17
end
object MapEditThingFlags4: TCheckBox
Left = 288
Top = 56
Width = 90
Height = 17
Caption = 'Deaf'
TabOrder = 18
end
object MapEditThingFlags5: TCheckBox
Left = 288
Top = 72
Width = 90
Height = 17
Caption = 'Multi/Dormant'
TabOrder = 19
end
object MapThingsApply: TButton
Left = 3
Top = 2
Width = 41
Height = 18
Caption = 'Apply'
TabOrder = 0
OnClick = MapThingsApplyClick
end
object MapEditThingFlags9: TCheckBox
Left = 384
Top = 49
Width = 82
Height = 17
Caption = 'Single'
TabOrder = 23
end
object MapEditThingFlags10: TCheckBox
Left = 384
Top = 64
Width = 82
Height = 17
Caption = 'Cooperative'
TabOrder = 24
end
object MapEditThingFlags8: TCheckBox
Left = 384
Top = 33
Width = 82
Height = 17
Caption = 'Mage'
TabOrder = 22
end
object MapEditThingFlags7: TCheckBox
Left = 384
Top = 18
Width = 82
Height = 17
Caption = 'Cleric'
TabOrder = 21
end
object MapEditThingFlags11: TCheckBox
Left = 384
Top = 80
Width = 82
Height = 17
Caption = 'Deathmatch'
TabOrder = 25
end
object MapEditThingZ: TEdit
Left = 140
Top = 76
Width = 40
Height = 16
AutoSize = False
BorderStyle = bsNone
Color = 11577504
TabOrder = 14
end
object MapEditThingFlags6: TCheckBox
Left = 384
Top = 2
Width = 82
Height = 17
Caption = 'Fighter'
TabOrder = 20
end
object MapPickThing: TBitBtn
Left = 144
Top = 4
Width = 16
Height = 16
TabOrder = 2
OnClick = MapPickThingClick
Glyph.Data = {
6A010000424D6A0100000000000036000000280000000E000000070000000100
18000000000034010000120B0000120B00000000000000000000008080008080
0080800000000080800080800080800080800080800080800000000080800080
8000808000000080800080800080800000000000000080800080800080800080
8000808000000000000000808000808000000080800080800080800000000000
0000000000808000808000808000808000000000808000000000808000000080
8000808000808000000000000000000000000000808000808000808000000000
8080008080000000000000808000808000808000000000000000000000808000
8080008080008080000000008080000000008080000000808000808000808000
0000000000008080008080008080008080008080000000000000008080008080
0000008080008080008080000000008080008080008080008080008080008080
0000000080800080800080800000}
Layout = blGlyphRight
NumGlyphs = 2
end
object MapThingAngleRad090: TRadioButton
Left = 136
Top = 38
Width = 14
Height = 14
TabOrder = 5
OnClick = MapThingAngleRad090Click
end
object MapThingAngleRad000: TRadioButton
Left = 164
Top = 50
Width = 14
Height = 14
TabOrder = 11
OnClick = MapThingAngleRad000Click
end
object MapThingAngleRad270: TRadioButton
Left = 136
Top = 62
Width = 14
Height = 14
TabOrder = 9
OnClick = MapThingAngleRad270Click
end
object MapThingAngleRad180: TRadioButton
Left = 108
Top = 50
Width = 19
Height = 15
TabOrder = 7
OnClick = MapThingAngleRad180Click
end
object MapThingAngleRad045: TRadioButton
Left = 150
Top = 41
Width = 14
Height = 14
TabOrder = 4
OnClick = MapThingAngleRad045Click
end
object MapThingAngleRad135: TRadioButton
Left = 122
Top = 41
Width = 14
Height = 14
TabOrder = 6
OnClick = MapThingAngleRad135Click
end
object MapThingAngleRad225: TRadioButton
Left = 122
Top = 59
Width = 14
Height = 14
TabOrder = 8
OnClick = MapThingAngleRad225Click
end
object MapThingAngleRad315: TRadioButton
Left = 150
Top = 59
Width = 14
Height = 14
TabOrder = 10
OnClick = MapThingAngleRad315Click
end
object MapEditThingSpecial: TEdit
Left = 472
Top = 40
Width = 40
Height = 16
BorderStyle = bsNone
Color = 11577504
TabOrder = 27
end
object MapEditThingArg1: TEdit
Left = 472
Top = 58
Width = 28
Height = 16
BorderStyle = bsNone
Color = 11577504
TabOrder = 28
end
object MapEditThingArg2: TEdit
Left = 504
Top = 58
Width = 28
Height = 16
BorderStyle = bsNone
Color = 11577504
TabOrder = 29
end
object MapEditThingArg3: TEdit