forked from thargor6/mb3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigator.dfm
2379 lines (2379 loc) · 76.7 KB
/
Navigator.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 FNavigator: TFNavigator
Left = 189
Top = 151
ActiveControl = Panel1
BorderStyle = bsDialog
Caption = 'Navigator'
ClientHeight = 542
ClientWidth = 640
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poDesigned
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnHide = FormHide
OnKeyDown = FormKeyDown
OnMouseMove = FormMouseMove
OnMouseWheel = FormMouseWheel
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Image1: TImage
Left = 0
Top = 0
Width = 640
Height = 400
Hint =
'Leftclick: go into mouse-mode.. view by mouse, +right mousebutt' +
'on.. rolling'#13#10'(Leftclick again or ESC to exit the mouse-mode)'
ParentShowHint = False
ShowHint = False
OnClick = Image1Click
OnDblClick = Image1DblClick
OnMouseDown = Image1MouseDown
OnMouseMove = Image1MouseMove
end
object Label27: TLabel
Left = 8
Top = 384
Width = 3
Height = 13
Visible = False
end
object Label28: TLabel
Left = 96
Top = 384
Width = 3
Height = 13
Visible = False
end
object Label29: TLabel
Left = 200
Top = 384
Width = 3
Height = 13
Visible = False
end
object Label30: TLabel
Left = 304
Top = 384
Width = 3
Height = 13
Visible = False
end
object Image6: TImage
Left = 260
Top = 168
Width = 120
Height = 120
Transparent = True
Visible = False
OnClick = Image1Click
OnDblClick = Image1DblClick
OnMouseDown = Image1MouseDown
OnMouseMove = Image1MouseMove
end
object Panel3: TPanel
Left = 488
Top = 0
Width = 152
Height = 542
Align = alRight
BevelOuter = bvNone
Color = clMoneyGreen
TabOrder = 2
Visible = False
object Button2: TSpeedButton
Left = 0
Top = 8
Width = 152
Height = 21
Hint = 'Click to hide/show'
AllowAllUp = True
GroupIndex = 1
Caption = 'Julia values (x,y,z):'
ParentShowHint = False
ShowHint = True
OnClick = Button2Click
end
object Button3: TSpeedButton
Left = 0
Top = 16
Width = 152
Height = 21
Hint = 'Click to hide/show'
AllowAllUp = True
GroupIndex = 2
Down = True
Caption = 'Formula values:'
ParentShowHint = False
ShowHint = True
OnClick = Button3Click
end
object Button4: TSpeedButton
Left = 0
Top = 24
Width = 152
Height = 21
Hint = 'Click to hide/show'
AllowAllUp = True
GroupIndex = 3
Caption = '4d rotation (xw,yw,zw): '
ParentShowHint = False
ShowHint = True
OnClick = Button4Click
end
object Button5: TSpeedButton
Left = 0
Top = 32
Width = 152
Height = 21
Hint = 'Click to hide/show'
AllowAllUp = True
GroupIndex = 4
Caption = 'Misc:'
ParentShowHint = False
ShowHint = True
OnClick = Button5Click
end
object RadioGroup1: TRadioGroup
Left = 0
Top = 0
Width = 152
Height = 37
Caption = 'Adjustments:'
Color = clActiveBorder
Columns = 4
ItemIndex = 2
Items.Strings = (
'min'
'fine'
'mid'
'big')
ParentColor = False
TabOrder = 0
end
object Panel4: TPanel
Left = 0
Top = 66
Width = 152
Height = 139
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 1
object Label41: TLabel
Tag = 2
Left = 99
Top = 94
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label39: TLabel
Left = 99
Top = 44
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label40: TLabel
Tag = 1
Left = 99
Top = 69
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object SpeedButton24: TSpeedButton
Left = 2
Top = 117
Width = 71
Height = 20
Hint = 'Input the original values from the main program parameters.'
Caption = 'Reset values'
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton24Click
end
object SpeedButton25: TSpeedButton
Left = 80
Top = 117
Width = 71
Height = 20
Hint = 'Put the adjusted julia values into the main program parameters.'
Caption = 'Send values'
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton25Click
end
object Image8: TImage
Left = 110
Top = 24
Width = 40
Height = 12
Picture.Data = {
07544269746D61709E000000424D9E000000000000003E000000280000002800
00000C000000010001000000000060000000C30E0000C30E0000020000000200
000000000000FFFFFF00FFFFFFFFFF000000EFFEFFBFFB000000DFFF7FDFFD00
0000BDE6779C7E000000B8EFEBFEFE000000BF6FDDF83E000000BD6FDDF6DE00
0000BD0FC1F6DE000000B977DDF83E000000DB37EBFEFD000000ECCFF7FC7B00
0000FFFFFFFFFF000000}
Stretch = True
Transparent = True
end
object CheckBox8: TCheckBox
Left = 8
Top = 21
Width = 100
Height = 17
Hint = 'Change the julia values with radius, longitude and latitude'
Caption = 'Spherical coords'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object CheckBox7: TCheckBox
Left = 8
Top = 2
Width = 73
Height = 17
Hint = 'Turn on/off the julia mode'
Caption = 'Julia mode'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = CheckBox7Click
end
object TrackBarEx2: TTrackBarEx
Tag = 1
Left = 0
Top = 66
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 2
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx3: TTrackBarEx
Tag = 2
Left = 0
Top = 91
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 3
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx1: TTrackBarEx
Left = 0
Top = 41
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 4
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
end
object Panel5: TPanel
Left = 0
Top = 211
Width = 152
Height = 212
TabOrder = 2
OnMouseMove = FormMouseMove
object Label45: TLabel
Left = 1
Top = 7
Width = 21
Height = 13
Caption = 'F.nr:'
end
object LabelV0: TLabel
Tag = 3
Left = 98
Top = 65
Width = 51
Height = 16
Hint = 'You can also click on a value to change it'
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
OnMouseDown = Label39MouseDown
OnMouseMove = FormMouseMove
end
object LabelF0: TLabel
Left = 2
Top = 49
Width = 41
Height = 13
Caption = 'fp name:'
end
object SpeedButton26: TSpeedButton
Left = 2
Top = 169
Width = 71
Height = 20
Hint = 'Input the original value from the main program parameters.'
Caption = 'Reset value'
Enabled = False
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton26Click
end
object SpeedButton27: TSpeedButton
Left = 80
Top = 169
Width = 71
Height = 20
Hint = 'Put this adjusted value into the main program parameter.'
Caption = 'Send value'
Enabled = False
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton27Click
end
object SpeedButton28: TSpeedButton
Left = 31
Top = 190
Width = 120
Height = 20
Hint = 'Send all adjusted formula values to the main program parameters.'
Caption = 'Send all formula values'
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton28Click
end
object Label44: TLabel
Left = 67
Top = 6
Width = 84
Height = 13
Alignment = taCenter
AutoSize = False
Transparent = True
end
object Bevel2: TBevel
Left = 1
Top = 46
Width = 150
Height = 2
Shape = bsTopLine
end
object Bevel3: TBevel
Left = 1
Top = 165
Width = 150
Height = 2
Shape = bsTopLine
end
object LabelV1: TLabel
Tag = 4
Left = 98
Top = 103
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
OnMouseMove = FormMouseMove
end
object LabelF1: TLabel
Left = 2
Top = 87
Width = 41
Height = 13
Caption = 'fp name:'
end
object LabelV2: TLabel
Tag = 5
Left = 98
Top = 141
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
OnMouseMove = FormMouseMove
end
object LabelF2: TLabel
Left = 2
Top = 125
Width = 41
Height = 13
Caption = 'fp name:'
end
object Image4: TImage
Left = 138
Top = 49
Width = 12
Height = 11
AutoSize = True
Picture.Data = {
07544269746D6170C2010000424DC20100000000000036000000280000000C00
00000B00000001001800000000008C010000110B0000110B0000000000000000
000084C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C3
84C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4
C384C4C384C4C384C4C384C4C300000000000000000000000000000000000000
000000000000000000000084C4C384C4C3000000292929484848484848484848
48484848484848484829292900000084C4C384C4C384C4C30000003535355454
5454545454545454545435353500000084C4C384C4C384C4C384C4C384C4C300
000041414163636363636341414100000084C4C384C4C384C4C384C4C384C4C3
84C4C384C4C300000046464646464600000084C4C384C4C384C4C384C4C384C4
C384C4C384C4C384C4C384C4C300000000000084C4C384C4C384C4C384C4C384
C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C3
84C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4
C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384
C4C384C4C384C4C384C4C384C4C3}
Transparent = True
Visible = False
OnMouseMove = FormMouseMove
end
object Image5: TImage
Left = 138
Top = 153
Width = 12
Height = 11
AutoSize = True
Picture.Data = {
07544269746D6170C2010000424DC20100000000000036000000280000000C00
00000B00000001001800000000008C010000110B0000110B0000000000000000
000084C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C3
84C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4
C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384
C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C3000000
00000084C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C30000
0046464646464600000084C4C384C4C384C4C384C4C384C4C384C4C384C4C300
000041414163636363636341414100000084C4C384C4C384C4C384C4C384C4C3
00000035353554545454545454545454545435353500000084C4C384C4C384C4
C300000029292948484848484848484848484848484848484829292900000084
C4C384C4C3000000000000000000000000000000000000000000000000000000
00000084C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4
C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384C4C384
C4C384C4C384C4C384C4C384C4C3}
Transparent = True
Visible = False
OnMouseMove = FormMouseMove
end
object Label42: TLabel
Left = 2
Top = 27
Width = 46
Height = 13
Caption = 'Iterations:'
end
object Label47: TLabel
Left = 92
Top = 27
Width = 6
Height = 13
Alignment = taRightJustify
Caption = '0'
end
object Label49: TLabel
Left = 27
Top = 7
Width = 14
Height = 13
Alignment = taCenter
AutoSize = False
Caption = '1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object ScrollBar1: TScrollBar
Left = 136
Top = 47
Width = 15
Height = 117
Kind = sbVertical
Max = 13
PageSize = 0
TabOrder = 0
Visible = False
OnChange = ScrollBar1Change
end
object TrackBarEx4: TTrackBarEx
Tag = 3
Left = 0
Top = 62
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 1
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx5: TTrackBarEx
Tag = 4
Left = 0
Top = 100
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 2
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx6: TTrackBarEx
Tag = 5
Left = 0
Top = 138
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 3
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object SpinEdit2: TUpDown
Left = 45
Top = 4
Width = 21
Height = 19
Min = -30000
Max = 30000
TabOrder = 4
OnClick = SpinEdit2Click
end
object UpDown2: TUpDown
Left = 104
Top = 24
Width = 19
Height = 21
Min = -30000
Max = 30000
TabOrder = 5
OnClick = UpDown2Click
end
end
object Panel7: TPanel
Left = 0
Top = 65
Width = 152
Height = 221
TabOrder = 4
Visible = False
object LabelV3: TLabel
Tag = 9
Left = 99
Top = 23
Width = 30
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object SpeedButton31: TSpeedButton
Left = 2
Top = 198
Width = 71
Height = 20
Hint = 'Input the original value from the main program parameters.'
Caption = 'Reset value'
Enabled = False
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton31Click
end
object SpeedButton32: TSpeedButton
Left = 80
Top = 198
Width = 71
Height = 20
Hint = 'Put this adjusted value into the main program parameter.'
Caption = 'Send value'
Enabled = False
Flat = True
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton32Click
end
object Bevel5: TBevel
Left = 1
Top = 194
Width = 150
Height = 2
Shape = bsTopLine
end
object LabelV4: TLabel
Tag = 10
Left = 99
Top = 61
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '16.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label48: TLabel
Left = 2
Top = 45
Width = 45
Height = 13
Caption = 'R bailout:'
end
object LabelV5: TLabel
Tag = 11
Left = 99
Top = 99
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.5'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label53: TLabel
Left = 2
Top = 83
Width = 83
Height = 13
Caption = 'Smooth DEcomb:'
end
object Label38: TLabel
Left = 130
Top = 3
Width = 20
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseMove = FormMouseMove
end
object LabelV6: TLabel
Tag = 12
Left = 98
Top = 137
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '1.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label46: TLabel
Left = 2
Top = 121
Width = 38
Height = 13
Caption = 'DEstop:'
end
object LabelV7: TLabel
Tag = 13
Left = 98
Top = 175
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '60'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label55: TLabel
Left = 2
Top = 159
Width = 68
Height = 13
Caption = 'Max iterations:'
end
object SpeedButton33: TSpeedButton
Left = 8
Top = 0
Width = 85
Height = 21
Hint = 'Click to change between Dynfog on its and Color on its'
Caption = 'Dyn Fog on its:'
ParentShowHint = False
ShowHint = True
OnClick = SpeedButton33Click
end
object UpDown1: TUpDown
Left = 132
Top = 19
Width = 19
Height = 25
Hint = 'Strength of dynamic fog.'
Max = 153
ParentShowHint = False
Position = 53
ShowHint = True
TabOrder = 0
OnClick = UpDown1Click
end
object TrackBarEx10: TTrackBarEx
Tag = 9
Left = 0
Top = 20
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 1
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx11: TTrackBarEx
Tag = 10
Left = 0
Top = 58
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 2
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx12: TTrackBarEx
Tag = 11
Left = 0
Top = 96
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 3
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx13: TTrackBarEx
Tag = 12
Left = 0
Top = 134
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 4
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
object TrackBarEx14: TTrackBarEx
Tag = 13
Left = 0
Top = 172
Width = 97
Height = 22
Ctl3D = True
Max = 60
Min = -60
ParentCtl3D = False
TabOrder = 5
ThumbLength = 18
TickMarks = tmBoth
TickStyle = tsNone
OnChange = RxSlider1Change
OnMouseUp = RxSlider1MouseUp
end
end
object Panel6: TPanel
Left = 0
Top = 450
Width = 152
Height = 105
TabOrder = 3
Visible = False
object Label52: TLabel
Tag = 8
Left = 99
Top = 59
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label50: TLabel
Tag = 6
Left = 99
Top = 9
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Serif'
Font.Style = []
ParentFont = False
OnMouseDown = Label39MouseDown
end
object Label51: TLabel
Tag = 7
Left = 99
Top = 34
Width = 51
Height = 16
Alignment = taCenter
AutoSize = False
Caption = '0.0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13