-
Notifications
You must be signed in to change notification settings - Fork 23
/
mainunit.lfm
executable file
·2709 lines (2709 loc) · 81.6 KB
/
mainunit.lfm
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 GLForm1: TGLForm1
Left = 276
Height = 659
Top = 113
Width = 1004
AllowDropFiles = True
Caption = 'Surf Ice'
ClientHeight = 659
ClientWidth = 1004
Menu = MainMenu1
OnChangeBounds = FormChangeBounds
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
OnShow = FormShow
Position = poDesktopCenter
LCLVersion = '2.3.0.0'
object ToolPanel: TScrollBox
Left = clBlack
Height = 659
Top = clBlack
Width = 261
HorzScrollBar.Page = 1
HorzScrollBar.Visible = False
VertScrollBar.Page = 659
Align = alLeft
BorderStyle = bsNone
ClientHeight = 659
ClientWidth = 246
Constraints.MaxWidth = 272
Constraints.MinWidth = 4
ParentFont = False
TabOrder = 2
object OverlayBox: TGroupBox
Left = clBlack
Height = 182
Hint = 'Click on name to hide, control+click to reverse palette'
Top = clBlack
Width = 246
Align = alTop
AutoSize = True
Caption = 'Overlays'
ClientHeight = 163
ClientWidth = 236
Constraints.MinHeight = 2
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
Visible = False
object LayerList: TCheckListBox
Left = clBlack
Height = 72
Hint = 'Right-click for options'
Top = clBlack
Width = 236
Align = alTop
Constraints.MaxHeight = 72
ItemHeight = clBlack
OnClickCheck = LayerListClickCheck
OnSelectionChange = LayerListSelectionChange
OnShowHint = LayerListShowHint
ParentFont = False
ParentShowHint = False
PopupMenu = LayerPopup
ShowHint = True
TabOrder = 4
end
object LayerDarkLabel: TLabel
AnchorSideLeft.Control = LayerList
AnchorSideTop.Control = LayerDarkEdit
AnchorSideTop.Side = asrCenter
Left = clBlack
Height = 16
Top = 100
Width = 47
Caption = 'Darkest'
ParentFont = False
end
object LayerDarkEdit: TEdit
AnchorSideTop.Control = LayerColorDrop
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 122
Height = 21
Top = 98
Width = 116
BorderSpacing.Left = 122
BorderSpacing.Top = 2
OnKeyUp = LayerContrastKeyUp
ParentFont = False
TabOrder = 5
Text = '20'
end
object LayerBrightEdit: TEdit
AnchorSideTop.Control = LayerDarkEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 122
Height = 21
Top = 121
Width = 116
BorderSpacing.Left = 122
BorderSpacing.Top = 2
OnKeyUp = LayerContrastKeyUp
ParentFont = False
TabOrder = 0
Text = '80'
end
object LayerBrightLabel: TLabel
AnchorSideLeft.Control = LayerList
AnchorSideTop.Control = LayerBrightEdit
AnchorSideTop.Side = asrCenter
Left = clBlack
Height = 16
Top = 123
Width = 55
Caption = 'Brightest'
ParentFont = False
end
object LayerColorDrop: TComboBox
AnchorSideLeft.Control = LayerList
AnchorSideTop.Control = LayerList
AnchorSideTop.Side = asrBottom
Left = clBlack
Height = 20
Top = 76
Width = 137
BorderSpacing.Top = 4
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'Grayscale'
)
OnChange = LayerWidgetChange
ParentFont = False
Style = csDropDownList
TabOrder = 1
Text = 'Grayscale'
end
object LayerAlphaLabel: TLabel
AnchorSideLeft.Control = LayerList
AnchorSideTop.Control = LayerAlphaTrack
AnchorSideTop.Side = asrCenter
Left = clBlack
Height = 16
Top = 145
Width = 47
Caption = 'Opacity'
ParentFont = False
end
object LayerAlphaTrack: TTrackBar
AnchorSideTop.Control = LayerBrightEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 122
Height = 19
Top = 144
Width = 116
Max = 100
Position = 100
TickStyle = tsNone
BorderSpacing.Left = 122
BorderSpacing.Top = 2
OnMouseUp = LayerAlphaTrackMouseUp
ParentFont = False
TabOrder = 2
end
object LayerOptionsBtn: TButton
AnchorSideLeft.Control = LayerColorDrop
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = LayerColorDrop
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = LayerList
AnchorSideRight.Side = asrBottom
Left = 143
Height = 25
Top = 74
Width = 88
BorderSpacing.Left = 6
Caption = 'Options'
OnClick = LayerOptionsBtnClick
ParentFont = False
TabOrder = 3
end
end
object ClipBox: TGroupBox
Left = clBlack
Height = 82
Top = 286
Width = 246
Align = alTop
AutoSize = True
Caption = 'Clipping'
ClientHeight = 63
ClientWidth = 236
ParentFont = False
TabOrder = 0
OnDblClick = DepthLabelDblClick
object DepthLabel: TLabel
AnchorSideLeft.Control = ClipBox
AnchorSideTop.Control = ClipTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 3
Width = 37
BorderSpacing.Left = 2
Caption = 'Depth'
ParentFont = False
OnClick = DepthLabelClick
end
object AzimuthLabel: TLabel
AnchorSideLeft.Control = DepthLabel
AnchorSideTop.Control = ClipAziTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 24
Width = 50
Caption = 'Azimuth'
ParentFont = False
OnClick = AzimuthLabelClick
end
object ElevationLabel: TLabel
AnchorSideLeft.Control = DepthLabel
AnchorSideTop.Control = ClipElevTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 45
Width = 55
Caption = 'Elevation'
ParentFont = False
OnClick = ElevationLabelClick
end
object ClipTrack: TTrackBar
AnchorSideLeft.Control = ElevationLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ClipBox
AnchorSideRight.Control = ClipBox
AnchorSideRight.Side = asrBottom
Left = 61
Height = 19
Top = 2
Width = 172
Max = 1000
OnChange = ClipTrackChange
Position = clBlack
TickStyle = tsNone
BorderSpacing.Left = 4
BorderSpacing.Top = 2
BorderSpacing.Right = 2
ParentFont = False
TabOrder = 0
end
object ClipAziTrack: TTrackBar
AnchorSideLeft.Control = ClipTrack
AnchorSideTop.Control = ClipTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ClipTrack
AnchorSideRight.Side = asrBottom
Left = 61
Height = 19
Top = 23
Width = 172
Max = 360
OnChange = ClipTrackChange
Position = 180
TickStyle = tsNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
ParentFont = False
TabOrder = 1
end
object ClipElevTrack: TTrackBar
AnchorSideLeft.Control = ClipTrack
AnchorSideTop.Control = ClipAziTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ClipTrack
AnchorSideRight.Side = asrBottom
Left = 61
Height = 19
Top = 44
Width = 172
Max = 180
Min = -180
OnChange = ClipTrackChange
Position = clBlack
TickStyle = tsNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
ParentFont = False
TabOrder = 2
end
end
object TrackBox: TGroupBox
Tag = 270
Left = clBlack
Height = 104
Top = 182
Width = 246
Align = alTop
AutoSize = True
Caption = 'Tracks'
ClientHeight = 85
ClientWidth = 236
ParentFont = False
TabOrder = 2
Visible = False
object TrackLengthLabel: TLabel
AnchorSideLeft.Control = TrackBox
AnchorSideTop.Control = TrackLengthTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 3
Width = 42
BorderSpacing.Left = 2
Caption = 'Length'
ParentFont = False
end
object TrackLengthTrack: TTrackBar
AnchorSideLeft.Control = TrackLengthLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TrackBox
AnchorSideRight.Control = TrackBox
AnchorSideRight.Side = asrBottom
Left = 50
Height = 19
Top = 2
Width = 172
Max = 100
OnChange = TrackBoxChange
Position = 20
TickStyle = tsNone
BorderSpacing.Left = 6
BorderSpacing.Top = 2
BorderSpacing.Right = 2
ParentFont = False
TabOrder = 0
end
object TrackWidthTrack: TTrackBar
AnchorSideLeft.Control = TrackLengthTrack
AnchorSideTop.Control = TrackLengthTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = TrackLengthTrack
AnchorSideRight.Side = asrBottom
Left = 50
Height = 19
Top = 23
Width = 172
Max = 12
Min = 1
OnChange = TrackBoxChange
Position = 2
TickStyle = tsNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
ParentFont = False
TabOrder = 1
end
object TrackWidthLabel: TLabel
AnchorSideLeft.Control = TrackBox
AnchorSideTop.Control = TrackWidthTrack
AnchorSideTop.Side = asrCenter
Left = clBlack
Height = 16
Top = 24
Width = 36
Caption = 'Width'
ParentFont = False
end
object TrackDitherTrack: TTrackBar
AnchorSideLeft.Control = TrackLengthTrack
AnchorSideTop.Control = TrackWidthTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = TrackLengthTrack
AnchorSideRight.Side = asrBottom
Left = 50
Height = 19
Top = 44
Width = 172
OnChange = TrackBoxChange
Position = 5
TickStyle = tsNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
ParentFont = False
TabOrder = 2
end
object TrackDitherLabel: TLabel
AnchorSideLeft.Control = TrackLengthLabel
AnchorSideTop.Control = TrackDitherTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 45
Width = 37
Caption = 'Dither'
ParentFont = False
end
object TrackScalarLUTdrop: TComboBox
AnchorSideLeft.Control = TrackScalarNameDrop
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TrackDitherTrack
AnchorSideTop.Side = asrBottom
Left = 112
Height = 20
Top = 65
Width = 108
BorderSpacing.Left = 2
BorderSpacing.Top = 2
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'a'
'b'
'c'
'd'
'e'
'f'
'g'
)
OnChange = ScalarDropChange
ParentFont = False
Style = csDropDownList
TabOrder = 3
Text = 'a'
end
object TrackScalarNameDrop: TComboBox
AnchorSideLeft.Control = TrackLengthLabel
AnchorSideTop.Control = TrackScalarLUTdrop
AnchorSideTop.Side = asrCenter
Left = 2
Height = 20
Top = 65
Width = 108
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'Direction'
)
OnChange = ScalarDropChange
ParentFont = False
Style = csDropDownList
TabOrder = 4
Text = 'Direction'
end
object TrackScalarRangeBtn: TButton
AnchorSideLeft.Control = TrackScalarLUTdrop
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TrackScalarLUTdrop
AnchorSideTop.Side = asrCenter
Left = 222
Height = 20
Top = 65
Width = 28
BorderSpacing.Left = 2
Caption = '...'
OnClick = TrackScalarRangeBtnClick
ParentFont = False
TabOrder = 5
end
end
object NodeBox: TGroupBox
Tag = 270
Left = clBlack
Height = 106
Top = 368
Width = 246
Align = alTop
AutoSize = True
Caption = 'Nodes'
ClientHeight = 87
ClientWidth = 236
ParentFont = False
TabOrder = 3
Visible = False
object NodeColorLabel: TLabel
AnchorSideLeft.Control = NodeBox
AnchorSideTop.Control = LUTdropNode
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 69
Width = 33
BorderSpacing.Left = 2
Caption = 'Color'
ParentFont = False
end
object LUTdropNode: TComboBox
AnchorSideLeft.Control = NodeColorVariesCheck
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = NodeThreshDrop
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = NodeBox
AnchorSideRight.Side = asrBottom
Left = 61
Height = 20
Top = 67
Width = 180
BorderSpacing.Left = 4
BorderSpacing.Top = 2
BorderSpacing.Right = 2
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'a'
'b'
'c'
'd'
'e'
'f'
'g'
)
OnChange = NodePrefChange
ParentFont = False
Style = csDropDownList
TabOrder = 0
Text = 'a'
end
object NodeColorVariesCheck: TCheckBox
AnchorSideLeft.Control = NodeColorLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = LUTdropNode
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = LUTdropNode
Left = 39
Height = 18
Hint = 'If checked, node color varies'
Top = 68
Width = 18
BorderSpacing.Left = 4
Checked = True
OnChange = NodePrefChange
ParentFont = False
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 1
end
object NodeScaleTrack: TTrackBar
AnchorSideLeft.Control = NodeSizeVariesCheck
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = NodeBox
AnchorSideRight.Control = NodeBox
AnchorSideRight.Side = asrBottom
Left = 61
Height = 19
Top = 2
Width = 92
Max = 200
OnChange = NodePrefChange
Position = 20
TickStyle = tsNone
BorderSpacing.Left = 4
BorderSpacing.Top = 2
BorderSpacing.Right = 2
ParentFont = False
TabOrder = 2
end
object NodeScaleLabel: TLabel
AnchorSideLeft.Control = NodeBox
AnchorSideTop.Control = NodeScaleTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 3
Width = 25
Alignment = taRightJustify
BorderSpacing.Left = 2
Caption = 'Size'
ParentFont = False
end
object NodeThreshDrop: TComboBox
AnchorSideLeft.Control = NodeColorLabel
AnchorSideTop.Control = NodeMaxEdit
AnchorSideTop.Side = asrBottom
Left = 2
Height = 20
Top = 45
Width = 242
BorderSpacing.Top = 2
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'Threshold based on size'
'Threshold based on color'
)
OnChange = NodeThreshDropChange
ParentFont = False
Style = csDropDownList
TabOrder = 3
Text = 'Threshold based on size'
end
object NodeMinEdit: TFloatSpinEdit
AnchorSideLeft.Control = NodeThreshLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = NodeMaxEdit
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = NodeMaxEdit
Left = 53
Height = 20
Top = 23
Width = 80
BorderSpacing.Left = 5
BorderSpacing.Right = 2
MaxValue = 65535
OnChange = NodePrefChange
OnKeyPress = NodeMinEditKeyPress
ParentFont = False
TabOrder = 4
end
object NodeThreshLabel: TLabel
AnchorSideLeft.Control = NodeScaleLabel
AnchorSideTop.Control = NodeMaxEdit
AnchorSideTop.Side = asrCenter
Left = 6
Height = 16
Top = 25
Width = 42
BorderSpacing.Left = 4
Caption = 'Thresh'
ParentFont = False
end
object NodeMaxEdit: TFloatSpinEdit
AnchorSideLeft.Control = NodeMinEdit
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = NodeScaleTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = NodeScaleTrack
AnchorSideRight.Side = asrBottom
Left = 137
Height = 20
Top = 23
Width = 100
BorderSpacing.Left = 4
BorderSpacing.Top = 2
MaxValue = 65535
OnChange = NodePrefChange
ParentFont = False
TabOrder = 5
Value = 1
end
object NodeSizeVariesCheck: TCheckBox
AnchorSideLeft.Control = NodeColorLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = NodeScaleTrack
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = NodeScaleTrack
Left = 39
Height = 18
Hint = 'If checked, node size varies'
Top = 2
Width = 18
BorderSpacing.Left = 4
BorderSpacing.Right = 4
Checked = True
OnChange = NodePrefChange
ParentFont = False
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 6
Visible = False
end
end
object EdgeBox: TGroupBox
Tag = 270
Left = clBlack
Height = 84
Top = 474
Width = 246
Align = alTop
AutoSize = True
Caption = 'Edges'
ClientHeight = 65
ClientWidth = 236
ParentFont = False
TabOrder = 4
Visible = False
object EdgeColorLabel: TLabel
AnchorSideLeft.Control = EdgeBox
AnchorSideTop.Control = LUTdropEdge
Left = 2
Height = 16
Top = 45
Width = 33
BorderSpacing.Left = 2
Caption = 'Color'
ParentFont = False
end
object LUTdropEdge: TComboBox
AnchorSideLeft.Control = EdgeColorVariesCheck
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EdgeMaxEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = EdgeMaxEdit
AnchorSideRight.Side = asrBottom
Left = 61
Height = 20
Top = 45
Width = 161
BorderSpacing.Left = 4
BorderSpacing.Top = 2
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'a'
'b'
'c'
'd'
'e'
'f'
'g'
)
OnChange = NodePrefChange
ParentFont = False
Style = csDropDownList
TabOrder = 0
Text = 'a'
end
object EdgeColorVariesCheck: TCheckBox
AnchorSideLeft.Control = EdgeColorLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = LUTdropEdge
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = LUTdropEdge
Left = 39
Height = 18
Hint = 'If checked, edge color varies'
Top = 46
Width = 18
BorderSpacing.Left = 4
BorderSpacing.Right = 4
Checked = True
OnChange = NodePrefChange
ParentFont = False
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 1
end
object EdgeThreshLabel: TLabel
AnchorSideLeft.Control = EdgeBox
AnchorSideTop.Control = EdgeMaxEdit
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 25
Width = 42
BorderSpacing.Left = 2
Caption = 'Thresh'
ParentFont = False
end
object EdgeMinEdit: TFloatSpinEdit
AnchorSideLeft.Control = EdgeThreshLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EdgeMaxEdit
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EdgeMaxEdit
Left = 48
Height = 20
Top = 23
Width = 90
BorderSpacing.Left = 4
BorderSpacing.Right = 2
MaxValue = 65535
OnChange = NodePrefChange
ParentFont = False
TabOrder = 2
end
object EdgeMaxEdit: TFloatSpinEdit
AnchorSideLeft.Control = EdgeMinEdit
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = edgeScaleTrack
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edgeScaleTrack
AnchorSideRight.Side = asrBottom
Left = 142
Height = 20
Top = 23
Width = 90
BorderSpacing.Left = 4
BorderSpacing.Top = 2
MaxValue = 65535
OnChange = NodePrefChange
ParentFont = False
TabOrder = 3
Value = 1
end
object edgeScaleTrack: TTrackBar
AnchorSideLeft.Control = EdgeSizeVariesCheck
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = EdgeBox
AnchorSideRight.Control = EdgeBox
AnchorSideRight.Side = asrBottom
Left = 53
Height = 19
Top = 2
Width = 92
Max = 100
OnChange = NodePrefChange
Position = 10
TickStyle = tsNone
BorderSpacing.Left = 4
BorderSpacing.Top = 2
BorderSpacing.Right = 2
ParentFont = False
TabOrder = 4
end
object EdgeSizeLabel: TLabel
AnchorSideLeft.Control = EdgeBox
AnchorSideTop.Control = edgeScaleTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 3
Width = 25
BorderSpacing.Left = 2
Caption = 'Size'
ParentFont = False
end
object EdgeSizeVariesCheck: TCheckBox
AnchorSideLeft.Control = EdgeSizeLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = edgeScaleTrack
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = edgeScaleTrack
Left = 31
Height = 18
Hint = 'If checked, edge size varies'
Top = 2
Width = 18
BorderSpacing.Left = 4
BorderSpacing.Right = 4
Checked = True
OnChange = NodePrefChange
ParentFont = False
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 5
end
object EdgeLayerDrop: TComboBox
AnchorSideLeft.Control = edgeScaleTrack
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = edgeScaleTrack
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EdgeMaxEdit
AnchorSideRight.Side = asrBottom
Left = 149
Height = 20
Top = 1
Width = 88
BorderSpacing.Left = 4
DropDownCount = 22
ItemHeight = 26
ItemIndex = clBlack
Items.Strings = (
'1'
'2'
'3'
'4'
'5'
)
OnChange = EdgeLayerDropChange
ParentFont = False
Style = csDropDownList
TabOrder = 6
Text = '1'
Visible = False
end
end
object MeshColorBox: TGroupBox
Tag = 270
Left = clBlack
Height = 61
Top = 558
Width = 246
Align = alTop
AutoSize = True
Caption = 'Mesh Color'
ClientHeight = 42
ClientWidth = 236
ParentFont = False
TabOrder = 6
Visible = False
object SatLabel: TLabel
AnchorSideLeft.Control = MeshColorBox
AnchorSideTop.Control = MeshSaturationTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 3
Width = 62
BorderSpacing.Left = 2
Caption = 'Saturation'
ParentFont = False
end
object MeshSaturationTrack: TTrackBar
AnchorSideLeft.Control = TransLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MeshColorBox
AnchorSideRight.Control = MeshColorBox
AnchorSideRight.Side = asrBottom
Left = 88
Height = 19
Top = 2
Width = 160
Max = 100
OnChange = MeshColorBoxChange
Position = 100
TickStyle = tsNone
BorderSpacing.Left = 4
BorderSpacing.Top = 2
BorderSpacing.Right = 2
ParentFont = False
TabOrder = 0
end
object MeshTransparencyTrack: TTrackBar
AnchorSideLeft.Control = MeshSaturationTrack
AnchorSideTop.Control = MeshSaturationTrack
AnchorSideTop.Side = asrBottom
Left = 88
Height = 19
Top = 23
Width = 160
Max = 100
OnChange = MeshColorBoxChange
Position = 100
TickStyle = tsNone
BorderSpacing.Top = 2
ParentFont = False
TabOrder = 1
end
object TransLabel: TLabel
AnchorSideLeft.Control = SatLabel
AnchorSideTop.Control = MeshTransparencyTrack
AnchorSideTop.Side = asrCenter
Left = 2
Height = 16
Top = 24
Width = 82
Caption = 'Transparency'
ParentFont = False
end
end
object BackgroundBox: TGroupBox
Left = clBlack
Height = 60
Top = 619
Width = 246
Align = alTop
AutoSize = True
Caption = 'Background Mesh'
ClientHeight = 41
ClientWidth = 236
ParentFont = False
TabOrder = 5
object meshAlphaTrack: TTrackBar
AnchorSideLeft.Control = XRayLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MeshBlendTrack
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = MeshBlendTrack
Left = 37
Height = 19
Hint = 'Adjust main mesh transparency'
Top = 2
Width = 92
Max = 100
OnChange = SurfaceAppearanceChange
Position = 100
TickStyle = tsNone
BorderSpacing.Left = 4
BorderSpacing.Right = 4
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object MeshBlendTrack: TTrackBar
AnchorSideLeft.Control = meshAlphaTrack
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = BackgroundBox
AnchorSideRight.Side = asrBottom
Left = 134
Height = 19
Hint = 'XRay: make internal overlays, tracks and nodes visible'
Top = 2
Width = 92
Max = 100