-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuFrmMain.dfm
9042 lines (9042 loc) · 542 KB
/
uFrmMain.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 frmMain: TfrmMain
Left = 0
Top = 0
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
Caption = 'DXEditPlus'
ClientHeight = 600
ClientWidth = 999
Color = clBtnFace
Constraints.MinHeight = 400
Constraints.MinWidth = 600
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
Menu = menuMainForm
Position = poScreenCenter
ShowHint = True
OnClose = FormClose
OnCreate = FormCreate
OnResize = FormResize
DesignSize = (
999
600)
TextHeight = 17
object ButtonsPanel: TEsPanel
Left = 0
Top = 32
Width = 122
Height = 536
Align = alLeft
Color = clGray
ParentBackground = False
ParentColor = False
TabOrder = 0
FrameStyle = None
FrameColor = 8421440
object ButtonGroups: TCategoryPanelGroup
Left = 0
Top = 0
Width = 122
Height = 536
VertScrollBar.ButtonSize = 1
VertScrollBar.Margin = 1
VertScrollBar.Size = 1
VertScrollBar.ThumbSize = 1
VertScrollBar.Tracking = True
VertScrollBar.Visible = False
Align = alClient
ChevronHotColor = clBlue
GradientBaseColor = clGray
GradientColor = clMedGray
HeaderAlignment = taRightJustify
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -12
HeaderFont.Name = 'Segoe UI'
HeaderFont.Style = []
HeaderHeight = 20
TabOrder = 0
OnMouseWheel = ButtonGroupsMouseWheel
object catSelection: TCategoryPanel
Top = 289
Height = 140
Color = clGray
TabOrder = 0
object ToolBar3: TToolBar
Left = 0
Top = 0
Width = 116
Height = 118
Align = alClient
ButtonHeight = 36
ButtonWidth = 37
Caption = 'ToolBar3'
DrawingStyle = dsGradient
GradientEndColor = clGray
GradientStartColor = clGray
HotTrackColor = 4227327
Images = SelectionImageList
TabOrder = 0
Transparent = False
object tbShowSelectedActorsOnly: TToolButton
Left = 0
Top = 0
Hint = 'Show selected actors only'
ImageIndex = 0
end
object tbHideSelectedActors: TToolButton
Left = 37
Top = 0
Hint = 'Hide selected actors'
ImageIndex = 1
end
object tbSelActorsInsideRedBrush: TToolButton
Left = 74
Top = 0
Hint = 'Select actors inside builder (red) brush'
ImageIndex = 2
Wrap = True
end
object tbSelectAllActors: TToolButton
Left = 0
Top = 36
Hint = 'Select all (actors and brushes)'
ImageIndex = 3
end
object tbInvertSelection: TToolButton
Left = 37
Top = 36
Hint = 'Invert selection'
ImageIndex = 4
end
object tbShowAllActors: TToolButton
Left = 74
Top = 36
Hint = 'Show all actors'
ImageIndex = 5
Wrap = True
end
object tbCameraSpeed: TToolButton
Left = 0
Top = 72
Hint = 'Select camera speed...'
ImageIndex = 6
end
object tbCameraAlign: TToolButton
Left = 37
Top = 72
Hint = 'Align viewport cameras to 3D viewport camera'
ImageIndex = 7
end
object ToolButton37: TToolButton
Left = 74
Top = 72
ImageIndex = 8
Visible = False
end
end
end
object catOperations: TCategoryPanel
Top = 177
Height = 112
Color = clGray
TabOrder = 1
object ToolBar2: TToolBar
Left = 0
Top = 0
Width = 116
Height = 109
ButtonHeight = 37
ButtonWidth = 37
Caption = 'ToolBar2'
DrawingStyle = dsGradient
GradientEndColor = clGray
GradientStartColor = clGray
HotTrackColor = clAqua
Images = operationsImageList
TabOrder = 0
Transparent = False
object tbAdd: TToolButton
Left = 0
Top = 0
Action = brushAdd
ImageIndex = 0
end
object tbSubtract: TToolButton
Left = 37
Top = 0
Action = brushSubtract
ImageIndex = 1
end
object tbIntersect: TToolButton
Left = 74
Top = 0
Action = brushIntersect
ImageIndex = 2
Wrap = True
end
object tbDeintersect: TToolButton
Left = 0
Top = 37
Action = brushDeintersect
ImageIndex = 3
end
object tbAddSpecial: TToolButton
Left = 37
Top = 37
Hint = 'Add Special Brush'
ImageIndex = 4
OnClick = tbAddSpecialClick
end
object tbAddMover: TToolButton
Left = 74
Top = 37
Hint = 'Add Mover...'
ImageIndex = 5
end
end
end
object catBrushBuilders: TCategoryPanel
Top = 151
Height = 26
Color = clGray
Collapsed = True
TabOrder = 2
ExpandedHeight = 216
object toolbarBrushBuilders: TToolBar
Left = 0
Top = 0
Width = 116
Height = 188
ButtonHeight = 37
ButtonWidth = 37
Caption = 'toolbarBrushBuilders'
DrawingStyle = dsGradient
GradientEndColor = clGray
GradientStartColor = clGray
HideClippedButtons = True
Images = BrushBuildersImages
List = True
TabOrder = 0
Transparent = False
object tbCube: TToolButton
Left = 0
Top = 0
ImageIndex = 0
end
object tbSheet: TToolButton
Left = 37
Top = 0
ImageIndex = 1
end
object tbCylinder: TToolButton
Left = 74
Top = 0
ImageIndex = 2
Wrap = True
end
object tbCone: TToolButton
Left = 0
Top = 37
ImageIndex = 3
end
object tbSphere: TToolButton
Left = 37
Top = 37
ImageIndex = 4
end
object tbCurvedStaircase: TToolButton
Left = 74
Top = 37
ImageIndex = 5
Wrap = True
end
object tbSpiralStairCase: TToolButton
Left = 0
Top = 74
ImageIndex = 6
end
object tbLinearStairCase: TToolButton
Left = 37
Top = 74
ImageIndex = 7
end
object ToolButton30: TToolButton
Left = 74
Top = 74
Enabled = False
Wrap = True
end
object ToolButton31: TToolButton
Left = 0
Top = 111
Enabled = False
end
object ToolButton32: TToolButton
Left = 37
Top = 111
Enabled = False
end
object ToolButton33: TToolButton
Left = 74
Top = 111
Enabled = False
ImageIndex = 8
Wrap = True
end
object ToolButton34: TToolButton
Left = 0
Top = 148
Enabled = False
ImageIndex = 9
end
object ToolButton35: TToolButton
Left = 37
Top = 148
Enabled = False
ImageIndex = 10
end
object ToolButton36: TToolButton
Left = 74
Top = 148
Enabled = False
ImageIndex = 11
end
end
end
object catBrushMode: TCategoryPanel
Top = 0
Height = 151
Color = clGray
Ctl3D = True
ParentCtl3D = False
TabOrder = 3
object toolbarEditorMode: TToolBar
Left = 0
Top = 0
Width = 116
Height = 129
Align = alClient
ButtonHeight = 37
ButtonWidth = 37
Customizable = True
DrawingStyle = dsGradient
GradientEndColor = clGray
GradientStartColor = clGray
HotTrackColor = 13030033
Images = EditorModeImages
TabOrder = 0
Transparent = False
object tbMoveCamera: TToolButton
Tag = 1
Left = 0
Top = 0
Caption = 'tbMoveCamera'
Down = True
Grouped = True
ImageIndex = 0
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbSheerBrush: TToolButton
Tag = 6
Left = 37
Top = 0
Caption = 'tbSheerBrush'
Grouped = True
ImageIndex = 1
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbScaleBrush: TToolButton
Tag = 7
Left = 74
Top = 0
Caption = 'tbScaleBrush'
Grouped = True
ImageIndex = 2
Wrap = True
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbStretchBrush: TToolButton
Tag = 8
Left = 0
Top = 37
Caption = 'tbStretchBrush'
Grouped = True
ImageIndex = 3
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbSnapScaleBrush: TToolButton
Tag = 18
Left = 37
Top = 37
Caption = 'tbSnapScaleBrush'
Grouped = True
ImageIndex = 4
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbRotateBrush: TToolButton
Tag = 5
Left = 74
Top = 37
Caption = 'tbRotateBrush'
Grouped = True
ImageIndex = 5
Wrap = True
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbTexturePan: TToolButton
Tag = 11
Left = 0
Top = 74
Caption = 'tbTexturePan'
Grouped = True
ImageIndex = 6
Style = tbsCheck
OnClick = SetEditorModeClick
end
object tbTextureRotate: TToolButton
Tag = 13
Left = 37
Top = 74
Caption = 'tbTextureRotate'
Grouped = True
ImageIndex = 7
Style = tbsCheck
OnClick = SetEditorModeClick
end
object ToolButton45: TToolButton
Left = 74
Top = 74
Caption = 'ToolButton45'
Enabled = False
Grouped = True
ImageIndex = 8
OnClick = SetEditorModeClick
end
end
end
end
end
object CommandBar: TEsPanel
Left = 0
Top = 568
Width = 999
Height = 32
Align = alBottom
Color = clGray
ParentBackground = False
ParentColor = False
TabOrder = 1
FrameStyle = None
FrameColor = 8421440
DesignSize = (
999
32)
object Label1: TLabel
Left = 6
Top = 6
Width = 75
Height = 23
Alignment = taRightJustify
AutoSize = False
Caption = 'Command:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Verdana'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
end
object cmbCommand: TComboBox
Left = 83
Top = 6
Width = 417
Height = 24
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Verdana'
Font.Style = []
ParentFont = False
TabOrder = 0
TextHint = 'Enter command and press Enter'
OnKeyDown = cmbCommandKeyDown
end
object cmbLeftPanelsWidthRatio: TComboBox
Left = 935
Top = 6
Width = 57
Height = 22
Hint = 'Left viewports width ratio'
Style = csOwnerDrawFixed
Anchors = [akTop, akRight]
ItemIndex = 1
TabOrder = 1
Text = '65%'
Items.Strings = (
'50%'
'65%'
'75%')
end
object ProgressBar: TProgressBar
Left = 0
Top = 0
Width = 999
Height = 6
Align = alTop
Smooth = True
BarColor = 16744448
BackgroundColor = clWhite
TabOrder = 2
end
object btnApplyViewportRatio: TButton
Left = 906
Top = 6
Width = 28
Height = 22
Anchors = [akTop, akRight]
Caption = 'Ok'
TabOrder = 3
OnClick = btnApplyViewportRatioClick
end
object btnViewLog: TButton
Left = 500
Top = 6
Width = 24
Height = 24
ImageAlignment = iaCenter
ImageIndex = 21
Images = ToolbarImages
TabOrder = 5
OnClick = sbLogClick
end
object ProgressText: TStaticText
Left = 651
Top = 6
Width = 249
Height = 19
Alignment = taCenter
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Color = clGray
ParentColor = False
TabOrder = 4
Transparent = False
end
object chkShowConverter: TCheckBox
Left = 528
Top = 8
Width = 117
Height = 21
Caption = 'Show Converter'
TabOrder = 6
OnClick = chkShowConverterClick
end
end
object ViewportsPanel: TEsPanel
Left = 120
Top = 32
Width = 879
Height = 536
Anchors = [akLeft, akTop, akRight, akBottom]
Color = clSilver
ParentBackground = False
ParentColor = False
TabOrder = 2
FrameStyle = None
end
object ToolbarPanel: TEsPanel
Left = 0
Top = 0
Width = 999
Height = 32
Align = alTop
Color = clGray
ParentBackground = False
ParentColor = False
TabOrder = 3
CaptionVisible = False
FrameStyle = None
object ToolBar1: TToolBar
AlignWithMargins = True
Left = 3
Top = 3
Width = 993
Height = 29
ButtonHeight = 26
ButtonWidth = 27
Caption = 'ToolBar1'
DoubleBuffered = True
DrawingStyle = dsGradient
EdgeInner = esNone
EdgeOuter = esNone
Flat = False
GradientEndColor = clGray
GradientStartColor = clGray
HotTrackColor = 14675076
Images = ToolbarImages
GradientDirection = gdHorizontal
ParentDoubleBuffered = False
TabOrder = 0
Transparent = False
StyleName = 'Windows'
object Label3: TLabel
Left = 0
Top = 0
Width = 5
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton2: TToolButton
Left = 5
Top = 0
Action = file_NewMap
ImageIndex = 0
end
object ToolButton3: TToolButton
Left = 32
Top = 0
Action = file_OpenMap
ImageIndex = 1
end
object ToolButton4: TToolButton
Left = 59
Top = 0
Caption = 'ToolButton4'
ImageIndex = 2
end
object Label2: TLabel
Left = 86
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton6: TToolButton
Left = 96
Top = 0
Action = edit_Undo
ImageIndex = 3
end
object ToolButton7: TToolButton
Left = 123
Top = 0
Action = edit_Redo
ImageIndex = 4
end
object Label5: TLabel
Left = 150
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton11: TToolButton
Left = 160
Top = 0
Action = edit_SearchActors
ImageIndex = 5
end
object Label6: TLabel
Left = 187
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton14: TToolButton
Left = 197
Top = 0
Action = br_ActorBrowser
ImageIndex = 6
end
object ToolButton15: TToolButton
Left = 224
Top = 0
Action = br_MusicBrowser
ImageIndex = 7
end
object ToolButton16: TToolButton
Left = 251
Top = 0
Action = br_SoundBrowser
ImageIndex = 8
end
object ToolButton17: TToolButton
Left = 278
Top = 0
Action = br_TextureBrowser
ImageIndex = 9
end
object ToolButton18: TToolButton
Left = 305
Top = 0
Action = br_MeshBrowser
ImageIndex = 10
end
object Label4: TLabel
Left = 332
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton1: TToolButton
Left = 342
Top = 0
Caption = 'ToolButton1'
ImageIndex = 11
OnClick = N2DShapeEditor1Click
end
object ToolButton5: TToolButton
Left = 369
Top = 0
Caption = 'ToolButton5'
ImageIndex = 12
end
object Label8: TLabel
Left = 396
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton8: TToolButton
Left = 406
Top = 0
Caption = 'ToolButton8'
ImageIndex = 13
end
object ToolButton9: TToolButton
Left = 433
Top = 0
Caption = 'ToolButton9'
ImageIndex = 14
end
object Label9: TLabel
Left = 460
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object tbBuildGeometry: TToolButton
Left = 470
Top = 0
Hint = 'Build Geometry'
Caption = 'tbBuildGeometry'
ImageIndex = 15
OnClick = tbBuildGeometryClick
end
object tbBuildLighting: TToolButton
Left = 497
Top = 0
Hint = 'Build Lighting'
Caption = 'tbBuildLighting'
ImageIndex = 16
end
object tbBuildPaths: TToolButton
Left = 524
Top = 0
Hint = 'Build Paths'
Caption = 'tbBuildPaths'
ImageIndex = 17
OnClick = tbBuildPathsClick
end
object tbBuildAll: TToolButton
Left = 551
Top = 0
Hint = 'Build All (as per current build settings)'
Caption = 'tbBuildAll'
ImageIndex = 18
end
object tbBuildOptions: TToolButton
Left = 578
Top = 0
Hint = 'Build Options...'
Action = build_options
ImageIndex = 19
end
object Label7: TLabel
Left = 605
Top = 0
Width = 10
Height = 26
Alignment = taCenter
AutoSize = False
Transparent = False
end
object ToolButton21: TToolButton
Left = 615
Top = 0
Hint = 'Play Map!'
Caption = 'ToolButton21'
ImageIndex = 20
end
end
end
object Callback: TEdit
Left = 632
Top = 574
Width = 13
Height = 25
TabOrder = 4
Visible = False
OnKeyPress = CallbackKeyPress
end
object pnlConverter: TEsPanel
Left = 527
Top = 420
Width = 438
Height = 150
Anchors = [akLeft, akBottom]
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TabOrder = 5
Visible = False
CaptionVisible = False
FrameStyle = Flat
FrameColor = clBlue
FrameWidth = 2
object GroupBox1: TGroupBox
Left = 8
Top = 4
Width = 209
Height = 117
Caption = 'Angles/Rotation'
DefaultHeaderFont = False
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -12
HeaderFont.Name = 'Segoe UI'
HeaderFont.Style = [fsBold]
TabOrder = 0
object Label10: TLabel
Left = 2
Top = 17
Width = 75
Height = 98
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = #13#10'Unreal Units:'#13#10#13#10'Degrees:'#13#10
ExplicitTop = 16
ExplicitHeight = 122
end
object se_CustomAngle: TJvSpinEdit
Left = 83
Top = 57
Width = 120
Height = 23
Thousands = True
Decimal = 3
Increment = 0.001000000000000000
MaxValue = 360.000000000000000000
MinValue = -360.000000000000000000
ValueType = vtFloat
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
TabOrder = 0
OnChange = se_CustomAngleChange
HideSelection = False
end
object se_RotationUU: TJvSpinEdit
Left = 83
Top = 28
Width = 120
Height = 23
Decimal = 0
MaxValue = 65536.000000000000000000
MinValue = -65536.000000000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
TabOrder = 1
OnChange = se_RotationUUChange
HideSelection = False
end
end
object GroupBox2: TGroupBox
Left = 223
Top = 4
Width = 209
Height = 117
Caption = 'Distance'
DefaultHeaderFont = False
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -12
HeaderFont.Name = 'Segoe UI'
HeaderFont.Style = [fsBold]
TabOrder = 1
object lblDistance: TLabel
Left = 2
Top = 17
Width = 75
Height = 98
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = #13#10'Unreal Units:'#13#10#13#10'Dist. In Cm:'#13#10#13#10'in Meters:'
ExplicitTop = 16
ExplicitHeight = 122
end
object se_Dist_Cm: TJvSpinEdit
Left = 83
Top = 57
Width = 120
Height = 23
Decimal = 3
Increment = 0.001000000000000000
ValueType = vtFloat
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
TabOrder = 0
OnChange = se_Dist_CmChange
HideSelection = False
end
object se_DistanceUU: TJvSpinEdit
Left = 83
Top = 28
Width = 120
Height = 23
Decimal = 0
MaxValue = 65536.000000000000000000
MinValue = -65536.000000000000000000
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
TabOrder = 1
OnChange = se_DistanceUUChange
HideSelection = False
end
object se_Dist_Meters: TJvSpinEdit
Left = 83
Top = 86
Width = 120
Height = 23
Decimal = 3
Increment = 0.001000000000000000
ValueType = vtFloat
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
TabOrder = 2
OnChange = se_Dist_MetersChange
HideSelection = False
end
end
object chkUseInches: TCheckBox
Left = 223
Top = 125
Width = 122
Height = 17
Caption = 'Use Inches/Feet?'
TabOrder = 2
OnClick = chkUseInchesClick
end
end
object menuMainForm: TMainMenu
OnChange = menuMainFormChange
Left = 500
Top = 36
object File1: TMenuItem
Caption = 'File'
object New1: TMenuItem
Action = file_NewMap
end
object Open1: TMenuItem
Action = file_OpenMap
end
object N2: TMenuItem
Caption = '-'
end
object Savecurrentmap1: TMenuItem
Action = file_SaveCurrentMap